Searched defs:plugin (Results 1 - 25 of 68) sorted by relevance

123

/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMPluginCustom.cpp30 bool JSDOMPlugin::canGetItemsForName(ExecState*, DOMPlugin* plugin, const Identifier& propertyName) argument
32 return plugin->canGetItemsForName(identifierToAtomicString(propertyName));
/external/webkit/Source/WebCore/plugins/
H A DPluginData.cpp39 const PluginInfo& plugin = m_plugins[i]; local
40 for (unsigned j = 0; j < plugin.mimes.size(); ++j) {
41 m_mimes.append(plugin.mimes[j]);
/external/webkit/Source/WebKit/chromium/src/
H A DWebPluginDocument.cpp46 WebPlugin* WebPluginDocument::plugin() function in class:WebKit::WebPluginDocument
52 return container->plugin();
H A DWebPluginContainerImpl.h96 WebPlugin* plugin() { return m_webPlugin; } function in class:WebKit::WebPluginContainerImpl
97 void setPlugin(WebPlugin* plugin) { m_webPlugin = plugin; } argument
99 // Printing interface. The plugin can support custom printing
101 // Whether the plugin supports its own paginated print. The other print
116 // Resource load events for the plugin's source data:
/external/webkit/Source/WebKit2/Shared/Plugins/
H A DNPObjectMessageReceiver.h52 Plugin* plugin() const { return m_plugin; } function in class:WebKit::NPObjectMessageReceiver
H A DNPObjectProxy.h53 Plugin* plugin() const { return m_plugin; } function in class:WebKit::NPObjectProxy
/external/webkit/Source/WebKit2/UIProcess/Plugins/gtk/
H A DPluginInfoStoreGtk.cpp55 bool PluginInfoStore::getPluginInfo(const String& pluginPath, Plugin& plugin) argument
61 bool PluginInfoStore::shouldUsePlugin(const Plugin& plugin) argument
/external/bluetooth/bluez/audio/
H A Dgstbluetooth.c75 static gboolean plugin_init(GstPlugin *plugin) argument
77 GST_INFO("Bluetooth plugin %s", VERSION);
79 if (gst_type_find_register(plugin, "sbc",
84 if (!gst_sbc_enc_plugin_init(plugin))
87 if (!gst_sbc_dec_plugin_init(plugin))
90 if (!gst_sbc_parse_plugin_init(plugin))
93 if (!gst_avdtp_sink_plugin_init(plugin))
96 if (!gst_a2dp_sink_plugin_init(plugin))
99 if (!gst_rtp_sbc_pay_plugin_init(plugin))
108 "bluetooth", "Bluetooth plugin librar
[all...]
H A Dgstsbcparse.c215 gboolean gst_sbc_parse_plugin_init(GstPlugin *plugin) argument
217 return gst_element_register(plugin, "sbcparse", GST_RANK_NONE,
H A Dgstsbcdec.c217 gboolean gst_sbc_dec_plugin_init(GstPlugin *plugin) argument
219 return gst_element_register(plugin, "sbcdec", GST_RANK_PRIMARY,
/external/bluetooth/glib/gobject/
H A Dgtypeplugin.c113 * @plugin: a #GTypePlugin
116 * @plugin. There should be no need to use this function outside of
120 g_type_plugin_use (GTypePlugin *plugin) argument
124 g_return_if_fail (G_IS_TYPE_PLUGIN (plugin));
126 iface = G_TYPE_PLUGIN_GET_CLASS (plugin);
127 iface->use_plugin (plugin);
132 * @plugin: a #GTypePlugin
135 * @plugin. There should be no need to use this function outside of
139 g_type_plugin_unuse (GTypePlugin *plugin) argument
143 g_return_if_fail (G_IS_TYPE_PLUGIN (plugin));
161 g_type_plugin_complete_type_info(GTypePlugin *plugin, GType g_type, GTypeInfo *info, GTypeValueTable *value_table) argument
192 g_type_plugin_complete_interface_info(GTypePlugin *plugin, GType instance_type, GType interface_type, GInterfaceInfo *info) argument
[all...]
/external/webkit/Source/WebCore/plugins/symbian/
H A DPluginPackageSymbian.cpp93 QObject* plugin = m_pluginLoader->instance(); local
94 if (!plugin) {
102 // Cast plugin to NPInterface,
103 m_npInterface = qobject_cast<NPInterface*>(plugin);
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestwebplugindatabase.c45 WebKitWebPlugin* plugin = (WebKitWebPlugin*)p->data; local
46 if (!g_strcmp0(webkit_web_plugin_get_name(plugin), "WebKit Test PlugIn") &&
47 !g_strcmp0(webkit_web_plugin_get_description(plugin), "Simple Netscape plug-in that handles test content for WebKit")) {
49 enabled = webkit_web_plugin_get_enabled(plugin);
50 webkit_web_plugin_set_enabled(plugin, FALSE);
61 WebKitWebPlugin* plugin = (WebKitWebPlugin*)p->data; local
62 if (!g_strcmp0(webkit_web_plugin_get_name(plugin), "WebKit Test PlugIn") &&
63 !g_strcmp0(webkit_web_plugin_get_description(plugin), "Simple Netscape plug-in that handles test content for WebKit"))
64 enabled = webkit_web_plugin_get_enabled(plugin);
/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/x11/
H A DNetscapePluginModuleX11.cpp66 bool NetscapePluginModule::getPluginInfo(const String& pluginPath, PluginInfoStore::Plugin& plugin) argument
68 // We are loading the plugin here since it does not seem to be a standardized way to
69 // get the needed informations from a UNIX plugin without loading it.
75 plugin.path = pluginPath;
76 plugin.info.desc = package->description();
77 plugin.info.file = package->fileName();
82 plugin.info.mimes.reserveCapacity(descriptions.size());
85 plugin.info.mimes.uncheckedAppend(MimeClassInfo());
86 MimeClassInfo& mime = plugin.info.mimes[i++];
/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);
67 bool PluginInfoStore::shouldUsePlugin(const Plugin& plugin) argument
/external/webkit/Tools/DumpRenderTree/qt/
H A Dtestplugin.cpp41 QWebPluginFactory::Plugin plugin; local
43 plugin.name = "testplugin";
44 plugin.description = "testdescription";
48 plugin.mimeTypes.append(mimeType);
50 plugin.name = "testplugin2";
51 plugin.description = "testdescription2";
55 plugin.mimeTypes.append(mimeType);
57 return QList<QWebPluginFactory::Plugin>() << plugin;
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebplugindatabase.cpp105 PluginPackage* plugin = plugins[i]; local
106 gPlugins = g_slist_append(gPlugins, kitNew(plugin));
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DQtPlatformPlugin.cpp83 QWebKitPlatformPlugin* QtPlatformPlugin::plugin() function in class:WebCore::QtPlatformPlugin
92 // Plugin path is stored in a static variable to avoid searching for the plugin
107 QWebKitPlatformPlugin* p = plugin();
114 QWebKitPlatformPlugin* p = plugin();
120 QWebKitPlatformPlugin* p = plugin();
126 QWebKitPlatformPlugin* p = plugin();
133 QWebKitPlatformPlugin* p = plugin();
/external/collada/include/
H A Ddae.h58 // Constructor. If no database or IO plugin are provided, a default database and
59 // IO plugin will be used.
90 virtual daeInt setIOPlugin(daeIOPlugin* plugin);
202 daeIOPlugin *plugin; member in class:DAE
/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/win/
H A DNetscapePluginModuleWin.cpp56 bool NetscapePluginModule::getPluginInfo(const String& pluginPath, PluginInfoStore::Plugin& plugin) argument
107 plugin.path = pluginPath;
108 plugin.info.desc = description;
109 plugin.info.name = name;
110 plugin.info.file = pathGetFileName(pluginPath);
111 plugin.info.mimes.swap(mimes);
112 plugin.fileVersion = fileVersion(info->dwFileVersionLS, info->dwFileVersionMS);
/external/webkit/Source/WebKit2/UIProcess/Plugins/
H A DPluginProcessManager.cpp52 PluginInfoStore::Plugin plugin = pluginInfoStore->infoForPluginWithPath(pluginPath); local
53 PluginProcessProxy* pluginProcess = getOrCreatePluginProcess(plugin);
65 void PluginProcessManager::getSitesWithData(const PluginInfoStore::Plugin& plugin, WebPluginSiteDataManager* webPluginSiteDataManager, uint64_t callbackID) argument
67 PluginProcessProxy* pluginProcess = getOrCreatePluginProcess(plugin);
71 void PluginProcessManager::clearSiteData(const PluginInfoStore::Plugin& plugin, WebPluginSiteDataManager* webPluginSiteDataManager, const Vector<String>& sites, uint64_t flags, uint64_t maxAgeInSeconds, uint64_t callbackID) argument
73 PluginProcessProxy* pluginProcess = getOrCreatePluginProcess(plugin);
95 PluginProcessProxy* PluginProcessManager::getOrCreatePluginProcess(const PluginInfoStore::Plugin& plugin) argument
97 if (PluginProcessProxy* pluginProcess = pluginProcessWithPath(plugin.path))
100 PluginProcessProxy* pluginProcess = PluginProcessProxy::create(this, plugin).leakPtr();
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DNetscapePluginStream.h48 static PassRefPtr<NetscapePluginStream> create(PassRefPtr<NetscapePlugin> plugin, uint64_t streamID, bool sendNotification, void* notificationData) argument
50 return adoptRef(new NetscapePluginStream(plugin, streamID, sendNotification, notificationData));
/external/webkit/Source/WebKit2/WebProcess/Plugins/
H A DPluginProcessConnection.cpp49 if (pathGetFileName(pluginPath) == "AppleConnect.plugin")
73 void PluginProcessConnection::addPluginProxy(PluginProxy* plugin) argument
75 ASSERT(!m_plugins.contains(plugin->pluginInstanceID()));
76 m_plugins.set(plugin->pluginInstanceID(), plugin);
79 void PluginProcessConnection::removePluginProxy(PluginProxy* plugin) argument
81 ASSERT(m_plugins.contains(plugin->pluginInstanceID()));
82 m_plugins.remove(plugin->pluginInstanceID());
85 m_npRemoteObjectMap->pluginDestroyed(plugin);
/external/bluetooth/bluez/src/
H A Dplugin.c37 #include "plugin.h"
60 struct bluetooth_plugin *plugin; local
70 DBG("Loading %s plugin", desc->name);
72 plugin = g_try_new0(struct bluetooth_plugin, 1);
73 if (plugin == NULL)
76 plugin->handle = handle;
77 plugin->active = FALSE;
78 plugin->desc = desc;
80 plugins = g_slist_insert_sorted(plugins, plugin, compare_priority);
184 error("Can't load plugin
213 struct bluetooth_plugin *plugin = list->data; local
237 struct bluetooth_plugin *plugin = list->data; local
[all...]
/external/chromium/chrome/browser/
H A Dplugin_data_remover.cc77 DCHECK(result) << "Error waiting for plugin process";
109 NOTREACHED() << "Couldn't connect to plugin";
124 LOG(DFATAL) << "Couldn't open plugin channel";
171 webkit::npapi::WebPluginInfo plugin; local
174 GURL(), kFlashMimeType, allow_wildcard, &plugin, &mime_type)) {
178 webkit::npapi::PluginGroup::CreateVersionFromString(plugin.version));
184 return webkit::npapi::IsPluginEnabled(plugin) &&

Completed in 567 milliseconds

123