HomeSort by relevance Sort by last modified time
    Searched full:m_module (Results 1 - 25 of 28) sorted by null

1 2

  /external/webkit/Source/WebKit2/Platform/win/
ModuleWin.cpp 36 m_module = ::LoadLibraryExW(m_path.charactersWithNullTermination(), 0, LOAD_WITH_ALTERED_SEARCH_PATH);
37 return m_module;
42 if (!m_module)
44 ::FreeLibrary(m_module);
45 m_module = 0;
50 if (!m_module)
53 return ::GetProcAddress(m_module, functionName);
  /external/webkit/Source/WebCore/plugins/mac/
PluginPackageMac.cpp 138 WTF::RetainPtr<CFTypeRef> mimeTypesFileName = CFBundleGetValueForInfoDictionaryKey(m_module, CFSTR("WebPluginMIMETypesFilename"));
145 WTF::RetainPtr<CFDictionaryRef> plist = readPListFile(path.get(), /*createFile*/ false, m_module);
152 plist = readPListFile(path.get(), /*createFile*/ true, m_module);
157 plist = readPListFile(path.get(), /*createFile*/ true, m_module);
165 mimeDict = (CFDictionaryRef)CFBundleGetValueForInfoDictionaryKey(m_module, CFSTR("WebPluginMIMETypes"));
201 m_name = (CFStringRef)CFBundleGetValueForInfoDictionaryKey(m_module, CFSTR("WebPluginName"));
202 m_description = (CFStringRef)CFBundleGetValueForInfoDictionaryKey(m_module, CFSTR("WebPluginDescription"));
205 int resFile = CFBundleOpenBundleResourceMap(m_module);
234 CFBundleCloseBundleResourceMap(m_module, resFile);
261 m_module = CFBundleCreate(NULL, url.get())
    [all...]
  /external/webkit/Source/WebCore/plugins/qt/
PluginPackageQt.cpp 43 NPP_GetValueProcPtr gv = (NPP_GetValueProcPtr)m_module->resolve("NP_GetValue");
46 (NPP_GetMIMEDescriptionProcPtr)m_module->resolve("NP_GetMIMEDescription");
141 m_module = new QLibrary((QString)m_path);
142 m_module->setLoadHints(QLibrary::ResolveAllSymbolsHint);
143 if (!m_module->load()) {
145 m_module->errorString().toLatin1().constData());
154 NP_Initialize = (NP_InitializeFuncPtr)m_module->resolve("NP_Initialize");
155 m_NPP_Shutdown = (NPP_ShutdownProcPtr)m_module->resolve("NP_Shutdown");
175 initializeGtk(m_module);
  /external/webkit/Source/WebCore/plugins/gtk/
