Home
last modified time | relevance | path

Searched refs:pluginPath (Results 1 – 25 of 40) sorted by relevance

12

/external/webkit/Source/WebKit2/UIProcess/Plugins/
DPluginProcessManager.cpp48 …luginProcessConnection(PluginInfoStore* pluginInfoStore, const String& pluginPath, PassRefPtr<Mess… in getPluginProcessConnection() argument
50 ASSERT(!pluginPath.isNull()); in getPluginProcessConnection()
52 PluginInfoStore::Plugin plugin = pluginInfoStore->infoForPluginWithPath(pluginPath); in getPluginProcessConnection()
77 void PluginProcessManager::pluginSyncMessageSendTimedOut(const String& pluginPath) in pluginSyncMessageSendTimedOut() argument
79 PluginProcessProxy* pluginProcess = pluginProcessWithPath(pluginPath); in pluginSyncMessageSendTimedOut()
86 PluginProcessProxy* PluginProcessManager::pluginProcessWithPath(const String& pluginPath) in pluginProcessWithPath() argument
89 if (m_pluginProcesses[i]->pluginInfo().path == pluginPath) in pluginProcessWithPath()
DPluginProcessManager.h53 …void getPluginProcessConnection(PluginInfoStore*, const String& pluginPath, PassRefPtr<Messages::W…
59 void pluginSyncMessageSendTimedOut(const String& pluginPath);
65 PluginProcessProxy* pluginProcessWithPath(const String& pluginPath);
DPluginInfoStore.h70 Plugin infoForPluginWithPath(const String& pluginPath);
78 void loadPlugin(const String& pluginPath);
88 static bool getPluginInfo(const String& pluginPath, Plugin& plugin);
DPluginInfoStore.cpp96 void PluginInfoStore::loadPlugin(const String& pluginPath) in loadPlugin() argument
100 if (!getPluginInfo(pluginPath, plugin)) in loadPlugin()
225 PluginInfoStore::Plugin PluginInfoStore::infoForPluginWithPath(const String& pluginPath) in infoForPluginWithPath() argument
228 if (m_plugins[i].path == pluginPath) in infoForPluginWithPath()
/external/webkit/Source/WebKit2/WebProcess/Plugins/
DPluginProcessConnectionManager.cpp59 …essConnection* PluginProcessConnectionManager::getPluginProcessConnection(const String& pluginPath) in getPluginProcessConnection() argument
62 if (m_pluginProcessConnections[i]->pluginPath() == pluginPath) in getPluginProcessConnection()
70 …tion()->sendSync(Messages::WebProcessProxy::GetPluginProcessConnection(pluginPath), Messages::WebP… in getPluginProcessConnection()
82 …ction> pluginProcessConnection = PluginProcessConnection::create(this, pluginPath, connectionIdent… in getPluginProcessConnection()
DPluginProcessConnection.h46 …rocessConnectionManager* pluginProcessConnectionManager, const String& pluginPath, CoreIPC::Connec… in create() argument
48 …return adoptRef(new PluginProcessConnection(pluginProcessConnectionManager, pluginPath, connection… in create()
52 const String& pluginPath() const { return m_pluginPath; } in pluginPath() function
62 …rocessConnectionManager* pluginProcessConnectionManager, const String& pluginPath, CoreIPC::Connec…
DPluginProcessConnection.cpp45 static double defaultSyncMessageTimeout(const String& pluginPath) in defaultSyncMessageTimeout() argument
49 if (pathGetFileName(pluginPath) == "AppleConnect.plugin") in defaultSyncMessageTimeout()
55 …rocessConnectionManager* pluginProcessConnectionManager, const String& pluginPath, CoreIPC::Connec… in PluginProcessConnection() argument
57 , m_pluginPath(pluginPath) in PluginProcessConnection()
DPluginProcessConnectionManager.h46 PluginProcessConnection* getPluginProcessConnection(const String& pluginPath);
DPluginProxy.h51 static PassRefPtr<PluginProxy> create(const String& pluginPath);
61 explicit PluginProxy(const String& pluginPath);
DPluginProxy.cpp55 PassRefPtr<PluginProxy> PluginProxy::create(const String& pluginPath) in create() argument
57 return adoptRef(new PluginProxy(pluginPath)); in create()
60 PluginProxy::PluginProxy(const String& pluginPath) in PluginProxy() argument
61 : m_pluginPath(pluginPath) in PluginProxy()
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
DNetscapePluginHostManager.h47 …PassRefPtr<NetscapePluginInstanceProxy> instantiatePlugin(const WTF::String& pluginPath, cpu_type_…
51 … static void createPropertyListFile(const WTF::String& pluginPath, cpu_type_t pluginArchitecture);
56 …NetscapePluginHostProxy* hostForPlugin(const WTF::String& pluginPath, cpu_type_t pluginArchitectur…
61 …bool spawnPluginHost(const WTF::String& pluginPath, cpu_type_t pluginArchitecture, mach_port_t cli…
DNetscapePluginHostManager.mm70 NetscapePluginHostProxy* NetscapePluginHostManager::hostForPlugin(const WTF::String& pluginPath, cp…
72 pair<PluginHostMap::iterator, bool> result = m_pluginHosts.add(pluginPath, 0);
86 … if (!spawnPluginHost(pluginPath, pluginArchitecture, clientPort, pluginHostPort, pluginHostPSN)) {
103 bool NetscapePluginHostManager::spawnPluginHost(const String& pluginPath, cpu_type_t pluginArchitec…
151 …[[(NSString*)pluginPath lastPathComponent] stringByDeletingPathExtension], [[NSProcessInfo process…
155 (NSString *)pluginPath, @"bundlePath",
214 …tanceProxy> NetscapePluginHostManager::instantiatePlugin(const String& pluginPath, cpu_type_t plug…
216 …NetscapePluginHostProxy* hostProxy = hostForPlugin(pluginPath, pluginArchitecture, bundleIdentifie…
255 hostProxy = hostForPlugin(pluginPath, pluginArchitecture, bundleIdentifier);
275 void NetscapePluginHostManager::createPropertyListFile(const String& pluginPath, cpu_type_t pluginA…
[all …]
/external/webkit/Source/WebKit/qt/WebCoreSupport/
DQtPlatformPlugin.cpp94 static QString pluginPath; in plugin() local
96 if (pluginPath.isNull()) { in plugin()
98 pluginPath = m_loader.fileName(); in plugin()
100 load(pluginPath); in plugin()
/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/
DNetscapePluginModule.cpp43 NetscapePluginModule::NetscapePluginModule(const String& pluginPath) in NetscapePluginModule() argument
44 : m_pluginPath(pluginPath) in NetscapePluginModule()
136 PassRefPtr<NetscapePluginModule> NetscapePluginModule::getOrCreate(const String& pluginPath) in getOrCreate() argument
142 if (pluginModule->m_pluginPath == pluginPath) in getOrCreate()
146 RefPtr<NetscapePluginModule> pluginModule(adoptRef(new NetscapePluginModule(pluginPath))); in getOrCreate()
DNetscapePluginModule.h44 static PassRefPtr<NetscapePluginModule> getOrCreate(const String& pluginPath);
52 static bool getPluginInfo(const String& pluginPath, PluginInfoStore::Plugin&);
63 explicit NetscapePluginModule(const String& pluginPath);
/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/win/
DNetscapePluginModuleWin.cpp56 bool NetscapePluginModule::getPluginInfo(const String& pluginPath, PluginInfoStore::Plugin& plugin) in getPluginInfo() argument
58 String pathCopy = pluginPath; in getPluginInfo()
107 plugin.path = pluginPath; in getPluginInfo()
110 plugin.info.file = pathGetFileName(pluginPath); in getPluginInfo()
/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/x11/
DNetscapePluginModuleX11.cpp66 bool NetscapePluginModule::getPluginInfo(const String& pluginPath, PluginInfoStore::Plugin& plugin) in getPluginInfo() argument
71 RefPtr<PluginPackage> package = PluginPackage::createPackage(pluginPath, 0 /*lastModified*/); in getPluginInfo()
75 plugin.path = pluginPath; in getPluginInfo()
/external/webkit/Source/WebKit2/Shared/Plugins/
DPluginProcessCreationParameters.cpp41 encoder->encode(pluginPath); in encode()
51 if (!decoder->decode(result.pluginPath)) in decode()
DPluginProcessCreationParameters.h50 String pluginPath; member
/external/webkit/Source/WebKit2/UIProcess/Plugins/qt/
DPluginInfoStoreQt.cpp62 bool PluginInfoStore::getPluginInfo(const String& pluginPath, Plugin& plugin) in getPluginInfo() argument
64 return NetscapePluginModule::getPluginInfo(pluginPath, plugin); in getPluginInfo()
/external/webkit/Source/WebKit/mac/Plugins/
DWebBasePluginPackage.h68 + (WebBasePluginPackage *)pluginWithPath:(NSString *)pluginPath;
69 - (id)initWithPath:(NSString *)pluginPath;
DWebPluginDatabase.mm436 NSString *pluginPath = [plugin path];
437 ASSERT(pluginPath);
438 [plugins setObject:plugin forKey:pluginPath];
459 NSString *pluginPath = [plugin path];
460 ASSERT(pluginPath);
462 [plugins removeObjectForKey:pluginPath];
485 NSString *pluginPath = [pluginDirectory stringByAppendingPathComponent:filename];
486 WebBasePluginPackage *pluginPackage = [plugins objectForKey:pluginPath];
488 pluginPackage = [WebBasePluginPackage pluginWithPath:pluginPath];
DWebPluginPackage.mm43 - (id)initWithPath:(NSString *)pluginPath
45 if (!(self = [super initWithPath:pluginPath]))
55 if (![[pluginPath pathExtension] _webkit_isCaseInsensitiveEqualToString:@"webplugin"]) {
/external/webkit/Source/WebKit2/UIProcess/
DWebProcessProxy.messages.in31 … GetPluginProcessConnection(WTF::String pluginPath) -> (CoreIPC::MachPort connectionHandle) Delayed
32 PluginSyncMessageSendTimedOut(WTF::String pluginPath)
DWebProcessProxy.cpp219 void WebProcessProxy::getPluginProcessConnection(const String& pluginPath, PassRefPtr<Messages::Web… in getPluginProcessConnection() argument
221 …ocessManager::shared().getPluginProcessConnection(context()->pluginInfoStore(), pluginPath, reply); in getPluginProcessConnection()
224 void WebProcessProxy::pluginSyncMessageSendTimedOut(const String& pluginPath) in pluginSyncMessageSendTimedOut() argument
226 PluginProcessManager::shared().pluginSyncMessageSendTimedOut(pluginPath); in pluginSyncMessageSendTimedOut()

12