/external/elfutils/src/libdwfl/ |
dwfl_module_getelf.c | 32 dwfl_module_getelf (Dwfl_Module *mod, GElf_Addr *loadbase) 34 if (mod == NULL) 37 __libdwfl_getelf (mod); 38 if (mod->elferr == DWFL_E_NOERROR) 40 if (mod->e_type == ET_REL && ! mod->main.relocated) 45 mod->main.relocated = true; 46 if (likely (__libdwfl_module_getebl (mod) == DWFL_E_NOERROR)) 48 (void) __libdwfl_relocate (mod, mod->main.elf, false) [all...] |
dwfl_module_eh_cfi.c | 33 dwfl_module_eh_cfi (mod, bias) 34 Dwfl_Module *mod; 37 if (mod == NULL) 40 if (mod->eh_cfi != NULL) 42 *bias = dwfl_adjusted_address (mod, 0); 43 return mod->eh_cfi; 46 __libdwfl_getelf (mod); 47 if (mod->elferr != DWFL_E_NOERROR) 49 __libdwfl_seterrno (mod->elferr); 53 *bias = dwfl_adjusted_address (mod, 0) [all...] |
dwfl_nextcu.c | 38 Dwfl_Module *mod; local 42 mod = dwfl->modulelist; 46 mod = cu->mod; 51 error = __libdwfl_nextcu (mod, cu, &cu); 57 *bias = dwfl_adjusted_dwarf_addr (mod, 0); 63 mod = mod->next; 66 if (mod == NULL) 69 if (mod->dwerr == DWFL_E_NOERRO [all...] |
dwfl_module_dwarf_cfi.c | 34 __libdwfl_set_cfi (Dwfl_Module *mod, Dwarf_CFI **slot, Dwarf_CFI *cfi) 38 Dwfl_Error error = __libdwfl_module_getebl (mod); 40 cfi->ebl = mod->ebl; 43 if (slot == &mod->eh_cfi) 54 dwfl_module_dwarf_cfi (mod, bias) 55 Dwfl_Module *mod; 58 if (mod == NULL) 61 if (mod->dwarf_cfi != NULL) 63 *bias = dwfl_adjusted_dwarf_addr (mod, 0); 64 return mod->dwarf_cfi [all...] |
dwfl_module_info.c | 32 dwfl_module_info (Dwfl_Module *mod, void ***userdata, 37 if (mod == NULL) 41 *userdata = &mod->userdata; 43 *start = mod->low_addr; 45 *end = mod->high_addr; 48 *dwbias = (mod->debug.elf == NULL ? (Dwarf_Addr) -1 49 : dwfl_adjusted_dwarf_addr (mod, 0)); 51 *symbias = (mod->symfile == NULL ? (Dwarf_Addr) -1 52 : dwfl_adjusted_st_value (mod, mod->symfile->elf, 0)) [all...] |
dwfl_addrmodule.c | 34 Dwfl_Module *mod; local 35 (void) INTUSE(dwfl_addrsegment) (dwfl, address, &mod); 36 return mod;
|
dwfl_module_report_build_id.c | 33 dwfl_module_report_build_id (Dwfl_Module *mod, 37 if (mod == NULL) 40 if (mod->main.elf != NULL) 45 if ((size_t) mod->build_id_len == len 46 && (mod->build_id_vaddr == vaddr || vaddr == 0) 47 && !memcmp (bits, mod->build_id_bits, len)) 54 if (vaddr != 0 && (vaddr < mod->low_addr || vaddr + len > mod->high_addr)) 72 free (mod->build_id_bits); 74 mod->build_id_bits = copy [all...] |
dwfl_module_build_id.c | 32 found_build_id (Dwfl_Module *mod, bool set, 39 return 1 + (mod->build_id_len == len 40 && !memcmp (bits, mod->build_id_bits, len)); 49 mod->build_id_bits = memcpy (copy, bits, len); 50 mod->build_id_vaddr = vaddr; 51 mod->build_id_len = len; 57 __libdwfl_find_build_id (Dwfl_Module *mod, bool set, Elf *elf) 63 /* For mod == NULL use dwelf_elf_gnu_build_id directly. */ 64 assert (mod != NULL); 66 int result = __libdwfl_find_elf_build_id (mod, elf, &build_id_bits [all...] |
dwfl_module_return_value_location.c | 33 dwfl_module_return_value_location (mod, functypedie, locops) 34 Dwfl_Module *mod; 38 if (mod == NULL) 41 if (mod->ebl == NULL) 43 Dwfl_Error error = __libdwfl_module_getebl (mod); 51 int nops = ebl_return_value_location (mod->ebl, functypedie, locops);
|
dwfl_module.c | 58 __libdwfl_module_free (Dwfl_Module *mod) 60 if (mod->lazy_cu_root != NULL) 61 tdestroy (mod->lazy_cu_root, nofree); 63 if (mod->aranges != NULL) 64 free (mod->aranges); 66 if (mod->cu != NULL) 68 for (size_t i = 0; i < mod->ncu; ++i) 69 free_cu (mod->cu[i]); 70 free (mod->cu); 73 if (mod->dw != NULL 167 Dwfl_Module *mod = calloc (1, sizeof *mod); local [all...] |
dwfl_module_getdwarf.c | 69 /* Open libelf FILE->fd and compute the load base of ELF as loaded in MOD. 72 open_elf (Dwfl_Module *mod, struct dwfl_file *file) 151 if (file == &mod->main) 153 mod->e_type = ehdr->e_type; 156 if (mod->e_type == ET_EXEC && file->vaddr != mod->low_addr) 157 mod->e_type = ET_DYN; 160 assert (mod->main.elf != NULL); 165 /* We have an authoritative build ID for this module MOD, so don't use 168 mod_verify_build_id (Dwfl_Module *mod) [all...] |
dwfl_validate_address.c | 34 Dwfl_Module *mod = INTUSE(dwfl_addrmodule) (dwfl, address); local 35 if (mod == NULL) 39 int idx = INTUSE(dwfl_module_relocate_address) (mod, &relative); 47 if (relative >= mod->low_addr && relative <= mod->high_addr) 49 offset_idx = INTUSE(dwfl_module_relocate_address) (mod, &relative);
|
dwfl_module_addrname.c | 32 dwfl_module_addrname (Dwfl_Module *mod, GElf_Addr addr) 36 return INTUSE(dwfl_module_addrinfo) (mod, addr, &off, &sym,
|
/external/javassist/src/main/javassist/ |
Modifier.java | 51 public static boolean isPublic(int mod) { 52 return (mod & PUBLIC) != 0; 59 public static boolean isPrivate(int mod) { 60 return (mod & PRIVATE) != 0; 67 public static boolean isProtected(int mod) { 68 return (mod & PROTECTED) != 0; 75 public static boolean isPackage(int mod) { 76 return (mod & (PUBLIC | PRIVATE | PROTECTED)) == 0; 83 public static boolean isStatic(int mod) { 84 return (mod & STATIC) != 0 [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
EventBuilder.java | 44 EventMod mod = createModifier(EventMod.ModKind.Count); local 45 mod.count = count; 46 modifiers.add(mod); 57 EventMod mod = createModifier(EventMod.ModKind.ThreadOnly); local 58 mod.thread = thread; 59 modifiers.add(mod); 70 EventMod mod = createModifier(EventMod.ModKind.ClassMatch); local 71 mod.classPattern = pattern; 72 modifiers.add(mod); 83 EventMod mod = createModifier(EventMod.ModKind.LocationOnly) local 99 EventMod mod = createModifier(EventMod.ModKind.ExceptionOnly); local 115 EventMod mod = createModifier(EventMod.ModKind.FieldOnly); local 129 EventMod mod = createModifier(EventMod.ModKind.InstanceOnly); local 147 EventMod mod = new EventMod(); local [all...] |
/external/valgrind/coregrind/m_gdbserver/ |
valgrind-low-s390x.c | 109 Bool mod; local 110 supply_register_by_name ("pswa", &newpc, &mod); 111 if (mod) 121 transfer_direction dir, int size, Bool *mod) 126 *mod = False; 133 case 0: *mod = False; break; //GDBTD??? { "pswm", 0, 64 }, 134 case 1: VG_(transfer) (&s390x->guest_IA, buf, dir, size, mod); break; 135 case 2: VG_(transfer) (&s390x->guest_r0, buf, dir, size, mod); break; 136 case 3: VG_(transfer) (&s390x->guest_r1, buf, dir, size, mod); break; 137 case 4: VG_(transfer) (&s390x->guest_r2, buf, dir, size, mod); break [all...] |
/external/srtp/crypto/include/ |
err.h | 153 #define debug_on(mod) (mod).on = 1 155 #define debug_off(mod) (mod).on = 0 158 #define debug_print(mod, format, arg) \ 159 if (mod.on) err_report(err_level_debug, ("%s: " format "\n"), mod.name, arg) 160 #define debug_print2(mod, format, arg1,arg2) \ 161 if (mod.on) err_report(err_level_debug, ("%s: " format "\n"), mod.name, arg1,arg2 [all...] |
/development/ndk/platforms/android-3/include/linux/ |
kmod.h | 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
|
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/ |
kmod.h | 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
|
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/ |
kmod.h | 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
|
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/ |
kmod.h | 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
|
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/ |
kmod.h | 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
|
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/ |
kmod.h | 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
|
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/ |
kmod.h | 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
|
/prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/ |
kmod.h | 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
|