Searched refs:plugin (Results 26 - 50 of 120) sorted by relevance

12345

/external/chromium/chrome/common/
H A Dchrome_content_client.cc16 #include "remoting/client/plugin/pepper_entrypoints.h"
52 // Once we're sandboxed, we can't know if the PDF plugin is available or not;
73 // Handle the Native Client plugin just like the PDF plugin.
127 PepperPluginInfo plugin;
128 plugin.is_out_of_process = flash_out_of_process;
129 plugin.path = FilePath(flash_path);
130 plugin.name = kFlashPluginName;
149 plugin.description = plugin
[all...]
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
H A DPluginObject.cpp38 // Helper function which takes in the plugin window object for logging to the console object.
63 // Helper function which takes in the plugin window object for logging to the console object. This function supports variable
285 PluginObject* plugin = reinterpret_cast<PluginObject*>(obj); local
294 BOOLEAN_TO_NPVARIANT(plugin->eventLogging, *result);
298 BOOLEAN_TO_NPVARIANT(plugin->logDestroy, *result);
302 BOOLEAN_TO_NPVARIANT(plugin->stream, *result);
306 NPObject* testObject = plugin->testObject;
312 BOOLEAN_TO_NPVARIANT(plugin->returnErrorFromNewStream, *result);
316 BOOLEAN_TO_NPVARIANT(plugin->returnNegativeOneFromWrite, *result);
321 browser->getvalue(plugin
351 PluginObject* plugin = reinterpret_cast<PluginObject*>(obj); local
1013 PluginObject* plugin = reinterpret_cast<PluginObject*>(header); local
1133 PluginObject* plugin = reinterpret_cast<PluginObject*>(header); local
1181 PluginObject* plugin = reinterpret_cast<PluginObject*>(header); local
[all...]
/external/collada/src/dae/
H A Ddae.cpp61 plugin = NULL;
84 delete plugin;
117 return plugin;
123 delete plugin;
126 plugin = _plugin;
129 plugin = NULL;
132 //create default plugin
134 plugin = new daeLIBXMLPlugin(*this);
137 plugin = new daeTinyXMLPlugin;
141 if (!plugin) {
[all...]
/external/webkit/Source/WebKit2/UIProcess/Plugins/win/
H A DPluginInfoStoreWin.cpp101 // Enumerate all Mozilla plugin directories in the registry
144 // The new WMP Firefox plugin is installed in \PFiles\Plugins if it can't find any Firefox installs
326 bool PluginInfoStore::getPluginInfo(const String& pluginPath, Plugin& plugin) argument
328 return NetscapePluginModule::getPluginInfo(pluginPath, plugin);
331 static bool isOldWindowsMediaPlayerPlugin(const PluginInfoStore::Plugin& plugin) argument
333 return equalIgnoringCase(plugin.info.file, "npdsplay.dll");
336 static bool isNewWindowsMediaPlayerPlugin(const PluginInfoStore::Plugin& plugin) argument
338 return equalIgnoringCase(plugin.info.file, "np-mswmp.dll");
341 bool PluginInfoStore::shouldUsePlugin(const Plugin& plugin) argument
343 if (plugin
[all...]
/external/webkit/Source/WebKit2/Shared/Plugins/
H A DNPRemoteObjectMap.cpp62 NPObject* NPRemoteObjectMap::createNPObjectProxy(uint64_t remoteObjectID, Plugin* plugin) argument
64 NPObjectProxy* npObjectProxy = NPObjectProxy::create(this, plugin, remoteObjectID);
79 uint64_t NPRemoteObjectMap::registerNPObject(NPObject* npObject, Plugin* plugin) argument
82 m_registeredNPObjects.set(npObjectID, NPObjectMessageReceiver::create(this, plugin, npObjectID, npObject).leakPtr());
92 NPVariantData NPRemoteObjectMap::npVariantToNPVariantData(const NPVariant& variant, Plugin* plugin) argument
126 uint64_t npObjectID = registerNPObject(npObject, plugin);
136 NPVariant NPRemoteObjectMap::npVariantDataToNPVariant(const NPVariantData& npVariantData, Plugin* plugin) argument
180 NPObject* npObjectProxy = createNPObjectProxy(npVariantData.remoteNPObjectIDValue(), plugin);
189 void NPRemoteObjectMap::pluginDestroyed(Plugin* plugin) argument
196 if (npObjectMessageReceiver->plugin()
[all...]
/external/webkit/Source/WebKit2/UIProcess/Plugins/mac/
H A DPluginInfoStoreMac.mm74 bool PluginInfoStore::getPluginInfo(const String& pluginPath, Plugin& plugin)
76 return NetscapePluginModule::getPluginInfo(pluginPath, plugin);
79 bool PluginInfoStore::shouldUsePlugin(const Plugin& plugin)
85 if (loadedPlugin.bundleIdentifier == plugin.bundleIdentifier)
/external/protobuf/src/google/protobuf/compiler/
H A Dtest_plugin.cc33 // This is a dummy code generator plugin used by
38 #include <google/protobuf/compiler/plugin.h>
/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]);
H A DPluginDatabase.cpp89 // No plugin was found, try refreshing the database and searching again
125 // any plugins, we need to look at every plugin file so that, e.g., if the user has two versions
212 PluginPackage* plugin = (*it).get(); local
214 if (!plugin->isEnabled())
217 if (plugin->mimeToDescriptions().contains(key)) {
219 if (!plugin->ensurePluginLoaded())
222 pluginChoices.append(plugin);
257 PluginPackage* plugin = (*it).get(); local
259 if (preferredPlugin && PluginPackage::equal(*plugin, *preferredPlugin))
263 if (!plugin
299 PluginPackage* plugin = pluginForMIMEType(mimeTypeForExtension); local
310 setPreferredPluginForMIMEType(const String& mimeType, PluginPackage* plugin) argument
[all...]
/external/chromium/chrome/browser/
H A Dpdf_unsupported_feature.cc136 PluginService::OverriddenPlugin plugin; local
137 plugin.render_process_id = tab->GetRenderProcessHost()->id();
138 plugin.render_view_id = tab->render_view_host()->routing_id();
139 plugin.url = tab->GetURL();
140 plugin.plugin = reader_plugin;
141 // The plugin is disabled, so enable it to get around the renderer check.
143 // plugin UI if it's vulnerable, since we already went through the
145 plugin.plugin
[all...]
H A Dplugin_updater.cc26 // How long to wait to save the plugin enabled information, which might need to
35 const webkit::npapi::WebPluginInfo& plugin) {
37 data->SetString("path", plugin.path.value());
38 data->SetString("name", plugin.name);
39 data->SetString("version", plugin.version);
40 data->SetBoolean("enabled", webkit::npapi::IsPluginEnabled(plugin));
150 // We switched to the internal pdf plugin being on by default, and so we
169 DictionaryValue* plugin = static_cast<DictionaryValue*>(*it); local
172 plugin->GetBoolean("enabled", &enabled);
175 // The plugin lis
34 CreatePluginFileSummary( const webkit::npapi::WebPluginInfo& plugin) argument
[all...]
/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/mac/
H A DNetscapePluginModuleMac.mm311 bool NetscapePluginModule::getPluginInfo(const String& pluginPath, PluginInfoStore::Plugin& plugin)
333 if (!getPluginInfoFromPropertyLists(bundle.get(), plugin.info) &&
334 !getPluginInfoFromCarbonResources(bundle.get(), plugin.info))
337 plugin.path = pluginPath;
338 plugin.pluginArchitecture = pluginArchitecture;
339 plugin.bundleIdentifier = CFBundleGetIdentifier(bundle.get());
340 plugin.versionNumber = CFBundleGetVersionNumber(bundle.get());
343 plugin.info.file = filename.get();
345 if (plugin.info.name.isNull())
346 plugin
[all...]
/external/bluetooth/bluez/audio/
H A DAndroid.mk3 # A2DP plugin
48 LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/bluez-plugin
49 LOCAL_UNSTRIPPED_PATH := $(TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)/bluez-plugin
H A Dgstsbcdec.h64 gboolean gst_sbc_dec_plugin_init(GstPlugin *plugin);
H A Dgstrtpsbcpay.h64 gboolean gst_rtp_sbc_pay_plugin_init (GstPlugin * plugin);
H A Dgstsbcenc.h73 gboolean gst_sbc_enc_plugin_init(GstPlugin *plugin);
H A Dgstsbcparse.h67 gboolean gst_sbc_parse_plugin_init(GstPlugin *plugin);
/external/webkit/Source/WebKit/chromium/public/
H A DWebPluginDocument.h56 WEBKIT_API WebPlugin* plugin();
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebPlatformStrategies.mm76 WebPluginPackage *plugin = [pluginsArray objectAtIndex:i];
78 plugins.append([plugin pluginInfo]);
/external/icu4c/tools/icuinfo/
H A DMakefile.in45 distclean distclean-local dist dist-local check check-local plugin-check
85 PLUGIN=$(LIBPREFIX)plugin.$(SO)
100 plugin: $(PLUGIN)
102 plugin-check: $(PLUGIN) $(PLUGINFILE)
/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/WebKit2/UIProcess/Plugins/
H A DPluginInfoStore.h88 static bool getPluginInfo(const String& pluginPath, Plugin& plugin);
89 bool shouldUsePlugin(const Plugin& plugin);
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebplugindatabase.cpp32 \brief Represents a single MIME type supported by a plugin.
39 \brief The QWebPluginInfo class represents a single Netscape plugin.
41 A QWebPluginInfo object represents a Netscape plugin picked up by WebKit
42 and included in the plugin database. This class contains information about
43 the plugin, such as its name(), description(), a list of MIME types that it
44 supports (can be accessed with mimeTypes()) and the path of the plugin
47 Plugins can be enabled and disabled with setEnabled(). If a plugin is
49 check if a plugin is enabled or not, use enabled().
80 Destroys the plugin info.
89 Returns the name of the plugin
286 PluginPackage* plugin = plugins[i]; local
390 setPreferredPluginForMimeType(const QString& mimeType, const QWebPluginInfo& plugin) argument
[all...]
/external/bluetooth/glib/gobject/
H A Dgtypemodule.c93 static void g_type_module_use_plugin (GTypePlugin *plugin);
94 static void g_type_module_complete_type_info (GTypePlugin *plugin,
98 static void g_type_module_complete_interface_info (GTypePlugin *plugin,
240 * use count was zero before, the plugin will be loaded.
241 * If loading the plugin fails, the use count is reset to
244 * Returns: %FALSE if the plugin needed to be loaded and
245 * loading the plugin failed.
269 g_warning ("plugin '%s' failed to register type '%s'\n",
319 g_type_module_use_plugin (GTypePlugin *plugin) argument
321 GTypeModule *module = G_TYPE_MODULE (plugin);
332 g_type_module_complete_type_info(GTypePlugin *plugin, GType g_type, GTypeInfo *info, GTypeValueTable *value_table) argument
347 g_type_module_complete_interface_info(GTypePlugin *plugin, GType instance_type, GType interface_type, GInterfaceInfo *info) argument
[all...]
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebNetscapePluginStream.h55 static PassRefPtr<WebNetscapePluginStream> create(NSURLRequest *request, NPP plugin, bool sendNotification, void* notifyData) argument
57 return adoptRef(new WebNetscapePluginStream(request, plugin, sendNotification, notifyData));
65 NPP plugin() const { return m_plugin; } function in class:WebNetscapePluginStream

Completed in 556 milliseconds

12345