Home
last modified time | relevance | path

Searched refs:NPP_GetValue (Results 1 – 25 of 29) sorted by relevance

12

/external/webkit/Source/WebCore/plugins/gtk/
DPluginPackageGtk.cpp50 NPP_GetValueProcPtr NPP_GetValue = 0; in fetchInfo() local
53 g_module_symbol(m_module, "NP_GetValue", (void**)&NPP_GetValue); in fetchInfo()
55 if (!NP_GetMIMEDescription || !NPP_GetValue) in fetchInfo()
59 NPError err = NPP_GetValue(0, NPPVpluginNameString, &buffer); in fetchInfo()
64 err = NPP_GetValue(0, NPPVpluginDescriptionString, &buffer); in fetchInfo()
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
DNullNPPGetValuePointer.cpp40 virtual NPError NPP_GetValue(NPPVariable, void* value);
66 NPError NullNPPGetValuePointer::NPP_GetValue(NPPVariable, void*) in NPP_GetValue() function in NullNPPGetValuePointer
DNPPSetWindowCalledDuringDestruction.cpp46 virtual NPError NPP_GetValue(NPPVariable, void*);
65 NPError NPPSetWindowCalledDuringDestruction::NPP_GetValue(NPPVariable variable, void* value) in NPP_GetValue() function in NPPSetWindowCalledDuringDestruction
DPluginScriptableNPObjectInvokeDefault.cpp50 virtual NPError NPP_GetValue(NPPVariable variable, void *value) in NPP_GetValue() function in PluginScriptableNPObjectInvokeDefault
DNPRuntimeObjectFromDestroyedPlugin.cpp60 virtual NPError NPP_GetValue(NPPVariable variable, void *value) in NPP_GetValue() function in NPRuntimeObjectFromDestroyedPlugin
DNPDeallocateCalledBeforeNPShutdown.cpp76 virtual NPError NPP_GetValue(NPPVariable variable, void *value) in NPP_GetValue() function in NPDeallocateCalledBeforeNPShutdown
DNPRuntimeRemoveProperty.cpp77 virtual NPError NPP_GetValue(NPPVariable variable, void *value) in NPP_GetValue() function in NPRuntimeRemoveProperty
/external/webkit/Examples/
DChangeLog150 (NPP_GetValue):
184 (NPP_GetValue):
198 (NPP_GetValue):
244 (NPP_GetValue):
325 (NPP_GetValue):
382 (NPP_GetValue):
/external/webkit/Source/WebCore/manual-tests/NPN_Invoke/
Dmain.c51 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value);
91 pluginFuncs->getvalue = NPP_GetValue; in NP_GetEntryPoints()
148 …ginFuncs->getvalue = (NPP_GetValueProcPtr)tVectorForFunctionPointer((FunctionPointer)NPP_GetValue); in main()
223 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value) in NPP_GetValue() function
/external/webkit/Examples/NetscapeCoreAnimationPlugin/
Dmain.m67 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value); function
98 pluginFuncs->getvalue = NPP_GetValue;
220 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value) function
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
Dmain.cpp117 pluginFuncs->getvalue = NPP_GetValue; in NP_GetEntryPoints()
732 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value) in NPP_GetValue() function
748 if (obj->pluginTest->NPP_GetValue(variable, value) == NPERR_NO_ERROR) in NPP_GetValue()
796 return NPP_GetValue(instance, variable, value); in NP_GetValue()
DPluginTest.cpp100 NPError PluginTest::NPP_GetValue(NPPVariable variable, void *value) in NPP_GetValue() function in PluginTest
DPluginTest.h63 virtual NPError NPP_GetValue(NPPVariable, void* value);
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
DNetscapePlugin.cpp341 NPError NetscapePlugin::NPP_GetValue(NPPVariable variable, void *value) in NPP_GetValue() function in WebKit::NetscapePlugin
382 if (NPP_GetValue(NPPVpluginCancelSrcStream, &cancelSrcStream) != NPERR_NO_ERROR) in shouldLoadSrcURL()
710 if (NPP_GetValue(NPPVpluginScriptableNPObject, &scriptableNPObject) != NPERR_NO_ERROR) in pluginScriptableNPObject()
DNetscapePlugin.h114 NPError NPP_GetValue(NPPVariable, void *value);
/external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/
Dmain.m86 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value); function
117 pluginFuncs->getvalue = NPP_GetValue;
348 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value) function
/external/webkit/Examples/NetscapeCocoaPlugin/
Dmain.m70 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value); function
101 pluginFuncs->getvalue = NPP_GetValue;
360 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value) function
/external/webkit/Examples/NetscapeInputMethodPlugin/
Dmain.m73 NPError NPP_GetValue(NPP instance, NPPVariable variable, void* value); function
104 pluginFuncs->getvalue = NPP_GetValue;
390 NPError NPP_GetValue(NPP instance, NPPVariable variable, void* value) function
/external/webkit/Tools/DumpRenderTree/unix/TestNetscapePlugin/
DTestNetscapePlugin.cpp335 if (obj && obj->pluginTest->NPP_GetValue(variable, value) == NPERR_NO_ERROR) in webkit_test_plugin_get_value()
/external/webkit/Source/WebCore/bridge/
Dnpapi.h838 NPError NP_LOADDS NPP_GetValue(NPP instance, NPPVariable variable, void *value);
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
DNetscapePluginMac.mm233 if (NPP_GetValue(NPPVpluginCoreAnimationLayer, &value) == NPERR_NO_ERROR && value) {
/external/webkit/Tools/
DChangeLog-2011-02-1610992 TestNetscapePlugin does (NPP_GetValue in TestNetscapePlugIn/main.cpp
13425 (NPP_GetValue): Handle mime type values.
13521 Reset TestNetscapePlugIn's NPP_GetValue pointer when
13536 NPP_GetValue pointer in m_originalNPPGetValuePointer so we can restore
13539 NPP_GetValue pointer so it can be used in other tests.
13575 NPP_GetValue pointer
13595 NPP_GetValue pointer we passed to the browser to simulate a plugin that
13596 doesn't implement NPP_GetValue.
13597 (NullNPPGetValuePointer::NPP_GetValue): Print an error message. If this
15887 (NPP_GetValue):
[all …]
DChangeLog1807 (NPPSetWindowCalledDuringDestruction::NPP_GetValue): Creates and returns a ScriptObject that
4720 (NPDeallocateCalledBeforeNPShutdown::NPP_GetValue):
DChangeLog-2009-06-163279 (NPP_GetValue):
10241 (NPP_GetValue):
20585 (NPP_GetValue):
20586 …WebKit's NPP_GetValue() reference counting behavior has been changed to match Firefox. NPObject r…
23885 (NPP_GetValue):
/external/webkit/Source/WebKit/mac/
DChangeLog-2010-01-2912560 …Set the value to 0 before calling NPP_GetValue, in case the plug-in returns NPERR_NO_ERROR but doe…
16170 Add NPP_GetValue pointer.
16174 Initialize NPP_GetValue.
16177 Call NPP_GetValue.

12