Home
last modified time | relevance | path

Searched refs:e (Results 201 – 225 of 7020) sorted by relevance

12345678910>>...281

/openbmc/qemu/scripts/tracetool/format/
H A Dstap.py37 events = [e for e in events
38 if "disable" not in e.properties]
43 for e in events:
48 name=e.name,
52 if len(e.args) > 0:
53 for name in e.args.names():
/openbmc/openbmc/poky/meta/recipes-extended/groff/files/
H A D0001-Make-manpages-mulitlib-identical.patch18 -e "s|[@]PAGE[@]|\\\\%$(PAGE)|g" \
19 -e "s|[@]PDFDOCDIR[@]|`echo $(pdfdocdir) | sed -f $(makevarescape)`|g" \
20 -e "s|[@]PSPRINT[@]|`echo $(PSPRINT) | sed -f $(makevarescape)`|g" \
21 - -e "s|[@]SYSTEMMACRODIR[@]|`echo $(systemtmacdir) | sed -f $(makevarescape)`|g" \
22 + -e "s|[@]SYSTEMMACRODIR[@]|`echo $(systemtmacdir) | sed -e 's,$(libdir),$(prefix)/lib*,' | s…
23 -e "s|[@]TMAC_AN_PREFIX[@]|\\\\%$(tmac_an_prefix)|g" \
24 -e "s|[@]TMAC_M_PREFIX[@]|\\\\%$(tmac_m_prefix)|g" \
25 -e "s|[@]TMAC_MDIR[@]|`echo $(tmacdir) | sed -f $(makevarescape)`/mm|g" \
/openbmc/linux/net/netfilter/
H A Dxt_policy.c35 match_xfrm_state(const struct xfrm_state *x, const struct xt_policy_elem *e, in match_xfrm_state() argument
38 #define MATCH_ADDR(x,y,z) (!e->match.x || \ in match_xfrm_state()
39 (xt_addr_cmp(&e->x, &e->y, (const union nf_inet_addr *)(z), family) \ in match_xfrm_state()
40 ^ e->invert.x)) in match_xfrm_state()
41 #define MATCH(x,y) (!e->match.x || ((e->x == (y)) ^ e->invert.x)) in match_xfrm_state()
55 const struct xt_policy_elem *e; in match_policy_in() local
69 e = &info->pol[pos]; in match_policy_in()
71 if (match_xfrm_state(sp->xvec[i], e, family)) { in match_policy_in()
85 const struct xt_policy_elem *e; in match_policy_out() local
98 e = &info->pol[pos]; in match_policy_out()
[all …]
/openbmc/linux/drivers/gpu/drm/i915/gvt/
H A Dgtt.h59 struct intel_gvt_gtt_entry *e,
65 struct intel_gvt_gtt_entry *e,
70 bool (*test_present)(struct intel_gvt_gtt_entry *e);
71 void (*clear_present)(struct intel_gvt_gtt_entry *e);
72 void (*set_present)(struct intel_gvt_gtt_entry *e);
73 bool (*test_pse)(struct intel_gvt_gtt_entry *e);
74 void (*clear_pse)(struct intel_gvt_gtt_entry *e);
75 bool (*test_ips)(struct intel_gvt_gtt_entry *e);
76 void (*clear_ips)(struct intel_gvt_gtt_entry *e);
77 bool (*test_64k_splited)(struct intel_gvt_gtt_entry *e);
[all …]
H A Dgtt.c154 (e)->type = t; \
155 (e)->pdev = p; \
314 &e->val64, 8); in gtt_get_entry64()
339 &e->val64, 8); in gtt_set_entry64()
404 switch (e->type) { in gen8_gtt_clear_pse()
673 type, e->type, index, e->val64); in ppgtt_spt_get_entry()
690 type, e->type, index, e->val64); in ppgtt_spt_set_entry()
1012 switch (e.type) { in ppgtt_invalidate_spt()
1032 spt->vgpu, &e); in ppgtt_invalidate_spt()
1047 spt, e.val64, e.type); in ppgtt_invalidate_spt()
[all …]
/openbmc/u-boot/arch/powerpc/dts/
H A De6500_power_isa.dtsi13 power-isa-e; // Embedded
17 power-isa-e.ed; // Embedded.Enhanced Debug
18 power-isa-e.pd; // Embedded.External PID
19 power-isa-e.hv; // Embedded.Hypervisor
20 power-isa-e.le; // Embedded.Little-Endian
21 power-isa-e.pm; // Embedded.Performance Monitor
22 power-isa-e.pc; // Embedded.Processor Control
31 power-isa-e.pt; // Embedded.Page Table
32 power-isa-e.hv.lrat; // Embedded.Hypervisor.LRAT
33 power-isa-e.em; // Embedded Multi-Threading
/openbmc/linux/security/apparmor/include/
H A Dpolicy_unpack.h169 bool aa_inbounds(struct aa_ext *e, size_t size);
170 size_t aa_unpack_u16_chunk(struct aa_ext *e, char **chunk);
171 bool aa_unpack_X(struct aa_ext *e, enum aa_code code);
172 bool aa_unpack_nameX(struct aa_ext *e, enum aa_code code, const char *name);
173 bool aa_unpack_u32(struct aa_ext *e, u32 *data, const char *name);
174 bool aa_unpack_u64(struct aa_ext *e, u64 *data, const char *name);
175 bool aa_unpack_array(struct aa_ext *e, const char *name, u16 *size);
176 size_t aa_unpack_blob(struct aa_ext *e, char **blob, const char *name);
177 int aa_unpack_str(struct aa_ext *e, const char **string, const char *name);
178 int aa_unpack_strdup(struct aa_ext *e, char **string, const char *name);
/openbmc/linux/drivers/md/
H A Ddm-exception-store.h68 struct dm_exception *e);
74 struct dm_exception *e, int valid,
148 static inline unsigned int dm_consecutive_chunk_count(struct dm_exception *e) in dm_consecutive_chunk_count() argument
150 return e->new_chunk >> DM_CHUNK_NUMBER_BITS; in dm_consecutive_chunk_count()
153 static inline void dm_consecutive_chunk_count_inc(struct dm_exception *e) in dm_consecutive_chunk_count_inc() argument
155 e->new_chunk += (1ULL << DM_CHUNK_NUMBER_BITS); in dm_consecutive_chunk_count_inc()
157 BUG_ON(!dm_consecutive_chunk_count(e)); in dm_consecutive_chunk_count_inc()
160 static inline void dm_consecutive_chunk_count_dec(struct dm_exception *e) in dm_consecutive_chunk_count_dec() argument
162 BUG_ON(!dm_consecutive_chunk_count(e)); in dm_consecutive_chunk_count_dec()
164 e->new_chunk -= (1ULL << DM_CHUNK_NUMBER_BITS); in dm_consecutive_chunk_count_dec()
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/en/
H A Dtc_tun.h34 int (*calc_hlen)(struct mlx5e_encap_entry *e);
37 struct mlx5e_encap_entry *e,
41 struct mlx5e_encap_entry *e);
66 struct mlx5e_encap_entry *e,
71 struct mlx5e_encap_entry *e);
74 struct mlx5e_encap_entry *e);
79 struct mlx5e_encap_entry *e);
82 struct mlx5e_encap_entry *e);
87 struct mlx5e_encap_entry *e) in mlx5e_tc_tun_create_header_ipv6() argument
92 struct mlx5e_encap_entry *e) in mlx5e_tc_tun_update_header_ipv6() argument
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_bo_list.h80 #define amdgpu_bo_list_for_each_entry(e, list) \ argument
81 for (e = amdgpu_bo_list_array_entry(list, 0); \
82 e != amdgpu_bo_list_array_entry(list, (list)->num_entries); \
83 ++e)
85 #define amdgpu_bo_list_for_each_userptr_entry(e, list) \ argument
86 for (e = amdgpu_bo_list_array_entry(list, (list)->first_userptr); \
87 e != amdgpu_bo_list_array_entry(list, (list)->num_entries); \
88 ++e)
/openbmc/openbmc/poky/meta/classes/
H A Dmcextend.bbclass8 cls = e.data.getVar("BBEXTENDCURR")
9 variant = e.data.getVar("BBEXTENDVARIANT")
15 e.data.setVar("PN", e.data.getVar("PN", False) + "-" + variant)
16 e.data.setVar("MCNAME", variant)
17 e.data.setVar("OVERRIDES", e.data.getVar("OVERRIDES", False) + override)
/openbmc/openbmc/poky/meta/recipes-extended/sed/
H A Dsed_4.9.bb50 …sed -e 's/^Makefile:/_Makefile:/' -e 's/^srcdir = \(.*\)/srcdir = ./' -e 's/bash/sh/' -i ${D}${PTE…
51 for i in `grep -rl "sed/sed" ${D}${PTEST_PATH}`; do sed -e 's/..\/sed\/sed/sed/' -i $i; done
53 sed -e 's,--sysroot=${STAGING_DIR_TARGET},,g' \
54 -e 's|${DEBUG_PREFIX_MAP}||g' \
55 -e 's:${HOSTTOOLS_DIR}/::g' \
56 -e 's:${RECIPE_SYSROOT_NATIVE}::g' \
57 -e 's:abs_top_builddir =.*:abs_top_builddir = ..:g' \
58 -e 's:abs_top_srcdir =.*:abs_top_srcdir = ..:g' \
59 -e 's:abs_srcdir =.*:abs_srcdir = ..:g' \
60 -e 's:top_srcdir =.*:top_srcdir = ..:g' \
[all …]
/openbmc/linux/arch/um/include/linux/
H A Dtime-internal.h27 time_travel_set_event_fn(struct time_travel_event *e, in time_travel_set_event_fn() argument
30 e->fn = fn; in time_travel_set_event_fn()
49 void time_travel_add_irq_event(struct time_travel_event *e);
50 void time_travel_add_event_rel(struct time_travel_event *e,
52 bool time_travel_del_event(struct time_travel_event *e);
62 #define time_travel_set_event_fn(e, fn) do {} while (0) argument
72 static inline void time_travel_add_irq_event(struct time_travel_event *e) in time_travel_add_irq_event() argument
/openbmc/u-boot/tools/
H A Dkwbimage.c34 *e = r->e; in RSA_get0_key()
253 if (!e) in image_get_csk_index()
264 if (!e) in image_get_spezialized_img()
901 if (e) in image_create_v0()
904 if (e) in image_create_v0()
907 if (e) in image_create_v0()
1262 if (e) in image_create_v1()
1265 if (e) in image_create_v1()
1268 if (e) in image_create_v1()
1271 if (e) in image_create_v1()
[all …]
/openbmc/linux/drivers/net/wireless/broadcom/b43legacy/
H A Ddebugfs.c365 e = kzalloc(sizeof(*e), GFP_KERNEL); in b43legacy_debugfs_add_device()
366 if (!e) { in b43legacy_debugfs_add_device()
370 e->dev = dev; in b43legacy_debugfs_add_device()
371 log = &e->txstatlog; in b43legacy_debugfs_add_device()
376 kfree(e); in b43legacy_debugfs_add_device()
382 dev->dfsentry = e; in b43legacy_debugfs_add_device()
412 e = dev->dfsentry; in b43legacy_debugfs_remove_device()
413 if (!e) in b43legacy_debugfs_remove_device()
418 kfree(e); in b43legacy_debugfs_remove_device()
429 if (!e) in b43legacy_debugfs_log_txstat()
[all …]
/openbmc/u-boot/drivers/bios_emulator/
H A Datibios.c96 regs->e.esi = buffer_seg; in atibios_debug_mode()
97 regs->e.edi = buffer_adr; in atibios_debug_mode()
102 if (regs->e.eax != 0x4f) { in atibios_debug_mode()
128 if (regs->e.eax != 0x4f) { in atibios_debug_mode()
143 regs->e.ebx = 0; in atibios_debug_mode()
144 regs->e.ecx = mode; in atibios_debug_mode()
145 regs->e.edx = 0; in atibios_debug_mode()
184 regs->e.ebx = vesa_mode; in atibios_set_vesa_mode()
196 regs->e.ecx = vesa_mode; in atibios_set_vesa_mode()
197 regs->e.esi = buffer_seg; in atibios_set_vesa_mode()
[all …]
/openbmc/linux/arch/um/include/asm/
H A Dpgtable-3level.h45 #define pte_ERROR(e) \ argument
46 printk("%s:%d: bad pte %p(%016lx).\n", __FILE__, __LINE__, &(e), \
47 pte_val(e))
48 #define pmd_ERROR(e) \ argument
49 printk("%s:%d: bad pmd %p(%016lx).\n", __FILE__, __LINE__, &(e), \
50 pmd_val(e))
51 #define pgd_ERROR(e) \ argument
52 printk("%s:%d: bad pgd %p(%016lx).\n", __FILE__, __LINE__, &(e), \
53 pgd_val(e))
/openbmc/linux/arch/powerpc/lib/
H A Drheap.c164 e = s + size; in attach_free_block()
184 if (e == bs) in attach_free_block()
337 e = s + size; in rh_attach_region()
344 e = e & ~m; in rh_attach_region()
346 if (IS_ERR_VALUE(e) || (e < s)) in rh_attach_region()
351 size = e - s; in rh_attach_region()
382 e = s + size; in rh_detach_region()
389 e = e & ~m; in rh_detach_region()
428 newblk->start = e; in rh_detach_region()
539 e = s + size; in rh_alloc_fixed()
[all …]
/openbmc/linux/drivers/edac/
H A Dghes_edac.c296 e = &mci->error_desc; in ghes_edac_report_mem_error()
299 memset(e, 0, sizeof (*e)); in ghes_edac_report_mem_error()
300 e->error_count = 1; in ghes_edac_report_mem_error()
301 e->grain = 1; in ghes_edac_report_mem_error()
302 e->msg = pvt->msg; in ghes_edac_report_mem_error()
304 e->top_layer = -1; in ghes_edac_report_mem_error()
305 e->mid_layer = -1; in ghes_edac_report_mem_error()
306 e->low_layer = -1; in ghes_edac_report_mem_error()
349 p = e->location; in ghes_edac_report_mem_error()
363 if (p > e->location) in ghes_edac_report_mem_error()
[all …]
/openbmc/openpower-pnor-code-mgmt/
H A Dactivation.cpp50 catch (const sdbusplus::exception_t& e) in subscribeToSystemdSignals() local
52 if (e.name() != nullptr && in subscribeToSystemdSignals()
62 entry("ERROR=%s", e.what())); in subscribeToSystemdSignals()
120 catch (const sdbusplus::exception_t& e) in deleteImageManagerObject() local
150 catch (const sdbusplus::exception_t& e) in deleteImageManagerObject() local
152 if (e.name() != nullptr && strcmp("System.Error.ELOOP", e.name()) == 0) in deleteImageManagerObject()
194 catch (const sdbusplus::exception_t& e) in checkApplyTimeImmediate() local
222 catch (const sdbusplus::exception_t& e) in rebootHost() local
227 entry("ERROR=%s", e.what())); in rebootHost()
263 catch (const InternalFailure& e) in validateSignature() local
[all …]
/openbmc/openbmc/meta-security/meta-hardening/recipes-extended/shadow/
H A Dshadow_%.bbappend3 sed -i -e 's:UMASK.*:UMASK 027:' ${D}${sysconfdir}/login.defs
4 sed -i -e 's:PASS_MAX_DAYS.*:PASS_MAX_DAYS 365:' ${D}${sysconfdir}/login.defs
5 sed -i -e 's:PASS_MIN_DAYS.*:PASS_MIN_DAYS 1:' ${D}${sysconfdir}/login.defs
6 sed -i -e 's:#PASS_MIN_LEN.*:PASS_MIN_LEN 11:' ${D}${sysconfdir}/login.defs
7 sed -i -e 's:PASS_WARN_AGE.*:PASS_WARN_AGE 14:' ${D}${sysconfdir}/login.defs
8 sed -i -e 's:LOGIN_RETRIES.*:LOGIN_RETRIES 3:' ${D}${sysconfdir}/login.defs
9 sed -i -e 's:LOGIN_TIMEOUT.*:LOGIN_TIMEOUT 30:' ${D}${sysconfdir}/login.defs
/openbmc/linux/net/netfilter/ipset/
H A Dip_set_hash_mac.c51 if (nla_put(skb, IPSET_ATTR_ETHER, ETH_ALEN, e->ether)) in hash_mac4_data_list()
61 const struct hash_mac4_elem *e) in hash_mac4_data_next() argument
77 struct hash_mac4_elem e = { { .foo[0] = 0, .foo[1] = 0 } }; in hash_mac4_kadt() local
85 ether_addr_copy(e.ether, eth_hdr(skb)->h_source); in hash_mac4_kadt()
87 ether_addr_copy(e.ether, eth_hdr(skb)->h_dest); in hash_mac4_kadt()
89 if (is_zero_ether_addr(e.ether)) in hash_mac4_kadt()
91 return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags); in hash_mac4_kadt()
99 struct hash_mac4_elem e = { { .foo[0] = 0, .foo[1] = 0 } }; in hash_mac4_uadt() local
113 ether_addr_copy(e.ether, nla_data(tb[IPSET_ATTR_ETHER])); in hash_mac4_uadt()
114 if (is_zero_ether_addr(e.ether)) in hash_mac4_uadt()
[all …]
/openbmc/ibm-logging/
H A Dcreate_error_reports.py66 for e in data:
68 error["error"] = error_base + e["name"]
69 error["desc"] = e["description"]
144 for e in yaml_errors:
145 if e not in policy_errors:
146 out.write(" %s\n" % e)
151 for e in policy_errors:
152 if e not in yaml_errors:
153 out.write(" %s\n" % e)
156 for e in policy:
[all …]
/openbmc/linux/sound/core/seq/oss/
H A Dseq_oss_event.c125 switch (q->e.cmd) { in extended_event()
127 return note_off_event(dp, q->e.dev, q->e.chn, q->e.p1, q->e.p2, ev); in extended_event()
130 return note_on_event(dp, q->e.dev, q->e.chn, q->e.p1, q->e.p2, ev); in extended_event()
134 q->e.chn, 0, q->e.p1, ev); in extended_event()
138 q->e.chn, 0, q->e.p1, ev); in extended_event()
142 val = (char)q->e.p1; in extended_event()
145 q->e.chn, CTL_PAN, val, ev); in extended_event()
148 val = ((short)q->e.p3 << 8) | (short)q->e.p2; in extended_event()
149 switch (q->e.p1) { in extended_event()
154 q->e.chn, 0, val, ev); in extended_event()
[all …]
/openbmc/qemu/system/
H A Drunstate.c348 VMChangeStateEntry *e; in qemu_add_vm_change_state_handler_prio_full() local
351 e = g_malloc0(sizeof(*e)); in qemu_add_vm_change_state_handler_prio_full()
352 e->cb = cb; in qemu_add_vm_change_state_handler_prio_full()
354 e->opaque = opaque; in qemu_add_vm_change_state_handler_prio_full()
361 return e; in qemu_add_vm_change_state_handler_prio_full()
366 return e; in qemu_add_vm_change_state_handler_prio_full()
378 g_free(e); in qemu_del_vm_change_state_handler()
390 e->prepare_cb(e->opaque, running, state); in vm_state_notify()
395 e->cb(e->opaque, running, state); in vm_state_notify()
400 e->prepare_cb(e->opaque, running, state); in vm_state_notify()
[all …]

12345678910>>...281