HomeSort by relevance Sort by last modified time
    Searched refs:mod (Results 1 - 25 of 717) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/elfutils/libdwfl/
dwfl_nextcu.c 59 Dwfl_Module *mod; local
63 mod = dwfl->modulelist;
67 mod = cu->mod;
72 error = __libdwfl_nextcu (mod, cu, &cu);
78 *bias = mod->debug.bias;
84 mod = mod->next;
87 if (mod == NULL)
90 if (mod->dwerr == DWFL_E_NOERRO
    [all...]
dwfl_addrmodule.c 55 Dwfl_Module *mod; local
56 (void) INTUSE(dwfl_addrsegment) (dwfl, address, &mod);
57 return mod;
dwfl_module_info.c 53 dwfl_module_info (Dwfl_Module *mod, void ***userdata,
58 if (mod == NULL)
62 *userdata = &mod->userdata;
64 *start = mod->low_addr;
66 *end = mod->high_addr;
69 *dwbias = mod->debug.elf == NULL ? (Dwarf_Addr) -1 : mod->debug.bias;
71 *symbias = mod->symfile == NULL ? (Dwarf_Addr) -1 : mod->symfile->bias;
74 *mainfile = mod->main.name
    [all...]
dwfl_module_report_build_id.c 54 dwfl_module_report_build_id (Dwfl_Module *mod,
58 if (mod == NULL)
61 if (mod->main.elf != NULL)
66 if ((size_t) mod->build_id_len == len
67 && (mod->build_id_vaddr == vaddr || vaddr == 0)
68 && !memcmp (bits, mod->build_id_bits, len))
75 if (vaddr != 0 && (vaddr < mod->low_addr || vaddr + len > mod->high_addr))
93 free (mod->build_id_bits);
95 mod->build_id_bits = copy
    [all...]
dwfl_module_return_value_location.c 54 dwfl_module_return_value_location (mod, functypedie, locops)
55 Dwfl_Module *mod;
59 if (mod == NULL)
62 if (mod->ebl == NULL)
64 Dwfl_Error error = __libdwfl_module_getebl (mod);
72 int nops = ebl_return_value_location (mod->ebl, functypedie, locops);
dwfl_module_getdwarf.c 56 /* Open libelf FILE->fd and compute the load base of ELF as loaded in MOD.
59 open_elf (Dwfl_Module *mod, struct dwfl_file *file)
95 if (mod->e_type != ET_EXEC)
104 file->bias = ((mod->low_addr & -ph->p_align)
110 mod->e_type = ehdr->e_type;
113 if (mod->e_type == ET_EXEC && file->bias != 0)
114 mod->e_type = ET_DYN;
120 When we return success, MOD->main.elf and MOD->main.bias are set up. */
122 find_file (Dwfl_Module *mod)
    [all...]
dwfl_module_addrname.c 53 dwfl_module_addrname (Dwfl_Module *mod, GElf_Addr addr)
56 return INTUSE(dwfl_module_addrsym) (mod, addr, &sym, NULL);
dwfl_build_id_find_debuginfo.c 55 dwfl_build_id_find_debuginfo (Dwfl_Module *mod,
67 if (INTUSE(dwfl_module_build_id) (mod, &bits, &vaddr) > 0)
68 fd = __libdwfl_open_by_build_id (mod, true, debuginfo_file_name);
74 mod->debug.elf = elf_begin (fd, ELF_C_READ_MMAP_PRIVATE, NULL);
75 if (likely (__libdwfl_find_build_id (mod, false, mod->debug.elf) == 2))
77 mod->debug.valid = true;
81 elf_end (mod->debug.elf);
82 mod->debug.elf = NULL;
dwfl_module.c 79 __libdwfl_module_free (Dwfl_Module *mod)
81 if (mod->lazy_cu_root != NULL)
82 tdestroy (mod->lazy_cu_root, nofree);
84 if (mod->aranges != NULL)
85 free (mod->aranges);
87 if (mod->cu != NULL)
89 for (size_t i = 0; i < mod->ncu; ++i)
90 free_cu (mod->cu[i]);
91 free (mod->cu);
94 if (mod->dw != NULL
171 Dwfl_Module *mod = calloc (1, sizeof *mod); local
    [all...]
dwfl_validate_address.c 55 Dwfl_Module *mod = INTUSE(dwfl_addrmodule) (dwfl, address); local
56 if (mod == NULL)
60 int idx = INTUSE(dwfl_module_relocate_address) (mod, &relative);
68 if (relative >= mod->low_addr && relative <= mod->high_addr)
70 offset_idx = INTUSE(dwfl_module_relocate_address) (mod, &relative);
  /external/valgrind/main/coregrind/m_gdbserver/
valgrind-low-amd64.c 141 Bool mod; local
142 supply_register_by_name ("rip", &newpc, &mod);
143 if (mod)
153 transfer_direction dir, int size, Bool *mod)
158 *mod = False;
165 case 0: VG_(transfer) (&amd64->guest_RAX, buf, dir, size, mod); break;
166 case 1: VG_(transfer) (&amd64->guest_RBX, buf, dir, size, mod); break;
167 case 2: VG_(transfer) (&amd64->guest_RCX, buf, dir, size, mod); break;
168 case 3: VG_(transfer) (&amd64->guest_RDX, buf, dir, size, mod); break;
169 case 4: VG_(transfer) (&amd64->guest_RSI, buf, dir, size, mod); break
    [all...]
valgrind-low-mips32.c 133 Bool mod; local
134 supply_register_by_name ("pc", &newpc, &mod);
135 if (mod)
145 transfer_direction dir, int size, Bool *mod)
150 *mod = False;
155 case 0: VG_(transfer) (&mips1->guest_r0, buf, dir, size, mod); break;
156 case 1: VG_(transfer) (&mips1->guest_r1, buf, dir, size, mod); break;
157 case 2: VG_(transfer) (&mips1->guest_r2, buf, dir, size, mod); break;
158 case 3: VG_(transfer) (&mips1->guest_r3, buf, dir, size, mod); break;
159 case 4: VG_(transfer) (&mips1->guest_r4, buf, dir, size, mod); break
    [all...]
valgrind-low-s390x.c 110 Bool mod; local
111 supply_register_by_name ("pswa", &newpc, &mod);
112 if (mod)
122 transfer_direction dir, int size, Bool *mod)
127 *mod = False;
134 case 0: *mod = False; break; //GDBTD??? { "pswm", 0, 64 },
135 case 1: VG_(transfer) (&s390x->guest_IA, buf, dir, size, mod); break;
136 case 2: VG_(transfer) (&s390x->guest_r0, buf, dir, size, mod); break;
137 case 3: VG_(transfer) (&s390x->guest_r1, buf, dir, size, mod); break;
138 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...]
  /bionic/libc/kernel/common/linux/
kmod.h 26 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))
  /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)))
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/
kmod.h 21 #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x)))

Completed in 781 milliseconds

1 2 3 4 5 6 7 8 91011>>