Searched defs:NPP_GetValue (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
H A DNullNPPGetValuePointer.cpp32 // Passing null for our NPP_GetValue function pointer should not crash.
40 virtual NPError NPP_GetValue(NPPVariable, void* value);
52 // that doesn't implement NPP_GetValue (like Shockwave Director 10.3 on Windows). Note that if
54 // call into our NPP_GetValue implementation.
60 // Set the NPP_GetValue pointer back the way it was before we mucked with it so we don't mess
66 NPError NullNPPGetValuePointer::NPP_GetValue(NPPVariable, void*) function in class:NullNPPGetValuePointer
68 pluginLog(m_npp, "NPP_GetValue was called but should not have been. Maybe WebKit copied the NPPluginFuncs struct, which would invalidate this test.");
H A DNPRuntimeObjectFromDestroyedPlugin.cpp60 virtual NPError NPP_GetValue(NPPVariable variable, void *value) function in class:NPRuntimeObjectFromDestroyedPlugin
H A DNPRuntimeRemoveProperty.cpp77 virtual NPError NPP_GetValue(NPPVariable variable, void *value) function in class:NPRuntimeRemoveProperty
H A DPluginScriptableNPObjectInvokeDefault.cpp50 virtual NPError NPP_GetValue(NPPVariable variable, void *value) function in class:PluginScriptableNPObjectInvokeDefault
H A DNPPSetWindowCalledDuringDestruction.cpp46 virtual NPError NPP_GetValue(NPPVariable, void*);
65 NPError NPPSetWindowCalledDuringDestruction::NPP_GetValue(NPPVariable variable, void* value) function in class:NPPSetWindowCalledDuringDestruction
H A DNPDeallocateCalledBeforeNPShutdown.cpp76 virtual NPError NPP_GetValue(NPPVariable variable, void *value) function in class:NPDeallocateCalledBeforeNPShutdown
/external/webkit/Source/WebCore/plugins/gtk/
H A DPluginPackageGtk.cpp50 NPP_GetValueProcPtr NPP_GetValue = 0; local
53 g_module_symbol(m_module, "NP_GetValue", (void**)&NPP_GetValue);
55 if (!NP_GetMIMEDescription || !NPP_GetValue)
59 NPError err = NPP_GetValue(0, NPPVpluginNameString, &buffer);
64 err = NPP_GetValue(0, NPPVpluginDescriptionString, &buffer);
/external/webkit/Source/WebCore/manual-tests/NPN_Invoke/
H A Dmain.c51 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value);
91 pluginFuncs->getvalue = NPP_GetValue;
148 pluginFuncs->getvalue = (NPP_GetValueProcPtr)tVectorForFunctionPointer((FunctionPointer)NPP_GetValue);
223 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value) function
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
H A DPluginTest.cpp100 NPError PluginTest::NPP_GetValue(NPPVariable variable, void *value) function in class:PluginTest
H A Dmain.cpp117 pluginFuncs->getvalue = NPP_GetValue;
732 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value) function
748 if (obj->pluginTest->NPP_GetValue(variable, value) == NPERR_NO_ERROR)
796 return NPP_GetValue(instance, variable, value);
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DNetscapePlugin.cpp341 NPError NetscapePlugin::NPP_GetValue(NPPVariable variable, void *value) function in class:WebKit::NetscapePlugin
382 if (NPP_GetValue(NPPVpluginCancelSrcStream, &cancelSrcStream) != NPERR_NO_ERROR)
710 if (NPP_GetValue(NPPVpluginScriptableNPObject, &scriptableNPObject) != NPERR_NO_ERROR)

Completed in 396 milliseconds