Searched refs:mod (Results 26 - 50 of 781) sorted by relevance

1234567891011>>

/external/elfutils/libdwfl/
H A Ddwfl_build_id_find_debuginfo.c34 dwfl_build_id_find_debuginfo (Dwfl_Module *mod, argument
48 if (mod->dw != NULL)
52 ssize_t build_id_len = INTUSE(dwelf_dwarf_gnu_debugaltlink) (mod->dw,
56 fd = __libdwfl_open_by_build_id (mod, true, debuginfo_file_name,
64 Dwfl_Error error = __libdw_open_file (&fd, &mod->alt_elf,
71 ssize_t alt_len = INTUSE(dwelf_elf_gnu_build_id) (mod->alt_elf,
79 elf_end (mod->alt_elf);
80 mod->alt_elf = NULL;
97 if (INTUSE(dwfl_module_build_id) (mod, &bits, &vaddr) > 0)
98 fd = __libdwfl_open_mod_by_build_id (mod, tru
[all...]
H A Ddwfl_cumodule.c35 return cu->mod;
H A Ddwfl_linemodule.c37 return dwfl_linecu (line)->mod;
H A Ddwfl_module_getsym.c33 __libdwfl_getsym (Dwfl_Module *mod, int ndx, GElf_Sym *sym, GElf_Addr *addr, argument
37 if (unlikely (mod == NULL))
40 if (unlikely (mod->symdata == NULL))
42 int result = INTUSE(dwfl_module_getsymtab) (mod);
53 int skip_aux_zero = (mod->syments > 0 && mod->aux_syments > 0) ? 1 : 0;
58 if (mod->aux_symdata == NULL
59 || ndx < mod->first_global)
63 elf = mod->symfile->elf;
64 symdata = mod
197 dwfl_module_getsym_info(Dwfl_Module *mod, int ndx, GElf_Sym *sym, GElf_Addr *addr, GElf_Word *shndxp, Elf **elfp, Dwarf_Addr *bias) argument
[all...]
H A Dcu.c36 dwar (Dwfl_Module *mod, unsigned int idx) argument
38 return &mod->dw->aranges->info[mod->aranges[idx].arange];
43 addrarange (Dwfl_Module *mod, Dwarf_Addr addr, struct dwfl_arange **arange) argument
45 if (mod->aranges == NULL)
50 if (INTUSE(dwarf_getaranges) (mod->dw, &dwaranges, &naranges) != 0)
81 mod->naranges = naranges;
82 mod->aranges = (realloc (aranges, naranges * sizeof aranges[0])
84 mod->lazycu += naranges;
88 addr = dwfl_deadjust_dwarf_addr (mod, add
141 less_lazy(Dwfl_Module *mod) argument
172 intern_cu(Dwfl_Module *mod, Dwarf_Off cuoff, struct dwfl_cu **result) argument
246 __libdwfl_nextcu(Dwfl_Module *mod, struct dwfl_cu *lastcu, struct dwfl_cu **cu) argument
296 arangecu(Dwfl_Module *mod, struct dwfl_arange *arange, struct dwfl_cu **cu) argument
314 __libdwfl_addrcu(Dwfl_Module *mod, Dwarf_Addr addr, struct dwfl_cu **cu) argument
[all...]
H A Ddwfl_module_addrdie.c32 dwfl_module_addrdie (Dwfl_Module *mod, Dwarf_Addr addr, Dwarf_Addr *bias) argument
34 if (INTUSE(dwfl_module_getdwarf) (mod, bias) == NULL)
38 Dwfl_Error error = __libdwfl_addrcu (mod, addr, &cu);
H A Ddwfl_module_nextcu.c32 dwfl_module_nextcu (Dwfl_Module *mod, Dwarf_Die *lastcu, Dwarf_Addr *bias) argument
34 if (INTUSE(dwfl_module_getdwarf) (mod, bias) == NULL)
38 Dwfl_Error error = __libdwfl_nextcu (mod, (struct dwfl_cu *) lastcu, &cu);
H A Ddwfl_module_register_names.c33 dwfl_module_register_names (Dwfl_Module *mod, argument
39 if (unlikely (mod == NULL))
42 if (unlikely (mod->ebl == NULL))
44 Dwfl_Error error = __libdwfl_module_getebl (mod);
52 int nregs = ebl_register_info (mod->ebl, -1, NULL, 0,
62 ssize_t len = ebl_register_info (mod->ebl, regno, name, sizeof name,
/external/python/cpython3/Tools/freeze/
H A Dmakefreeze.py37 for mod in mods:
38 m = dict[mod]
39 mangled = "__".join(mod.split("."))
45 print("freezing", mod, "...")
51 done.append((mod, mangled, size))
56 for mod, mangled, size in done:
59 for mod, mangled, size in done:
60 outfp.write('\t{"%s", M_%s, %d},\n' % (mod, mangled, size))
66 for mod in fail_import:
67 outfp.write('\t{"%s", NULL, 0},\n' % (mod,))
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dnumbertest_patternmodifier.cpp23 MutablePatternModifier mod(false);
27 mod.setPatternInfo(&patternInfo);
28 mod.setPatternAttributes(UNUM_SIGN_AUTO, false);
32 mod.setSymbols(&symbols, currency, UNUM_UNIT_WIDTH_SHORT, nullptr);
34 mod.setNumberProperties(false, StandardPlural::Form::COUNT);
35 assertEquals("Pattern a0b", u"a", getPrefix(mod, status));
36 assertEquals("Pattern a0b", u"b", getSuffix(mod, status));
37 mod.setPatternAttributes(UNUM_SIGN_ALWAYS, false);
38 assertEquals("Pattern a0b", u"+a", getPrefix(mod, status));
39 assertEquals("Pattern a0b", u"b", getSuffix(mod, statu
113 getPrefix(const MutablePatternModifier &mod, UErrorCode &status) argument
120 getSuffix(const MutablePatternModifier &mod, UErrorCode &status) argument
[all...]
/external/mesa3d/src/egl/main/
H A Degldriver.c73 _eglLoadModule(_EGLModule *mod) argument
77 if (mod->Driver)
80 if (!mod->BuiltIn)
83 drv = mod->BuiltIn(NULL);
87 mod->Driver = drv;
97 _eglUnloadModule(_EGLModule *mod) argument
100 if (mod->Driver && mod->Driver->Unload)
101 mod->Driver->Unload(mod
113 _EGLModule *mod; local
153 _EGLModule *mod = (_EGLModule *) module; local
177 _EGLModule *mod = _eglAddModule(env); local
196 _EGLModule *mod; local
253 _EGLModule *mod = (_EGLModule *) _eglModules->Elements[i]; local
328 _EGLModule *mod = (_EGLModule *) _eglModules->Elements[i]; local
[all...]
/external/valgrind/coregrind/m_gdbserver/
H A Dvalgrind-low-x86.c107 Bool mod; local
108 supply_register_by_name ("eip", &newpc, &mod);
109 if (mod)
119 transfer_direction dir, int size, Bool *mod)
124 *mod = False;
131 case 0: VG_(transfer) (&x86->guest_EAX, buf, dir, size, mod); break;
132 case 1: VG_(transfer) (&x86->guest_ECX, buf, dir, size, mod); break;
133 case 2: VG_(transfer) (&x86->guest_EDX, buf, dir, size, mod); break;
134 case 3: VG_(transfer) (&x86->guest_EBX, buf, dir, size, mod); break;
135 case 4: VG_(transfer) (&x86->guest_ESP, buf, dir, size, mod); brea
118 transfer_register(ThreadId tid, int abs_regno, void * buf, transfer_direction dir, int size, Bool *mod) argument
[all...]
H A Dvalgrind-low-arm.c117 Bool mod; local
118 supply_register_by_name ("pc", &newpc, &mod);
119 if (mod)
179 transfer_direction dir, int size, Bool *mod)
184 *mod = False;
191 case 0: VG_(transfer) (&arm->guest_R0, buf, dir, size, mod); break;
192 case 1: VG_(transfer) (&arm->guest_R1, buf, dir, size, mod); break;
193 case 2: VG_(transfer) (&arm->guest_R2, buf, dir, size, mod); break;
194 case 3: VG_(transfer) (&arm->guest_R3, buf, dir, size, mod); break;
195 case 4: VG_(transfer) (&arm->guest_R4, buf, dir, size, mod); brea
178 transfer_register(ThreadId tid, int abs_regno, void * buf, transfer_direction dir, int size, Bool *mod) argument
[all...]
H A Dvalgrind-low-ppc32.c167 Bool mod; local
168 supply_register_by_name ("pc", &newpc, &mod);
169 if (mod)
179 transfer_direction dir, int size, Bool *mod)
184 *mod = False;
191 case 0: VG_(transfer) (&ppc32->guest_GPR0, buf, dir, size, mod); break;
192 case 1: VG_(transfer) (&ppc32->guest_GPR1, buf, dir, size, mod); break;
193 case 2: VG_(transfer) (&ppc32->guest_GPR2, buf, dir, size, mod); break;
194 case 3: VG_(transfer) (&ppc32->guest_GPR3, buf, dir, size, mod); break;
195 case 4: VG_(transfer) (&ppc32->guest_GPR4, buf, dir, size, mod); brea
178 transfer_register(ThreadId tid, int abs_regno, void * buf, transfer_direction dir, int size, Bool *mod) argument
[all...]
H A Dvalgrind-low-amd64.c140 Bool mod; local
141 supply_register_by_name ("rip", &newpc, &mod);
142 if (mod)
152 transfer_direction dir, int size, Bool *mod)
157 *mod = False;
164 case 0: VG_(transfer) (&amd64->guest_RAX, buf, dir, size, mod); break;
165 case 1: VG_(transfer) (&amd64->guest_RBX, buf, dir, size, mod); break;
166 case 2: VG_(transfer) (&amd64->guest_RCX, buf, dir, size, mod); break;
167 case 3: VG_(transfer) (&amd64->guest_RDX, buf, dir, size, mod); break;
168 case 4: VG_(transfer) (&amd64->guest_RSI, buf, dir, size, mod); brea
151 transfer_register(ThreadId tid, int abs_regno, void * buf, transfer_direction dir, int size, Bool *mod) argument
[all...]
H A Dvalgrind-low-mips32.c133 Bool mod; local
134 supply_register_by_name ("pc", &newpc, &mod);
135 if (mod)
252 transfer_direction dir, int size, Bool *mod)
257 *mod = False;
262 case 0: VG_(transfer) (&mips1->guest_r0, buf, dir, size, mod); break;
263 case 1: VG_(transfer) (&mips1->guest_r1, buf, dir, size, mod); break;
264 case 2: VG_(transfer) (&mips1->guest_r2, buf, dir, size, mod); break;
265 case 3: VG_(transfer) (&mips1->guest_r3, buf, dir, size, mod); break;
266 case 4: VG_(transfer) (&mips1->guest_r4, buf, dir, size, mod); brea
251 transfer_register(ThreadId tid, int abs_regno, void * buf, transfer_direction dir, int size, Bool *mod) argument
[all...]
H A Dvalgrind-low-mips64.c134 Bool mod; local
135 supply_register_by_name ("pc", &newpc, &mod);
136 if (mod)
253 transfer_direction dir, int size, Bool *mod)
258 *mod = False;
263 case 0: VG_(transfer) (&mips1->guest_r0, buf, dir, size, mod); break;
264 case 1: VG_(transfer) (&mips1->guest_r1, buf, dir, size, mod); break;
265 case 2: VG_(transfer) (&mips1->guest_r2, buf, dir, size, mod); break;
266 case 3: VG_(transfer) (&mips1->guest_r3, buf, dir, size, mod); break;
267 case 4: VG_(transfer) (&mips1->guest_r4, buf, dir, size, mod); brea
252 transfer_register(ThreadId tid, int abs_regno, void * buf, transfer_direction dir, int size, Bool *mod) argument
[all...]
H A Dvalgrind-low-arm64.c128 Bool mod; local
129 supply_register_by_name ("pc", &newpc, &mod);
130 if (mod)
140 transfer_direction dir, int size, Bool *mod)
145 *mod = False;
152 case 0: VG_(transfer) (&arm->guest_X0, buf, dir, size, mod); break;
153 case 1: VG_(transfer) (&arm->guest_X1, buf, dir, size, mod); break;
154 case 2: VG_(transfer) (&arm->guest_X2, buf, dir, size, mod); break;
155 case 3: VG_(transfer) (&arm->guest_X3, buf, dir, size, mod); break;
156 case 4: VG_(transfer) (&arm->guest_X4, buf, dir, size, mod); brea
139 transfer_register(ThreadId tid, int abs_regno, void * buf, transfer_direction dir, int size, Bool *mod) argument
[all...]
/external/fsck_msdos/
H A Dcheck.c65 int mod = 0; local
115 mod |= readfat(dosfs, &boot, boot.ValidFat >= 0 ? boot.ValidFat : 0, &fat);
116 if (mod & FSFATAL) {
126 mod |= readfat(dosfs, &boot, i, &currentFat);
128 if (mod & FSFATAL) {
133 mod |= comparefat(&boot, fat, currentFat, i);
135 if (mod & FSFATAL) {
144 mod |= checkfat(&boot, fat);
145 if (mod & FSFATAL) {
154 mod |
[all...]
/external/kmod/testsuite/module-playground/
H A DMakefile5 obj-m := mod-simple.o
7 # mod-foo depends on foo-x, and foo-x modules don't depend
9 obj-m += mod-foo-a.o
10 obj-m += mod-foo-b.o
11 obj-m += mod-foo-c.o
12 obj-m += mod-foo.o
14 # mod-loop: create loops in dependencies:
15 # 1) mod-loop-a -> mod-loop-b -> mod
[all...]
/external/python/cpython2/Tools/scripts/
H A Dpdeps.py68 mod = os.path.basename(filename)
69 if mod[-3:] == '.py':
70 mod = mod[:-3]
71 table[mod] = list = []
100 for mod in modules:
101 reach[mod] = table[mod][:]
108 for mod in modules:
109 for mo in reach[mod]
[all...]
/external/python/cpython3/Tools/scripts/
H A Dpdeps.py68 mod = os.path.basename(filename)
69 if mod[-3:] == '.py':
70 mod = mod[:-3]
71 table[mod] = list = []
100 for mod in modules:
101 reach[mod] = table[mod][:]
108 for mod in modules:
109 for mo in reach[mod]
[all...]
/external/libxkbcommon/xkbcommon/src/xkbcomp/
H A Dvmod.c37 struct xkb_mod *mod; local
45 * it sets the vmod-to-real-mod[s] mapping directly instead of going
59 xkb_mods_enumerate(i, mod, mods) {
60 if (mod->name == stmt->name) {
61 if (mod->type != MOD_VIRT) {
65 xkb_atom_text(ctx, mod->name));
69 if (mod->mapping == mapping)
72 if (mod->mapping != 0) {
75 use = (merge == MERGE_OVERRIDE ? mapping : mod->mapping);
76 ignore = (merge == MERGE_OVERRIDE ? mod
[all...]
/external/kmod/tools/
H A Dremove.c45 static int check_module_inuse(struct kmod_module *mod) { argument
49 state = kmod_module_get_initstate(mod);
52 ERR("Module %s is builtin.\n", kmod_module_get_name(mod));
56 kmod_module_get_name(mod));
60 holders = kmod_module_get_holders(mod);
64 ERR("Module %s is in use by:", kmod_module_get_name(mod));
77 if (kmod_module_get_refcnt(mod) != 0) {
78 ERR("Module %s is in use\n", kmod_module_get_name(mod));
88 struct kmod_module *mod; local
120 err = kmod_module_new_from_name(ctx, name, &mod);
[all...]
/external/kmod/testsuite/
H A Dinit_module.c52 struct mod { struct
53 struct mod *next;
59 static struct mod *modules;
63 static void parse_retcodes(struct mod *_modules, const char *s)
71 struct mod *mod; local
104 mod = malloc(sizeof(*mod) + modnamelen + 1);
105 if (mod == NULL)
108 memcpy(mod
168 struct mod *mod; local
199 struct kmod_module *mod; local
240 struct mod *mod; local
370 struct mod *mod = modules->next; local
[all...]

Completed in 933 milliseconds

1234567891011>>