Searched defs:pluginPath (Results 1 - 23 of 23) sorted by relevance

/external/webkit/Source/WebKit2/Shared/Plugins/
H A DPluginProcessCreationParameters.h50 String pluginPath; member in struct:WebKit::PluginProcessCreationParameters
/external/webkit/Source/WebKit2/UIProcess/Plugins/gtk/
H A DPluginInfoStoreGtk.cpp55 bool PluginInfoStore::getPluginInfo(const String& pluginPath, Plugin& plugin) argument
/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/x11/
H A DNetscapePluginModuleX11.cpp66 bool NetscapePluginModule::getPluginInfo(const String& pluginPath, PluginInfoStore::Plugin& plugin) argument
71 RefPtr<PluginPackage> package = PluginPackage::createPackage(pluginPath, 0 /*lastModified*/);
75 plugin.path = pluginPath;
/external/webkit/Source/WebKit2/UIProcess/Plugins/qt/
H A DPluginInfoStoreQt.cpp62 bool PluginInfoStore::getPluginInfo(const String& pluginPath, Plugin& plugin) argument
64 return NetscapePluginModule::getPluginInfo(pluginPath, plugin);
/external/webkit/Source/WebKit2/WebProcess/Plugins/
H A DPluginProcessConnection.h46 static PassRefPtr<PluginProcessConnection> create(PluginProcessConnectionManager* pluginProcessConnectionManager, const String& pluginPath, CoreIPC::Connection::Identifier connectionIdentifier) argument
48 return adoptRef(new PluginProcessConnection(pluginProcessConnectionManager, pluginPath, connectionIdentifier));
52 const String& pluginPath() const { return m_pluginPath; } function in class:WebKit::PluginProcessConnection
62 PluginProcessConnection(PluginProcessConnectionManager* pluginProcessConnectionManager, const String& pluginPath, CoreIPC::Connection::Identifier connectionIdentifier);
H A DPluginProcessConnectionManager.cpp59 PluginProcessConnection* PluginProcessConnectionManager::getPluginProcessConnection(const String& pluginPath) argument
62 if (m_pluginProcessConnections[i]->pluginPath() == pluginPath)
70 if (!WebProcess::shared().connection()->sendSync(Messages::WebProcessProxy::GetPluginProcessConnection(pluginPath), Messages::WebProcessProxy::GetPluginProcessConnection::Reply(connectionMachPort), 0))
82 RefPtr<PluginProcessConnection> pluginProcessConnection = PluginProcessConnection::create(this, pluginPath, connectionIdentifier);
H A DPluginProcessConnection.cpp45 static double defaultSyncMessageTimeout(const String& pluginPath) argument
49 if (pathGetFileName(pluginPath) == "AppleConnect.plugin")
55 PluginProcessConnection::PluginProcessConnection(PluginProcessConnectionManager* pluginProcessConnectionManager, const String& pluginPath, CoreIPC::Connection::Identifier connectionIdentifier) argument
57 , m_pluginPath(pluginPath)
H A DPluginProxy.cpp55 PassRefPtr<PluginProxy> PluginProxy::create(const String& pluginPath) argument
57 return adoptRef(new PluginProxy(pluginPath));
60 PluginProxy::PluginProxy(const String& pluginPath) argument
61 : m_pluginPath(pluginPath)
/external/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistration.cpp38 static void warnIncompatible(DiagnosticsEngine *diags, StringRef pluginPath,
88 StringRef pluginPath,
96 << llvm::sys::path::filename(pluginPath);
87 warnIncompatible(DiagnosticsEngine *diags, StringRef pluginPath, const char *pluginAPIVersion) argument
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DQtPlatformPlugin.cpp94 static QString pluginPath; local
96 if (pluginPath.isNull()) {
98 pluginPath = m_loader.fileName();
100 load(pluginPath);
/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/
H A DNetscapePluginModule.cpp43 NetscapePluginModule::NetscapePluginModule(const String& pluginPath) argument
44 : m_pluginPath(pluginPath)
136 PassRefPtr<NetscapePluginModule> NetscapePluginModule::getOrCreate(const String& pluginPath) argument
142 if (pluginModule->m_pluginPath == pluginPath)
146 RefPtr<NetscapePluginModule> pluginModule(adoptRef(new NetscapePluginModule(pluginPath)));
/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/win/
H A DNetscapePluginModuleWin.cpp56 bool NetscapePluginModule::getPluginInfo(const String& pluginPath, PluginInfoStore::Plugin& plugin) argument
58 String pathCopy = pluginPath;
107 plugin.path = pluginPath;
110 plugin.info.file = pathGetFileName(pluginPath);
/external/webkit/Source/WebKit2/UIProcess/Plugins/
H A DPluginProcessManager.cpp48 void PluginProcessManager::getPluginProcessConnection(PluginInfoStore* pluginInfoStore, const String& pluginPath, PassRefPtr<Messages::WebProcessProxy::GetPluginProcessConnection::DelayedReply> reply) argument
50 ASSERT(!pluginPath.isNull());
52 PluginInfoStore::Plugin plugin = pluginInfoStore->infoForPluginWithPath(pluginPath);
77 void PluginProcessManager::pluginSyncMessageSendTimedOut(const String& pluginPath) argument
79 PluginProcessProxy* pluginProcess = pluginProcessWithPath(pluginPath);
86 PluginProcessProxy* PluginProcessManager::pluginProcessWithPath(const String& pluginPath) argument
89 if (m_pluginProcesses[i]->pluginInfo().path == pluginPath)
H A DPluginInfoStore.cpp96 void PluginInfoStore::loadPlugin(const String& pluginPath) argument
100 if (!getPluginInfo(pluginPath, plugin))
225 PluginInfoStore::Plugin PluginInfoStore::infoForPluginWithPath(const String& pluginPath) argument
228 if (m_plugins[i].path == pluginPath)
/external/webkit/Source/WebKit2/UIProcess/Plugins/win/
H A DPluginInfoStoreWin.cpp326 bool PluginInfoStore::getPluginInfo(const String& pluginPath, Plugin& plugin) argument
328 return NetscapePluginModule::getPluginInfo(pluginPath, plugin);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebProcessProxy.cpp219 void WebProcessProxy::getPluginProcessConnection(const String& pluginPath, PassRefPtr<Messages::WebProcessProxy::GetPluginProcessConnection::DelayedReply> reply) argument
221 PluginProcessManager::shared().getPluginProcessConnection(context()->pluginInfoStore(), pluginPath, reply);
224 void WebProcessProxy::pluginSyncMessageSendTimedOut(const String& pluginPath) argument
226 PluginProcessManager::shared().pluginSyncMessageSendTimedOut(pluginPath);
H A DWebContext.cpp523 void WebContext::getPluginPath(const String& mimeType, const String& urlString, String& pluginPath) argument
531 pluginPath = plugin.path;
/external/webkit/Tools/DumpRenderTree/win/
H A DDumpRenderTree.cpp1230 BSTR pluginPath = SysAllocStringLen(0, exePath().length() + _tcslen(TestPluginDir)); local
1231 _tcscpy(pluginPath, exePath().c_str());
1232 _tcscat(pluginPath, TestPluginDir);
1233 failed = FAILED(viewPrivate->addAdditionalPluginDirectory(pluginPath));
1234 SysFreeString(pluginPath);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.runtime.compatibility_3.2.100.v20100505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.help.base_3.5.2.v201011171123.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebPage.cpp306 String pluginPath; local
310 Messages::WebContext::GetPluginPath::Reply(pluginPath), 0)) {
314 if (pluginPath.isNull())
318 return PluginProxy::create(pluginPath);
320 return NetscapePlugin::create(NetscapePluginModule::getOrCreate(pluginPath));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/lib/
H A Dpdebuild-ant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/internal/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...

Completed in 619 milliseconds