PluginPackageGtk.cpp 52 g_module_symbol(m_module, "NP_GetMIMEDescription", (void**)&NP_GetMIMEDescription);
53 g_module_symbol(m_module, "NP_GetValue", (void**)&NPP_GetValue);
157 m_module = g_module_open(finalPath.get(), G_MODULE_BIND_LOCAL);
159 if (!m_module) {
164 if (moduleMixesGtkSymbols(m_module)) {
166 g_module_close(m_module);
186 g_module_symbol(m_module, "NP_Initialize", (void**)&NP_Initialize);
187 g_module_symbol(m_module, "NP_Shutdown", (void**)&m_NPP_Shutdown);
  /external/webkit/Source/WebKit2/Shared/Plugins/Netscape/
NetscapePluginModule.cpp 204 m_module = adoptPtr(new Module(m_pluginPath));
205 if (!m_module->load())
208 NP_InitializeFuncPtr initializeFuncPtr = m_module->functionPointer<NP_InitializeFuncPtr>("NP_Initialize");
213 NP_GetEntryPointsFuncPtr getEntryPointsFuncPtr = m_module->functionPointer<NP_GetEntryPointsFuncPtr>("NP_GetEntryPoints");
218 m_shutdownProcPtr = m_module->functionPointer<NPP_ShutdownProcPtr>("NP_Shutdown");
233 ResFileRefNum pluginResourceFile = m_module->bundleResourceMap();
259 m_module = 0;
NetscapePluginModule.h 89 OwnPtr<Module> m_module; member in class:WebKit::NetscapePluginModule
  /external/webkit/Source/WebCore/plugins/win/
PluginPackageWin.cpp 232 ASSERT(m_module);
241 m_module = ::LoadLibraryW(m_path.charactersWithNullTermination());
254 m_module = ::LoadLibraryExW(m_path.charactersWithNullTermination(), 0, LOAD_WITH_ALTERED_SEARCH_PATH);
257 if (m_module)
258 ::FreeLibrary(m_module);
264 if (!m_module)
274 NP_Initialize = (NP_InitializeFuncPtr)GetProcAddress(m_module, L"NP_Initialize");
275 NP_GetEntryPoints = (NP_GetEntryPointsFuncPtr)GetProcAddress(m_module, L"NP_GetEntryPoints");
276 m_NPP_Shutdown = (NPP_ShutdownProcPtr)GetProcAddress(m_module, L"NP_Shutdown");
278 NP_Initialize = (NP_InitializeFuncPtr)GetProcAddress(m_module, "NP_Initialize")
    [all...]
  /external/webkit/Source/WebCore/plugins/android/
PluginPackageAndroid.cpp 57 DynamicLibraryCloser(PlatformModule *module) : m_module(module) { }
61 if (m_module && *m_module)
63 dlclose(*m_module);
64 *m_module = 0;
67 void ok() { m_module = NULL; }
70 PlatformModule *m_module; member in class:WebCore::DynamicLibraryCloser
201 ASSERT(m_module);
211 ASSERT(m_module == NULL);
222 m_module = handle
    [all...]
  /frameworks/compile/mclinker/lib/LD/
GroupReader.cpp 24 : m_Module(pModule),
52 Module::input_iterator input_end = m_Module.input_end();
84 m_Module.getObjectList().push_back(*input);
93 m_Module.getLibraryList().push_back(*input);
124 m_Module.getInputTree().merge<InputTree::Inclusive>((*it)->input,
SectionRules.cpp 38 m_Module(pModule) {
87 section = m_Module.getSection(pName);
  /frameworks/compile/mclinker/lib/Core/
IRBuilder.cpp 106 : m_Module(pModule), m_Config(pConfig), m_InputBuilder(pConfig) {
107 m_InputBuilder.setCurrentTree(m_Module.getInputTree());
501 resolved_result.info = m_Module.getNamePool().createSymbol(pName,
516 m_Module.getNamePool().insertSymbol(pName, false, pType, pDesc, pBinding,
569 m_Module.getSymbolTable().forceLocal(*output_sym);
572 m_Module.getSymbolTable().add(*output_sym);
581 m_Module.getSymbolTable().arrange(*output_sym, old_info);
617 m_Module.getNamePool().insertSymbol(pName, true, pType, pDesc,
647 m_Module.getSymbolTable().forceLocal(*output_sym);
694 ResolveInfo* info = m_Module.getNamePool().findInfo(pName)
    [all...]
  /external/webkit/Source/WebKit2/Platform/
Module.cpp 34 , m_module(0)
Module.h 73 HMODULE m_module; member in class:WebKit::Module
  /frameworks/compile/mclinker/lib/Fragment/
FragmentLinker.cpp 46 m_Module(pModule),
57 Module::sym_iterator symbol, symEnd = m_Module.sym_end();
58 for (symbol = m_Module.sym_begin(); symbol != symEnd; ++symbol) {
98 Module::obj_iterator input, inEnd = m_Module.obj_end();
99 for (input = m_Module.obj_begin(); input != inEnd; ++input) {
146 Module::obj_iterator input, inEnd = m_Module.obj_end();
147 for (input = m_Module.obj_begin(); input != inEnd; ++input) {
196 Module::iterator sectIter, sectEnd = m_Module.end();
197 for (sectIter = m_Module.begin(); sectIter != sectEnd; ++sectIter) {
  /external/webkit/Source/WebCore/plugins/
PluginPackage.cpp 61 ASSERT(m_module);
69 ASSERT(m_module);
72 unloadModule(m_module);
73 m_module = 0;
108 , m_module(0)
140 ASSERT(m_module);
PluginPackage.h 120 PlatformModule m_module; member in class:WebCore::PluginPackage
  /frameworks/compile/mclinker/lib/Target/
OutputRelocSection.cpp 25 : m_Module(pModule),
74 m_Module.getSymbolTable().changeLocalToDynamic(pSymbol);
  /frameworks/compile/mclinker/include/mcld/Target/
OutputRelocSection.h 53 Module& m_Module;
  /frameworks/compile/mclinker/lib/Object/
ObjectBuilder.cpp 32 : m_Config(pConfig), m_Module(pTheModule) {
47 m_Module.getSectionTable().push_back(output_sect);
57 LDSection* target = m_Module.getSection(output_name);
65 m_Module.getSectionTable().push_back(target);
  /frameworks/compile/mclinker/include/mcld/Fragment/
FragmentLinker.h 71 Module& m_Module;
  /frameworks/compile/mclinker/include/mcld/LD/
GroupReader.h 59 Module& m_Module;
SectionRules.h 77 Module& m_Module;
GNUArchiveReader.h 90 Module& m_Module;
  /frameworks/compile/mclinker/include/mcld/CodeGen/
MCLinker.h 73 mcld::Module& m_Module;
  /frameworks/compile/mclinker/include/mcld/Object/
ObjectBuilder.h 97 Module& m_Module;

Completed in 460 milliseconds

1 2