HomeSort by relevance Sort by last modified time
    Searched refs:mod (Results 101 - 125 of 777) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libnl/src/cls/
utils.c 77 struct cls_module *mod; local
79 nl_list_for_each_entry(mod, &cls_modules, list) {
80 if (mod->ops == ops)
81 return mod;
87 void register_cls_module(struct cls_module *mod)
91 if (!(ops = __rtnl_cls_lookup_ops(mod->name)))
93 mod->name);
98 mod->ops = ops;
99 nl_list_add_tail(&mod->list, &cls_modules);
102 void unregister_cls_module(struct cls_module *mod)
    [all...]
  /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/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...]
  /ndk/build/core/
definitions-graph.mk 22 # All internal functions in this file begin with '-ndk-mod-'
29 # Use $(call -ndk-mod-debug,<message>) to print a debug message only
34 -ndk-mod-debug = $(info $1)
36 -ndk-mod-debug := $(empty)
52 -ndk-mod-filter = $(strip \
57 -test-ndk-mod-filter = \
59 $(call test-expect,,$(call -ndk-mod-filter,,-local-func))\
60 $(call test-expect,foo,$(call -ndk-mod-filter,foo,-local-func))\
61 $(call test-expect,foo,$(call -ndk-mod-filter,foo bar,-local-func))\
62 $(call test-expect,foo foo,$(call -ndk-mod-filter,aaa foo bar foo,-local-func))
    [all...]
  /external/elfutils/src/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_module_register_names.c 33 dwfl_module_register_names (mod, func, arg)
34 Dwfl_Module *mod;
40 if (unlikely (mod == NULL))
43 if (unlikely (mod->ebl == NULL))
45 Dwfl_Error error = __libdwfl_module_getebl (mod);
53 int nregs = ebl_register_info (mod->ebl, -1, NULL, 0,
63 ssize_t len = ebl_register_info (mod->ebl, regno, name, sizeof name,
libdwflP.h 292 Dwfl_Module *mod; /* Pointer back to containing module. */ member in struct:dwfl_cu
326 dwfl_adjusted_address (Dwfl_Module *mod, GElf_Addr addr)
328 return addr + mod->main_bias;
332 dwfl_deadjust_address (Dwfl_Module *mod, GElf_Addr addr)
334 return addr - mod->main_bias;
338 dwfl_adjusted_dwarf_addr (Dwfl_Module *mod, Dwarf_Addr addr)
340 return dwfl_adjusted_address (mod, (addr
341 - mod->debug.address_sync
342 + mod->main.address_sync));
346 dwfl_deadjust_dwarf_addr (Dwfl_Module *mod, Dwarf_Addr addr
    [all...]
libdwfl.h 55 int (*find_elf) (Dwfl_Module *mod, void **userdata,
59 int (*find_debuginfo) (Dwfl_Module *mod, void **userdata,
70 int (*section_address) (Dwfl_Module *mod, void **userdata,
201 extern const char *dwfl_module_info (Dwfl_Module *mod, void ***userdata,
225 *MOD is always set to the module containing ADDRESS, or to null. */
226 extern int dwfl_addrsegment (Dwfl *dwfl, Dwarf_Addr address, Dwfl_Module **mod);
236 extern int dwfl_module_report_build_id (Dwfl_Module *mod,
249 extern int dwfl_module_build_id (Dwfl_Module *mod,
380 extern int dwfl_linux_proc_find_elf (Dwfl_Module *mod, void **userdata,
393 extern int dwfl_module_relocations (Dwfl_Module *mod);
    [all...]
dwfl_getdwarf.c 40 module_callback (Dwfl_Module *mod, void **userdata,
45 Dwarf *dw = INTUSE(dwfl_module_getdwarf) (mod, &bias);
46 return (*info->callback) (mod, userdata, name, start, dw, bias, info->arg);
  /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);
  /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...]
test_whichdb.py 43 mod = test.test_support.import_module(name, deprecated=True)
47 def test_whichdb_name(self, name=name, mod=mod):
49 # for databases opened with module mod.
51 f = mod.open(_fname, 'c')
55 f = mod.open(_fname, 'w')
test_scriptpackages.py 13 mod = __import__(package)
15 klass = getattr(mod, package)
20 obj = mod.application(0)
  /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...]
test_whichdb.py 43 mod = test.test_support.import_module(name, deprecated=True)
47 def test_whichdb_name(self, name=name, mod=mod):
49 # for databases opened with module mod.
51 f = mod.open(_fname, 'c')
55 f = mod.open(_fname, 'w')
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
VisibilityPredicate.java 32 int mod = (arg instanceof Member) ? ((Member)arg).getModifiers() : ((Integer)arg).intValue(); local
33 if (Modifier.isPrivate(mod)) {
35 } else if (Modifier.isPublic(mod)) {
37 } else if (Modifier.isProtected(mod)) {
  /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;
  /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/src/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);
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 58 void addMainFunction(Module *mod) {
60 Function *main_func = cast<Function>(mod->
61 getOrInsertFunction("main", IntegerType::getInt32Ty(mod->getContext()),
62 IntegerType::getInt32Ty(mod->getContext()),
64 IntegerType::getInt8Ty(mod->getContext()))), NULL));
74 BasicBlock *bb = BasicBlock::Create(mod->getContext(), "main.0", main_func);
78 CallInst *brainf_call = CallInst::Create(mod->getFunction("brainf"),
84 ReturnInst::Create(mod->getContext(),
85 ConstantInt::get(mod->getContext(), APInt(32, 0)), bb);
127 std::unique_ptr<Module> Mod(bf.parse(in, 65536, cf, Context)); // 64 Ki
    [all...]
  /external/llvm/include/llvm-c/
lto.h 235 lto_module_dispose(lto_module_t mod);
243 lto_module_get_target_triple(lto_module_t mod);
251 lto_module_set_target_triple(lto_module_t mod, const char *triple);
260 lto_module_get_num_symbols(lto_module_t mod);
269 lto_module_get_symbol_name(lto_module_t mod, unsigned int index);
278 lto_module_get_symbol_attribute(lto_module_t mod, unsigned int index);
287 lto_module_get_num_deplibs(lto_module_t mod);
296 lto_module_get_deplib(lto_module_t mod, unsigned int index);
305 lto_module_get_num_linkeropts(lto_module_t mod);
314 lto_module_get_linkeropt(lto_module_t mod, unsigned int index)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
anydbm.py 77 mod = _defaultmod
84 mod = __import__(result)
85 return mod.open(file, flag, mode)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
anydbm.py 77 mod = _defaultmod
84 mod = __import__(result)
85 return mod.open(file, flag, mode)

Completed in 1055 milliseconds

1 2 3 45 6 7 8 91011>>