HomeSort by relevance Sort by last modified time
    Searched defs:module (Results 1 - 25 of 245) sorted by null

1 2 3 4 5 6 7 8 910

  /external/webkit/Source/WebKit2/win/
MainWin.cpp 60 HMODULE module = ::LoadLibraryW(webKitPath); local
62 WebKitMainProcPtr mainProc = reinterpret_cast<WebKitMainProcPtr>(GetProcAddress(module, "WebKitMain"));
  /frameworks/compile/libbcc/lib/AndroidBitcode/
ABCCompiler.cpp 19 #include <llvm/IR/Module.h>
35 llvm::Module &module = pScript.getSource().getModule(); local
46 pm.run(module);
  /external/smack/src/org/apache/harmony/javax/security/auth/login/
LoginContext.java 83 private Module[] modules;
168 modules = new Module[entries.length];
170 modules[i] = new Module(entries[i]);
266 for (Module module : modules) {
268 // if a module fails during Class.forName(), then it breaks overall
270 module.create(subject, callbackHandler, sharedState);
272 if (module.module.login()) {
273 ++total[module.getFlag()]
492 LoginModule module; field in class:LoginContext.Module
    [all...]
  /external/chromium/googleurl/src/
gurl_test_main.cc 64 // 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/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
JndiLoginModuleTest.java 18 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(); local
100 module.initialize(subject, new MockCallbackHandler(), null, options);
102 assertTrue("Login should be successful", module.login());
103 module.commit();
111 module.initialize(subject, new MockCallbackHandler(), null, options)
125 JndiLoginModule module = new JndiLoginModule(); local
139 JndiLoginModule module = new JndiLoginModule(); local
170 JndiLoginModule module = new JndiLoginModule(); local
197 JndiLoginModule module = new JndiLoginModule(); local
    [all...]
LdapLoginModuleTest.java 18 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(); local
100 module.initialize(subject, new MockCallbackHandler(), null, options);
102 assertTrue("Login should be successful", module.login());
103 module.commit();
111 module.initialize(subject, new MockCallbackHandler(), null, options)
124 LdapLoginModule module = new LdapLoginModule(); local
137 LdapLoginModule module = new LdapLoginModule(); local
168 LdapLoginModule module = new LdapLoginModule(); local
192 LdapLoginModule module = new LdapLoginModule(); local
    [all...]
KeyStoreLoginModuleTest.java 18 package org.apache.harmony.auth.tests.module;
29 import org.apache.harmony.auth.module.KeyStoreLoginModule;
35 // module options
84 KeyStoreLoginModule module = new KeyStoreLoginModule(); local
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 = new KeyStoreLoginModule() local
125 KeyStoreLoginModule module = new KeyStoreLoginModule(); local
153 KeyStoreLoginModule module = new KeyStoreLoginModule(); local
    [all...]
Krb5LoginModuleTest.java 18 package org.apache.harmony.auth.tests.module;
31 import org.apache.harmony.auth.module.Krb5LoginModule;
52 // module options
100 // create login module for testing
101 Krb5LoginModule module = new Krb5LoginModule(); local
102 module.initialize(null, new MockCallbackHandler(), null, options);
108 module.login();
117 module.login();
134 Krb5LoginModule module = new Krb5LoginModule(); local
138 module.initialize(null, null, null, options)
    [all...]
  /ndk/build/core/
definitions.mk 347 # For each module 'foo', __ndk_modules.foo.<field> is used
348 # to store module-specific information.
350 # type -> type of module (e.g. 'static', 'shared', ...)
351 # depends -> list of other modules this module depends on
353 # Also, LOCAL_XXXX values defined for a module are recorded in XXXX, e.g.:
355 # PATH -> recorded LOCAL_PATH for the module
356 # CFLAGS -> recorded LOCAL_CFLAGS for the module
361 # MAKEFILE -> The Android.mk where the module is defined.
363 # OBJECTS -> List of module objects
364 # BUILT_MODULE -> location of module built file (e.g. obj/<app>/<abi>/libfoo.so
    [all...]
  /device/generic/goldfish/opengl/
common.mk 9 # The following macros are used to start a new GLES emulation module.
21 # $(call emugl-end-module)
23 emugl-begin-static-library = $(call emugl-begin-module,$1,STATIC_LIBRARY)
24 emugl-begin-shared-library = $(call emugl-begin-module,$1,SHARED_LIBRARY)
31 emugl-begin-module = \
40 $(call _emugl-init-module,$1,$2,$3)
42 # Used to end a module definition, see function definitions above
43 emugl-end-module = \
47 $(if $(EMUGL_DEBUG),$(call emugl-dump-module))
49 # Managing module exports and imports
    [all...]
  /sdk/emulator/opengl/
common.mk 9 # The following macros are used to start a new GLES emulation module.
21 # $(call emugl-end-module)
23 emugl-begin-host-static-library = $(call emugl-begin-module,$1,HOST_STATIC_LIBRARY,HOST)
24 emugl-begin-host-shared-library = $(call emugl-begin-module,$1,HOST_SHARED_LIBRARY,HOST)
25 emugl-begin-host-executable = $(call emugl-begin-module,$1,HOST_EXECUTABLE,HOST)
32 emugl-begin-module = \
42 $(call _emugl-init-module,$1,$2,$3)
44 # Used to end a module definition, see function definitions above
45 emugl-end-module = \
49 $(if $(EMUGL_DEBUG),$(call emugl-dump-module))
    [all...]
  /development/tools/idegen/src/com/android/idegen/
AggregatedModule.java 33 * Module while is a composition of many other modules.
37 public class AggregatedModule extends Module {
42 private Set<Module> modules;
45 public AggregatedModule(String aggregatedName, Set<Module> modules) {
65 for (Module module : modules) {
66 if (module.isAndroidModule()) {
76 for (Module module : modules) {
77 Iterables.addAll(result, module.getIntermediatesDirs())
    [all...]
ModuleCache.java 40 HashMap<String, Module> modulesByName = Maps.newHashMap();
54 public Module getAndCache(String moduleName) throws IOException {
57 Module module = modulesByName.get(moduleName); local
58 if (module == null) {
61 logger.warning("Unable to find make file for module: " + moduleName);
63 module = new StandardModule(moduleName, makeFile);
64 module.build();
65 modulesByName.put(moduleName, module);
68 return module;
82 AggregatedModule module = new AggregatedModule(aggregatedName, modules); local
98 modulesByName.put(module.getName(), module); local
    [all...]
IntellijProject.java 57 Module module = cache.getAndCache(moduleName); local
58 projectIdeaDir = new File(module.getDir(), ".idea");
63 Set<String> deps = module.getAllDependencies();
69 Iterable<Module> modules = cache.getModules();
70 for (Module mod : modules) {
75 for (Module mod : modules) {
79 createModulesFile(module);
80 createVcsFile(module);
84 private void replaceWithAggregate(Module module)
186 String module = args[1]; local
    [all...]
  /build/core/tasks/
factory_ramdisk.mk 32 # A module name may end up in multiple modules (so multiple built files)
34 # This function selects the module built file based on the install path.
36 # $(2): the module built files
37 define install-one-factory-ramdisk-module
57 $(foreach d,$(_fr_dests),$(call install-one-factory-ramdisk-module,$(d),$(_fr_m_built))) \
  /external/chromium/base/i18n/
icu_util.cc 64 // 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/base/
native_library_win.cc 34 HMODULE module = (*load_library_api)(library_path.value().c_str()); local
38 return module;
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_stream.py 33 """Tests for stream module."""
38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
45 """A unittest for stream module."""
test_stream_hixie75.py 33 """Tests for stream module."""
38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
test_extensions.py 33 """Tests for extensions module."""
38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
  /external/webkit/Tools/DumpRenderTree/win/
MD5.cpp 40 static HMODULE module = LoadLibraryW(L"Cryptdll.dll"); local
41 return module;
  /frameworks/compile/libbcc/lib/Renderscript/
RSCompiler.cpp 19 #include <llvm/IR/Module.h>
98 llvm::Module &module = script.getSource().getModule(); local
102 "%s!", module.getModuleIdentifier().c_str());
114 rs_passes.run(module);
  /frameworks/native/libs/ui/
GraphicBufferMapper.cpp 41 hw_module_t const* module; local
42 int err = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
43 ALOGE_IF(err, "FATAL: can't find the %s module", GRALLOC_HARDWARE_MODULE_ID);
45 mAllocMod = (gralloc_module_t const *)module;
  /hardware/libhardware/tests/nusensors/
nusensors.cpp 64 struct sensors_module_t* module; local
66 err = hw_get_module(SENSORS_HARDWARE_MODULE_ID, (hw_module_t const**)&module);
72 err = sensors_open(&module->common, &device);
79 int count = module->get_sensors_list(module, &list);
  /external/chromium/base/win/
pe_image.h 47 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) {}
79 explicit PEImage(const void* module) {
80 module_ = reinterpret_cast<HMODULE>(const_cast<void*>(module));
84 HMODULE module() const
247 inline HMODULE PEImage::module() const { function in class:base::win::PEImage
    [all...]

Completed in 597 milliseconds

1 2 3 4 5 6 7 8 910