Searched refs:plugin (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DPluginList.java61 * Adds a plugin to the list.
68 public synchronized void addPlugin(Plugin plugin) { argument
69 if (!mPlugins.contains(plugin)) {
70 mPlugins.add(plugin);
75 * Removes a plugin from the list.
82 public synchronized void removePlugin(Plugin plugin) { argument
83 int location = mPlugins.indexOf(plugin);
90 * Clears the plugin list.
102 * Dispatches the click event to the appropriate plugin.
111 Plugin plugin
[all...]
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DCryptoFactory.cpp40 android::CryptoPlugin** plugin) {
42 *plugin = NULL;
48 *plugin = new CryptoPlugin(session);
37 createPlugin( const uint8_t uuid[16], const void* data, size_t size, android::CryptoPlugin** plugin) argument
H A DDrmFactory.cpp42 const uint8_t uuid[16], android::DrmPlugin** plugin) {
44 *plugin = NULL;
48 *plugin = new DrmPlugin(SessionLibrary::get());
41 createDrmPlugin( const uint8_t uuid[16], android::DrmPlugin** plugin) argument
H A DCryptoFactory.h36 android::CryptoPlugin** plugin);
H A DDrmFactory.h38 const uint8_t uuid[16], android::DrmPlugin** plugin);
/frameworks/av/media/libstagefright/omx/
H A DOMXMaster.cpp70 void OMXMaster::addPlugin(OMXPluginBase *plugin) { argument
73 mPlugins.push_back(plugin);
79 while ((err = plugin->enumerateComponents(
90 mPluginByComponentName.add(name8, plugin);
94 ALOGE("OMX plugin failed w/ error 0x%08x after registering %zu "
136 OMXPluginBase *plugin = mPluginByComponentName.valueAt(index); local
138 plugin->makeComponentInstance(name, callbacks, appData, component);
144 mPluginByInstance.add(*component, plugin);
159 OMXPluginBase *plugin = mPluginByInstance.valueAt(index); local
162 return plugin
198 OMXPluginBase *plugin = mPluginByComponentName.valueAt(index); local
[all...]
H A DOMXMaster.h62 void addPlugin(OMXPluginBase *plugin);
/frameworks/native/include/media/hardware/
H A DCryptoAPI.h36 CryptoPlugin **plugin) = 0;
67 // To implement resolution constraints, the crypto plugin needs to know
/frameworks/av/drm/mediadrm/plugins/mock/
H A DMockDrmCryptoPlugin.h36 status_t createDrmPlugin(const uint8_t uuid[16], DrmPlugin **plugin);
47 CryptoPlugin **plugin);
H A DMockDrmCryptoPlugin.cpp59 status_t MockDrmFactory::createDrmPlugin(const uint8_t uuid[16], DrmPlugin **plugin) argument
61 *plugin = new MockDrmPlugin();
72 size_t size, CryptoPlugin **plugin)
74 *plugin = new MockCryptoPlugin();
128 // Properties used in mock test, set by mock plugin and verifed cts test app
149 // Properties used in mock test, set by cts test app returned from mock plugin
187 // Properties used in mock test, set by mock plugin and verifed cts test app
265 // Properties used in mock test, set by cts test app returned from mock plugin
295 // Properties used in mock test, set by mock plugin and verifed cts test app
313 // Properties used in mock test, set by cts test app returned from mock plugin
71 createPlugin(const uint8_t uuid[16], const void *data, size_t size, CryptoPlugin **plugin) argument
[all...]
/frameworks/native/include/media/drm/
H A DDrmAPI.h59 // if the plugin factory is able to construct plugins that support a
64 // if the plugin factory is able to construct plugins that support a
70 const uint8_t uuid[16], DrmPlugin **plugin) = 0;
142 // Drm plugin using provideKeyResponse.
187 // Drm plugin using provideProvisionResponse.
218 // Since DRM plugin properties may vary, additional field names may be defined
223 // "vendor" [string] identifies the maker of the plugin
224 // "version" [string] identifies the version of the plugin
225 // "description" [string] describes the plugin
235 // Since DRM plugin propertie
[all...]

Completed in 2113 milliseconds