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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-relimport/pkg/
oldstyle.py 1 import mod
relative.py 2 from . import mod
toplevel.py 2 import mod
  /external/elfutils/libdwfl/
dwfl_module_eh_cfi.c 33 dwfl_module_eh_cfi (Dwfl_Module *mod, Dwarf_Addr *bias)
35 if (mod == NULL)
38 if (mod->eh_cfi != NULL)
40 *bias = dwfl_adjusted_address (mod, 0);
41 return mod->eh_cfi;
44 __libdwfl_getelf (mod);
45 if (mod->elferr != DWFL_E_NOERROR)
47 __libdwfl_seterrno (mod->elferr);
51 *bias = dwfl_adjusted_address (mod, 0);
52 return __libdwfl_set_cfi (mod, &mod->eh_cfi
    [all...]
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_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_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_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 (Dwfl_Module *mod, Dwarf_Addr *bias)
56 if (mod == NULL)
59 if (mod->dwarf_cfi != NULL)
61 *bias = dwfl_adjusted_dwarf_addr (mod, 0);
62 return mod->dwarf_cfi;
65 return __libdwfl_set_cfi (mod, &mod->dwarf_cfi
    [all...]
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 (Dwfl_Module *mod, Dwarf_Die *functypedie,
36 if (mod == NULL)
39 if (mod->ebl == NULL)
41 Dwfl_Error error = __libdwfl_module_getebl (mod);
49 int nops = ebl_return_value_location (mod->ebl, functypedie, locops);
  /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/kmod/testsuite/rootfs-pristine/test-modprobe/alias-to-none/etc/modprobe.d/
bogus.conf 1 alias mod-simple deaddood
  /external/kmod/testsuite/rootfs-pristine/test-modprobe/softdep-loop/etc/modprobe.d/
dumb-softdep.conf 1 softdep mod-loop-b post: mod-loop-a
  /external/kmod/testsuite/
delete_module.c 37 struct mod { struct
38 struct mod *next;
44 static struct mod *modules;
47 static void parse_retcodes(struct mod **_modules, const char *s)
55 struct mod *mod; local
89 mod = malloc(sizeof(*mod) + modnamelen + 1);
90 if (mod == NULL)
93 memcpy(mod->name, modname, modnamelen)
104 struct mod *mod; local
117 struct mod *mod; local
148 struct mod *mod; local
164 struct mod *mod = modules->next; local
    [all...]
  /external/kmod/testsuite/rootfs-pristine/test-modprobe/install-cmd-loop/etc/modprobe.d/
dumb-instal-loop.conf 1 install mod-loop-b $MODPROBE --ignore-install mod-loop-b && { $MODPROBE --quiet mod-loop-a ; }
  /device/google/dragon/audio/hal/
cras_dsp_module.h 28 int (*instantiate)(struct dsp_module *mod, unsigned long sample_rate);
35 void (*connect_port)(struct dsp_module *mod, unsigned long port,
45 int (*get_delay)(struct dsp_module *mod);
53 void (*run)(struct dsp_module *mod, unsigned long sample_count);
57 void (*deinstantiate)(struct dsp_module *mod);
63 void (*free_module)(struct dsp_module *mod);
67 int (*get_properties)(struct dsp_module *mod);
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-relimport/pkg/subpkg/
relative.py 3 from .. import mod
mod2.py 3 from ..sub2.mod import __doc__
4 from ..sub2 import mod
  /libcore/ojluni/src/main/java/java/lang/reflect/
Modifier.java 49 * @param mod a set of modifiers
50 * @return {@code true} if {@code mod} includes the
53 public static boolean isPublic(int mod) {
54 return (mod & PUBLIC) != 0;
61 * @param mod a set of modifiers
62 * @return {@code true} if {@code mod} includes the
65 public static boolean isPrivate(int mod) {
66 return (mod & PRIVATE) != 0;
73 * @param mod a set of modifiers
74 * @return {@code true} if {@code mod} includes th
    [all...]
  /prebuilts/go/darwin-x86/src/math/
mod_amd64.s 7 TEXT ·Mod(SB),NOSPLIT,$0
8 JMP ·mod(SB)
mod_arm.s 7 TEXT ·Mod(SB),NOSPLIT,$0
8 B ·mod(SB)
  /prebuilts/go/linux-x86/src/math/
mod_amd64.s 7 TEXT ·Mod(SB),NOSPLIT,$0
8 JMP ·mod(SB)
mod_arm.s 7 TEXT ·Mod(SB),NOSPLIT,$0
8 B ·mod(SB)

Completed in 388 milliseconds

1 2 3 4 5 6 7 8 91011>>