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

1 2 3 4 56 7 8 91011>>

  /external/javassist/src/main/javassist/
CtNewNestedClass.java 34 public void setModifiers(int mod) {
35 mod = mod & ~Modifier.STATIC;
36 super.setModifiers(mod);
37 updateInnerEntry(mod, getName(), this, true);
40 private static void updateInnerEntry(int mod, String name, CtClass clazz, boolean outer) {
51 ica.setAccessFlags(i, mod | acc);
56 updateInnerEntry(mod, name, parent, false);
  /external/kmod/tools/
rmmod.c 64 static int check_module_inuse(struct kmod_module *mod) {
68 state = kmod_module_get_initstate(mod);
71 ERR("Module %s is builtin.\n", kmod_module_get_name(mod));
75 kmod_module_get_name(mod));
79 holders = kmod_module_get_holders(mod);
83 ERR("Module %s is in use by:", kmod_module_get_name(mod));
96 if (kmod_module_get_refcnt(mod) != 0) {
97 ERR("Module %s is in use\n", kmod_module_get_name(mod));
159 struct kmod_module *mod; local
163 err = kmod_module_new_from_path(ctx, arg, &mod);
    [all...]
  /external/swiftshader/third_party/LLVM/tools/lto/
lto.cpp 130 void lto_module_dispose(lto_module_t mod)
132 delete mod;
139 const char* lto_module_get_target_triple(lto_module_t mod)
141 return mod->getTargetTriple();
147 void lto_module_set_target_triple(lto_module_t mod, const char *triple)
149 return mod->setTargetTriple(triple);
156 unsigned int lto_module_get_num_symbols(lto_module_t mod)
158 return mod->getSymbolCount();
164 const char* lto_module_get_symbol_name(lto_module_t mod, unsigned int index)
166 return mod->getSymbolName(index)
    [all...]
  /external/mesa3d/src/egl/main/
egldriver.c 197 _eglLoadModule(_EGLModule *mod)
203 if (mod->Driver)
206 if (mod->BuiltIn) {
208 mainFunc = mod->BuiltIn;
211 mainFunc = _eglOpenLibrary(mod->Path, &lib);
224 _eglLog(_EGL_WARNING, "Driver loaded from %s has no name", mod->Path);
228 mod->Handle = (void *) lib;
229 mod->Driver = drv;
239 _eglUnloadModule(_EGLModule *mod)
243 if (mod->Driver && mod->Driver->Unload
269 _EGLModule *mod; local
309 _EGLModule *mod = (_EGLModule *) module; local
497 _EGLModule *mod; local
542 _EGLModule *mod; local
600 _EGLModule *mod = (_EGLModule *) _eglModules->Elements[i]; local
675 _EGLModule *mod = (_EGLModule *) _eglModules->Elements[i]; local
    [all...]
  /external/libvterm/src/
input.c 7 void vterm_input_push_char(VTerm *vt, VTermModifier mod, uint32_t c)
13 mod &= ~VTERM_MOD_SHIFT;
15 if(mod == 0) {
39 if(needs_CSIu && (mod & ~VTERM_MOD_ALT)) {
40 vterm_push_output_sprintf_ctrl(vt, C1_CSI, "%d;%du", c, mod+1);
44 if(mod & VTERM_MOD_CTRL)
47 vterm_push_output_sprintf(vt, "%s%c", mod & VTERM_MOD_ALT ? "\e" : "", c);
124 void vterm_input_push_key(VTerm *vt, VTermModifier mod, VTermKey key)
152 if(mod == VTERM_MOD_SHIFT)
154 else if(mod & VTERM_MOD_SHIFT
    [all...]
  /external/elfutils/libdwfl/
offline.c 39 dwfl_offline_section_address (Dwfl_Module *mod,
48 assert (mod->e_type == ET_REL);
53 if (mod->debug.elf == NULL)
61 Elf_Scn *ourscn = elf_getscn (mod->debug.elf, shndx);
64 while ((scn = elf_nextscn (mod->debug.elf, scn)) != ourscn)
76 while ((scn = elf_nextscn (mod->main.elf, scn)) != NULL)
130 Dwfl_Module *mod = __libdwfl_report_elf (dwfl, name, file_name, fd, elf, local
133 if (mod != NULL)
141 if ((dwfl->offline_next_address >= mod->low_addr
142 || mod->low_addr - dwfl->offline_next_address < OFFLINE_REDZONE
243 Dwfl_Module *mod = NULL; local
280 Dwfl_Module *mod = process_file (dwfl, name, file_name, fd, elf, predicate); local
    [all...]
dwfl_build_id_find_elf.c 37 __libdwfl_open_by_build_id (Dwfl_Module *mod, bool debug, char **file_name,
68 const Dwfl_Callbacks *const cb = mod->dwfl->callbacks;
121 __libdwfl_open_mod_by_build_id (Dwfl_Module *mod, bool debug, char **file_name)
126 if (mod->build_id_len <= 0)
129 const size_t id_len = mod->build_id_len;
130 const uint8_t *id = mod->build_id_bits;
132 return __libdwfl_open_by_build_id (mod, debug, file_name, id_len, id);
136 dwfl_build_id_find_elf (Dwfl_Module *mod,
143 if (mod->is_executable
144 && mod->dwfl->user_core != NUL
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
pdeps.py 68 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/kmod/testsuite/
test-initstate.c 39 struct kmod_module *mod; local
58 mod = kmod_module_get_module(list);
60 r = kmod_module_get_initstate(mod);
67 kmod_module_unref(mod);
84 struct kmod_module *mod = NULL; local
92 err = kmod_module_new_from_name(ctx, "fake-builtin", &mod);
98 if (!mod) {
103 r = kmod_module_get_initstate(mod);
110 kmod_module_unref(mod);
test-blacklist.c 42 struct kmod_module *mod; local
54 err = kmod_module_new_from_name(ctx, *name, &mod);
57 list = kmod_list_append(list, mod);
73 mod = kmod_module_get_module(l);
74 modname = kmod_module_get_name(mod);
78 kmod_module_unref(mod);
test-loaded.c 51 struct kmod_module *mod = kmod_module_get_module(itr); local
52 const char *name = kmod_module_get_name(mod);
53 int use_count = kmod_module_get_refcnt(mod);
54 long size = kmod_module_get_size(mod);
59 holders = kmod_module_get_holders(mod);
73 kmod_module_unref(mod);
  /external/valgrind/coregrind/m_gdbserver/
regcache.h 65 /* *mod set to True if *buf provides a new value. */
66 void supply_register (int n, const void *buf, Bool *mod);
70 *mod set to True if *buf provides a new value. */
71 void supply_register_from_string (int n, const char *buf, Bool *mod);
73 /* *mod set to True if *buf provides a new value. */
74 void supply_register_by_name (const char *name, const void *buf, Bool *mod);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_copy_reg.py 46 mod, func, code = 'junk1 ', ' junk2', 0xabcd
51 mod, func, code)
52 copy_reg.add_extension(mod, func, code)
54 self.assertTrue(copy_reg._extension_registry[mod, func] == code)
55 self.assertTrue(copy_reg._inverted_registry[code] == (mod, func))
59 copy_reg.add_extension(mod, func, code) # shouldn't blow up
62 mod, func, code + 1)
64 mod, func, code + 1)
67 mod[1:], func, code )
69 mod[1:], func, code )
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_copy_reg.py 46 mod, func, code = 'junk1 ', ' junk2', 0xabcd
51 mod, func, code)
52 copy_reg.add_extension(mod, func, code)
54 self.assertTrue(copy_reg._extension_registry[mod, func] == code)
55 self.assertTrue(copy_reg._inverted_registry[code] == (mod, func))
59 copy_reg.add_extension(mod, func, code) # shouldn't blow up
62 mod, func, code + 1)
64 mod, func, code + 1)
67 mod[1:], func, code )
69 mod[1:], func, code
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_copy_reg.py 46 mod, func, code = 'junk1 ', ' junk2', 0xabcd
51 mod, func, code)
52 copy_reg.add_extension(mod, func, code)
54 self.assertTrue(copy_reg._extension_registry[mod, func] == code)
55 self.assertTrue(copy_reg._inverted_registry[code] == (mod, func))
59 copy_reg.add_extension(mod, func, code) # shouldn't blow up
62 mod, func, code + 1)
64 mod, func, code + 1)
67 mod[1:], func, code )
69 mod[1:], func, code
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_copy_reg.py 46 mod, func, code = 'junk1 ', ' junk2', 0xabcd
51 mod, func, code)
52 copy_reg.add_extension(mod, func, code)
54 self.assertTrue(copy_reg._extension_registry[mod, func] == code)
55 self.assertTrue(copy_reg._inverted_registry[code] == (mod, func))
59 copy_reg.add_extension(mod, func, code) # shouldn't blow up
62 mod, func, code + 1)
64 mod, func, code + 1)
67 mod[1:], func, code )
69 mod[1:], func, code
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_copy_reg.py 46 mod, func, code = 'junk1 ', ' junk2', 0xabcd
51 mod, func, code)
52 copy_reg.add_extension(mod, func, code)
54 self.assertTrue(copy_reg._extension_registry[mod, func] == code)
55 self.assertTrue(copy_reg._inverted_registry[code] == (mod, func))
59 copy_reg.add_extension(mod, func, code) # shouldn't blow up
62 mod, func, code + 1)
64 mod, func, code + 1)
67 mod[1:], func, code )
69 mod[1:], func, code
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse_math.c 23 unsigned long ldiv_mod_u(register unsigned long a, register unsigned long b, unsigned long * mod)
31 *mod = 0;
37 *mod = a;
57 *mod = a;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/
__init__.py 99 mod = __import__('encodings.' + modname, fromlist=_import_tail,
106 mod = None
109 getregentry = mod.getregentry
112 mod = None
114 if mod is None:
125 (mod.__name__, mod.__file__)
134 (mod.__name__, mod.__file__)
136 entry += (None,)*(6-len(entry)) + (mod.__name__.split(".", 1)[1],)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/
__init__.py 99 mod = __import__('encodings.' + modname, fromlist=_import_tail,
106 mod = None
109 getregentry = mod.getregentry
112 mod = None
114 if mod is None:
125 (mod.__name__, mod.__file__)
134 (mod.__name__, mod.__file__)
136 entry += (None,)*(6-len(entry)) + (mod.__name__.split(".", 1)[1],)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/encodings/
__init__.py 99 mod = __import__('encodings.' + modname, fromlist=_import_tail,
106 mod = None
109 getregentry = mod.getregentry
112 mod = None
114 if mod is None:
125 (mod.__name__, mod.__file__)
134 (mod.__name__, mod.__file__)
136 entry += (None,)*(6-len(entry)) + (mod.__name__.split(".", 1)[1],
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/encodings/
__init__.py 99 mod = __import__('encodings.' + modname, fromlist=_import_tail,
106 mod = None
109 getregentry = mod.getregentry
112 mod = None
114 if mod is None:
125 (mod.__name__, mod.__file__)
134 (mod.__name__, mod.__file__)
136 entry += (None,)*(6-len(entry)) + (mod.__name__.split(".", 1)[1],
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
__init__.py 99 mod = __import__('encodings.' + modname, fromlist=_import_tail,
106 mod = None
109 getregentry = mod.getregentry
112 mod = None
114 if mod is None:
125 (mod.__name__, mod.__file__)
134 (mod.__name__, mod.__file__)
136 entry += (None,)*(6-len(entry)) + (mod.__name__.split(".", 1)[1],
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
__init__.py 99 mod = __import__('encodings.' + modname, fromlist=_import_tail,
106 mod = None
109 getregentry = mod.getregentry
112 mod = None
114 if mod is None:
125 (mod.__name__, mod.__file__)
134 (mod.__name__, mod.__file__)
136 entry += (None,)*(6-len(entry)) + (mod.__name__.split(".", 1)[1],
    [all...]
  /external/elfutils/tests/
dwfl-bug-addr-overflow.c 63 Dwfl_Module *mod = dwfl_addrmodule (dwfl, UINT64_C (0xffffffff00010123)); local
64 assert (mod == high);
65 mod = dwfl_addrmodule (dwfl, UINT64_C (0x00010123));
66 assert (mod == low);
67 mod = dwfl_addrmodule (dwfl, UINT64_C (0xffff00010123));
68 assert (mod == middle);

Completed in 681 milliseconds

1 2 3 4 56 7 8 91011>>