Searched defs:module (Results 1 - 25 of 328) sorted by relevance

1234567891011>>

/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-regr6/
H A Dscript.py1 import module namespace
/external/swiftshader/src/Common/
H A DGrallocAndroid.cpp27 const hw_module_t *module = nullptr; local
28 hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
30 if(!module)
35 m_module = reinterpret_cast<const gralloc_module_t*>(module);
/external/autotest/utils/named_semaphore/
H A Dsetup.py4 module = distutils.core.Extension("namedsem", sources=["namedsem.c"]) variable
8 ext_modules=[module])
/external/chromium-trace/catapult/common/eslint/rules/
H A Dcatapult-camelcase.js17 module.exports = {
/external/protobuf/js/commonjs/
H A Drewrite_tests_for_commonjs.js62 var module = null; variable
81 if (module) { // Skip goog.require() lines before the first directive.
84 console.log("googleProtobuf.exportSymbol('" + fullSym + "', " + module + sym + ', global);');
88 module = camelCase(module_path[module_path.length - 1]);
91 if (module != "googleProtobuf") { // We unconditionally require this in the header.
92 console.log("var " + module + " = require('./" + isLoadFromFile[1] + "');");
/external/hyphenation-patterns/
H A DAndroid.mk67 define build-one-pattern-module
81 $(foreach l, $(pattern_locales), $(call build-one-pattern-module, $(dir $(l)), $(notdir $l)))
82 build-one-pattern-module :=
/external/noto-fonts/
H A DAndroid.mk23 # It also serves as the module name and the dest file name.
25 define build-one-font-module
46 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
61 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
231 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
246 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
251 build-one-font-module :=
/external/selinux/python/sepolgen/tests/
H A Dtest_module.py21 import sepolgen.module as module namespace
27 mc = module.ModuleCompiler()
/external/guice/core/test/com/google/inject/spi/
H A DElementApplyToTest.java27 protected void checkModule(Module module, ElementVisitor<?>... visitors) { argument
28 // convert from module to elements and back
29 super.checkModule(Elements.getModule(Elements.getElements(module)), visitors);
/external/guice/core/test/com/google/inject/util/
H A DNoopOverrideTest.java28 protected void checkModule(Module module, ElementVisitor<?>... visitors) { argument
29 Module overridden = Modules.override(module).with(Modules.EMPTY_MODULE);
/external/guice/extensions/struts2/test/com/google/inject/struts2/
H A DStruts2FactoryTest.java44 private final Module module; field in class:Struts2FactoryTest.TestListener
46 public TestListener(Module module) { argument
47 this.module = module;
62 module
/external/libmojo/mojo/public/tools/bindings/generators/
H A Drun_cpp_generator.py23 module = mojom.generate.data.ModuleFromData(dict) variable
27 cpp = mojom_cpp_generator.Generator(module, ".", dir)
/external/libxml2/
H A DtestModule.c45 xmlModulePtr module = NULL; local
48 /* build the module filename, and confirm the module exists */
54 module = xmlModuleOpen((const char*)filename, 0);
55 if (module)
57 if (xmlModuleSymbol(module, "hello_world", (void **) &hello_world)) {
68 xmlModuleClose(module);
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_init.h41 LLVMModuleRef module; member in struct:gallivm_state
/external/parameter-framework/upstream/utility/windows/
H A DDynamicLibrary.cpp44 HMODULE module = LoadLibrary(_path.c_str()); local
46 _handle = reinterpret_cast<void *>(module);
56 HMODULE module = reinterpret_cast<HMODULE>(_handle); local
58 FreeLibrary(module);
63 HMODULE module = reinterpret_cast<HMODULE>(_handle); local
65 void *sym = reinterpret_cast<void *>(GetProcAddress(module, symbol.c_str()));
/external/protobuf/python/google/protobuf/internal/
H A Dapi_implementation.cc72 "_api_implementation is a module that exposes compile-time constants that\n"
101 PyObject *module = PyModule_Create(&_module); local
103 PyObject *module = Py_InitModule3(
108 if (module == NULL) {
112 // Adds the module variable "api_version".
114 module,
120 { Py_DECREF(module); return NULL; }
122 return module;
/external/roboto-fonts/
H A DAndroid.mk37 # It also serves as the module name and the dest file name.
38 define build-one-font-module
88 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
90 build-one-font-module :=
/external/syslinux/com32/lib/sys/module/
H A Dcommon.h2 * common.h - Common internal operations performed by the module subsystem
13 #include <sys/module.h>
29 static inline Elf_Sym *symbol_get_entry(struct elf_module *module, int entry) argument
31 char *sym_table = (char *)module->sym_table;
32 int index = entry * module->syment_size;
48 extern void print_elf_symbols(struct elf_module *module);
56 extern int image_load(struct elf_module *module);
57 extern int image_unload(struct elf_module *module);
58 extern int image_read(void *buff, size_t size, struct elf_module *module);
59 extern int image_skip(size_t size, struct elf_module *module);
[all...]
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.cc135 const char *module = Symbolizer::GetOrInit()->GetModuleNameForPc(Vtable); local
136 if (module)
137 Diag(Vtable, DL_Note, "invalid vtable in module %0") << module;
/external/elfutils/tests/
H A Ddwfl-bug-fd-leak.c77 Dwfl_Module *module = dwfl_addrmodule (dwfl, address); local
78 if (module == NULL)
79 error (2, 0, "dwfl_addrmodule: no module available for 0x%" PRIx64 "",
81 Elf *elf = dwfl_module_getelf (module, &bias);
/external/google-breakpad/src/common/linux/
H A Ddump_symbols_unittest.cc45 #include "common/module.h"
54 Module** module);
84 Module* module; local
90 &module));
117 Module* module; local
123 &module));
126 module->Write(s, ALL_SYMBOL_DATA);
130 delete module;
157 Module* module; local
163 &module));
[all...]
/external/google-breakpad/src/common/
H A Dstabs_to_module.h46 #include "common/module.h"
66 StabsToModule(Module *module) : argument
67 module_(module),
100 // The module we're contributing debugging info to.
/external/google-breakpad/src/processor/
H A Dbasic_code_modules.cc63 // Make a copy of the module and insert it into the map. Use
67 linked_ptr<const CodeModule> module(
69 if (!map_->StoreRange(module->base_address(), module->size(), module)) {
70 BPLOG(ERROR) << "Module " << module->code_file() <<
91 linked_ptr<const CodeModule> module; local
92 if (!map_->RetrieveRange(address, &module, NULL, NULL)) {
93 BPLOG(INFO) << "No module at " << HexString(address);
97 return module
106 linked_ptr<const CodeModule> module; local
[all...]
H A Dstack_frame_symbolizer.cc63 const CodeModule* module = modules->GetModuleForAddress(frame->instruction); local
64 if (!module) return kError;
65 frame->module = module;
68 // If module is known to have missing symbol file, return.
69 if (no_symbol_modules_.find(module->code_file()) !=
74 // If module is already loaded, go ahead to fill source line info and return.
75 if (resolver_->HasModule(frame->module)) {
77 return resolver_->IsModuleCorrupt(frame->module) ?
91 module, system_inf
[all...]
/external/kmod/testsuite/
H A Dstripped-module.h16 struct module struct
23 /* Unique handle for this module */

Completed in 725 milliseconds

1234567891011>>