HomeSort by relevance Sort by last modified time
    Searched defs:module (Results 176 - 200 of 435) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/linux/mtd/
map.h 69 struct module *module; member in struct:mtd_chip_driver
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/linux/mtd/
map.h 69 struct module *module; member in struct:mtd_chip_driver
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/linux/mtd/
map.h 69 struct module *module; member in struct:mtd_chip_driver
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/mtd/
map.h 69 struct module *module; member in struct:mtd_chip_driver
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/mtd/
map.h 69 struct module *module; member in struct:mtd_chip_driver
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/mtd/
map.h 69 struct module *module; member in struct:mtd_chip_driver
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/mtd/
map.h 69 struct module *module; member in struct:mtd_chip_driver
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/mtd/
map.h 69 struct module *module; member in struct:mtd_chip_driver
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/mtd/
map.h 69 struct module *module; member in struct:mtd_chip_driver
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/mtd/
map.h 69 struct module *module; member in struct:mtd_chip_driver
  /system/core/libmemtrack/
memtrack.c 27 static const memtrack_module_t *module; variable
43 if (module) {
48 (hw_module_t const**)&module);
50 ALOGE("Couldn't load %s module (%s)", MEMTRACK_HARDWARE_MODULE_ID,
55 return module->init(module);
60 if (!module) {
86 ret = module->getMemory(module, pid, type, t->records, &num_records);
123 if (!module) {
    [all...]
  /bionic/libc/kernel/common/linux/mtd/
map.h 70 struct module *module; member in struct:mtd_chip_driver
  /development/ndk/platforms/android-3/include/linux/
personality.h 73 struct module *module; member in struct:exec_domain
  /external/chromium/base/win/
pe_image_unittest.cc 29 LPCSTR module,
63 LPCSTR module,
75 LPCSTR module,
155 HMODULE module = LoadLibrary(L"advapi32.dll");
156 ASSERT_TRUE(NULL != module);
158 PEImage pe(module);
196 FreeLibrary(module);
201 HMODULE module = LoadLibrary(L"advapi32.dll"); local
202 ASSERT_TRUE(NULL != module);
204 PEImage pe(module);
    [all...]
  /external/chromium/chrome/common/
sandbox_policy.cc 175 // Compares the loaded |module| file name matches |module_name|.
176 bool IsExpandedModuleName(HMODULE module, const wchar_t* module_name) {
178 DWORD sz = ::GetModuleFileNameW(module, path, arraysize(path));
194 HMODULE module = ::GetModuleHandleW(module_name); local
195 if (!module) {
196 // The module could have been loaded with a 8.3 short name. We use
206 module = ::GetModuleHandleW(alt_name.c_str());
207 if (!module)
211 if (!IsExpandedModuleName(module, module_name))
222 // Eviction of injected DLLs is done by the sandbox so that the injected module
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_endtoend.py 45 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
158 separate process, connects to it using the client_for_testing module, and
test_handshake_hybi.py 33 """Tests for handshake module."""
38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
test_mux.py 33 """Tests for mux module."""
42 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
257 """A unittest for mux module."""
  /external/chromium_org/base/win/
pe_image_unittest.cc 29 LPCSTR module,
63 LPCSTR module,
75 LPCSTR module,
203 HMODULE module = LoadLibrary(L"advapi32.dll"); local
204 ASSERT_TRUE(NULL != module);
206 PEImage pe(module);
248 FreeLibrary(module);
253 HMODULE module = LoadLibrary(L"advapi32.dll"); local
254 ASSERT_TRUE(NULL != module);
256 PEImage pe(module);
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_webplugin_impl.cc 50 scoped_refptr<PluginModule> module; member in struct:content::PepperWebPluginImpl::InitData
66 init_data_->module = plugin_module;
87 instance_ = init_data_->module->CreateInstance(
104 init_data_->render_view.get(), init_data_->module->path());
ppb_var_deprecated_impl.cc 100 // given PP_Var. The module from the object will be used for the exception
403 PluginModule* module = HostGlobals::Get()->GetModule(pp_module); local
404 if (!module)
406 return PluginObject::Create(module->GetSomeInstance(),
  /external/chromium_org/net/base/
net_util_win.cc 44 module = ::LoadLibraryEx(path, NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
45 if (!module)
49 ::GetProcAddress(module, "WlanOpenHandle"));
51 ::GetProcAddress(module, "WlanEnumInterfaces"));
53 ::GetProcAddress(module, "WlanQueryInterface"));
55 ::GetProcAddress(module, "WlanFreeMemory"));
57 ::GetProcAddress(module, "WlanCloseHandle"));
63 HMODULE module; member in struct:__anon10962::WlanApi
  /external/chromium_org/net/cert/
nss_cert_database.cc 73 CryptoModule* module = local
75 // The module is already referenced when returned from
77 PK11_FreeSlot(module->os_module_handle());
79 return module;
83 CryptoModule* module = local
85 // The module is already referenced when returned from
87 PK11_FreeSlot(module->os_module_handle());
89 return module;
118 CryptoModule* module,
123 int result = psm::nsPKCS12Blob_Import(module->os_module_handle()
    [all...]
  /external/chromium_org/remoting/host/
disconnect_window_win.cc 229 HMODULE module = base::GetModuleFromAddress(&DialogProc); local
230 hwnd_ = CreateDialogParam(module, MAKEINTRESOURCE(IDD_DISCONNECT), NULL,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
cmdline.py 48 help="Show line numbers of statements in each module that weren't "
74 module = optparse.make_option( variable in class:Opts
75 '-m', '--module', action='store_true',
76 help="<pyfile> is an importable Python module, not a script path, "
119 module=None,
303 Opts.module,
517 if options.module:
579 coverage -x [-p] [-L] [--timid] MODULE.py [ARG1 ARG2 ...]
580 Execute the module, passing the given command-line arguments, collecting

Completed in 2403 milliseconds

1 2 3 4 5 6 78 91011>>