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

12345

/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
H A DLoginModuleUtilsTest.java18 package org.apache.harmony.auth.tests.module;
26 import org.apache.harmony.auth.module.LoginModuleUtils;
H A DKeyStoreLoginModuleTest.java18 package org.apache.harmony.auth.tests.module;
29 import org.apache.harmony.auth.module.KeyStoreLoginModule;
35 // module options
84 KeyStoreLoginModule module = new KeyStoreLoginModule();
86 module.initialize(subject, null, null, options);
88 assertTrue("Login should be successful", module.login());
89 module.commit();
104 module.initialize(subject, null, null, options);
106 assertFalse("Commit shouldn't be successful", module.commit());
115 KeyStoreLoginModule module
[all...]
H A DJndiLoginModuleTest.java18 package org.apache.harmony.auth.tests.module;
35 import org.apache.harmony.auth.module.JndiLoginModule;
39 // module options
62 * {@link org.apache.harmony.auth.module.JndiLoginModule#abort()}.
95 * {@link org.apache.harmony.auth.module.JndiLoginModule#commit()}.
98 JndiLoginModule module = new JndiLoginModule();
100 module.initialize(subject, new MockCallbackHandler(), null, options);
102 assertTrue("Login should be successful", module.login());
103 module.commit();
111 module
[all...]
H A DLdapLoginModuleTest.java18 package org.apache.harmony.auth.tests.module;
35 import org.apache.harmony.auth.module.LdapLoginModule;
41 // module options
57 * Test method for {@link org.apache.harmony.auth.module.LdapLoginModule#abort()}.
94 * Test method for {@link org.apache.harmony.auth.module.LdapLoginModule#commit()}.
97 LdapLoginModule module = new LdapLoginModule();
100 module.initialize(subject, new MockCallbackHandler(), null, options);
102 assertTrue("Login should be successful", module.login());
103 module.commit();
111 module
[all...]
/external/chromium/base/
H A Dresource_util.cc9 bool GetDataResourceFromModule(HMODULE module, int resource_id, argument
11 if (!module)
19 HRSRC hres_info = FindResource(module, MAKEINTRESOURCE(resource_id),
24 DWORD data_size = SizeofResource(module, hres_info);
25 HGLOBAL hres = LoadResource(module, hres_info);
H A Dnative_library_win.cc34 HMODULE module = (*load_library_api)(library_path.value().c_str()); local
38 return module;
/external/apache-harmony/auth/src/test/java/unix/org/apache/harmony/auth/module/
H A DUnixLoginModuleTest.java21 package org.apache.harmony.auth.module;
32 import org.apache.harmony.auth.module.UnixLoginModule;
/external/chromium/base/i18n/
H A Dicu_util.cc64 // We expect to find the ICU data module alongside the current module.
69 HMODULE module = LoadLibrary(data_path.value().c_str()); local
70 if (!module) {
75 FARPROC addr = GetProcAddress(module, ICU_UTIL_DATA_SYMBOL);
/external/chromium/googleurl/src/
H A Dgurl_test_main.cc64 // We expect to find the ICU data module alongside the current module.
65 // Because the module name is ASCII-only, "A" API should be safe.
68 HMODULE module = LoadLibraryA("icudt.dll"); local
69 if (!module) {
70 module = LoadLibraryA(ICU_UTIL_DATA_SHARED_MODULE_NAME);
71 if (!module)
75 FARPROC addr = GetProcAddress(module, ICU_UTIL_DATA_SYMBOL);
86 // We expect to find the ICU data module alongside the current module
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_stream.py33 """Tests for stream module."""
38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
45 """A unittest for stream module."""
H A Dtest_stream_hixie75.py33 """Tests for stream module."""
38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
H A Dtest_extensions.py33 """Tests for extensions module."""
38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
H A Dtest_memorizingfile.py33 """Tests for memorizingfile module."""
39 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
45 """A unittest for memorizingfile module."""
H A Dtest_util.py33 """Tests for util module."""
40 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
49 """A unittest for util module."""
H A Dtest_mock.py33 """Tests for mock module."""
40 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
/external/webkit/Source/WebCore/platform/android/
H A DFileSystemAndroid.cpp79 bool unloadModule(PlatformModule module) argument
81 return !dlclose(module);
/external/webkit/Source/WebKit2/win/
H A DMainWin.cpp60 HMODULE module = ::LoadLibraryW(webKitPath); local
62 WebKitMainProcPtr mainProc = reinterpret_cast<WebKitMainProcPtr>(GetProcAddress(module, "WebKitMain"));
/external/webkit/Tools/DumpRenderTree/win/
H A DMD5.cpp40 static HMODULE module = LoadLibraryW(L"Cryptdll.dll"); local
41 return module;
/external/chromium/base/threading/
H A Dthread_local_storage_win.cc154 void NTAPI OnThreadExit(PVOID module, DWORD reason, PVOID reserved) { argument
162 // called automatically by the OS loader code (not the CRT) when the module is
163 // loaded and on thread creation. They are NOT called if the module has been
/external/chromium/base/win/
H A Dpe_image.h47 typedef bool (*EnumImportChunksFunction)(const PEImage &image, LPCSTR module,
52 // module is the dll that exports this symbol. cookie is the value passed to
55 typedef bool (*EnumImportsFunction)(const PEImage &image, LPCSTR module,
60 // module is the dll that exports this block of symbols. cookie is the value
65 LPCSTR module,
78 explicit PEImage(HMODULE module) : module_(module) {} argument
79 explicit PEImage(const void* module) { argument
80 module_ = reinterpret_cast<HMODULE>(const_cast<void*>(module));
84 HMODULE module() cons
247 inline HMODULE PEImage::module() const { function in class:base::win::PEImage
[all...]
/external/libxml2/
H A Dxmlmodule.c2 * xmlmodule.c : basic API for dynamic module loading added 2.6.17
33 * module memory error handler *
44 xmlModuleErrMemory(xmlModulePtr module, const char *extra) argument
48 if (module != NULL) {
49 name = (const char *) module->name;
60 * @name: the module name
63 * Opens a module/shared library given its name or path
66 * Returns a handle for the module or NULL in case of error
71 xmlModulePtr module; local
73 module
106 xmlModuleSymbol(xmlModulePtr module, const char *name, void **symbol) argument
142 xmlModuleClose(xmlModulePtr module) argument
178 xmlModuleFree(xmlModulePtr module) argument
[all...]
/external/chromium/chrome/browser/ui/
H A Dcrypto_module_password_dialog_nss.cc20 bool ShouldShowDialog(const net::CryptoModule* module) { argument
22 return (PK11_NeedLogin(module->os_module_handle()) &&
23 !PK11_IsLoggedIn(module->os_module_handle(), NULL /* wincx */));
/external/chromium/net/base/
H A Dcert_database_openssl.cc62 int CertDatabase::ImportFromPKCS12(CryptoModule* module, argument
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer.h35 char *module; member in struct:__sanitizer::AddressInfo
51 module = internal_strdup(mod_name);
/external/libnfc-nci/halimpl/bcm2079x/
H A Dnfc_nci.c120 static int nfc_open (const hw_module_t* module, const char* name, hw_device_t** device) argument
132 dev->nci_device.common.module = (struct hw_module_t*) module;

Completed in 553 milliseconds

12345