HomeSort by relevance Sort by last modified time
    Searched refs:NPP_GetValue (Results 1 - 22 of 22) sorted by null

  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
NullNPPGetValuePointer.cpp 32 // 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*)
68 pluginLog(m_npp, "NPP_GetValue was called but should not have been. Maybe WebKit copied the NPPluginFuncs struct, which would invalidate this test.");
NPRuntimeObjectFromDestroyedPlugin.cpp 60 virtual NPError NPP_GetValue(NPPVariable variable, void *value)
PluginScriptableNPObjectInvokeDefault.cpp 50 virtual NPError NPP_GetValue(NPPVariable variable, void *value)
NPPSetWindowCalledDuringDestruction.cpp 46 virtual NPError NPP_GetValue(NPPVariable, void*);
65 NPError NPPSetWindowCalledDuringDestruction::NPP_GetValue(NPPVariable variable, void* value)
NPDeallocateCalledBeforeNPShutdown.cpp 76 virtual NPError NPP_GetValue(NPPVariable variable, void *value)
NPRuntimeRemoveProperty.cpp 77 virtual NPError NPP_GetValue(NPPVariable variable, void *value)
  /external/webkit/Source/WebCore/plugins/gtk/
PluginPackageGtk.cpp 50 NPP_GetValueProcPtr NPP_GetValue = 0;
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/Examples/NetscapeCoreAnimationPlugin/
main.m 67 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value);
98 pluginFuncs->getvalue = NPP_GetValue;
220 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value)
  /external/webkit/Source/WebCore/manual-tests/NPN_Invoke/
main.c 51 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)
  /frameworks/base/tests/BrowserTestPlugin/jni/
main.cpp 52 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value);
98 pluginFuncs->getvalue = NPP_GetValue;
255 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value)
  /external/webkit/Examples/NetscapeCocoaPlugin/
main.m 70 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value);
101 pluginFuncs->getvalue = NPP_GetValue;
360 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value)
  /development/samples/BrowserPlugin/jni/
main.cpp 59 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value);
110 pluginFuncs->getvalue = NPP_GetValue;
429 NPError NPP_GetValue(NPP instance, NPPVariable variable, void* value)
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginTest.cpp 100 NPError PluginTest::NPP_GetValue(NPPVariable variable, void *value)
PluginTest.h 63 virtual NPError NPP_GetValue(NPPVariable, void* value);
main.cpp 117 pluginFuncs->getvalue = NPP_GetValue;
732 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value)
748 if (obj->pluginTest->NPP_GetValue(variable, value) == NPERR_NO_ERROR)
796 return NPP_GetValue(instance, variable, value);
  /external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/
main.m 86 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value);
117 pluginFuncs->getvalue = NPP_GetValue;
348 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value)
  /external/webkit/Examples/NetscapeInputMethodPlugin/
main.m 73 NPError NPP_GetValue(NPP instance, NPPVariable variable, void* value);
104 pluginFuncs->getvalue = NPP_GetValue;
390 NPError NPP_GetValue(NPP instance, NPPVariable variable, void* value)
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapePlugin.cpp 341 NPError NetscapePlugin::NPP_GetValue(NPPVariable variable, void *value)
382 if (NPP_GetValue(NPPVpluginCancelSrcStream, &cancelSrcStream) != NPERR_NO_ERROR)
710 if (NPP_GetValue(NPPVpluginScriptableNPObject, &scriptableNPObject) != NPERR_NO_ERROR)
NetscapePlugin.h 114 NPError NPP_GetValue(NPPVariable, void *value);
  /external/webkit/Tools/DumpRenderTree/unix/TestNetscapePlugin/
TestNetscapePlugin.cpp 335 if (obj && obj->pluginTest->NPP_GetValue(variable, value) == NPERR_NO_ERROR)
  /external/webkit/Source/WebCore/bridge/
npapi.h 340 * List of variable names for which NPP_GetValue shall be implemented
838 NPError NP_LOADDS NPP_GetValue(NPP instance, NPPVariable variable, void *value);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
NetscapePluginMac.mm 233 if (NPP_GetValue(NPPVpluginCoreAnimationLayer, &value) == NPERR_NO_ERROR && value) {

Completed in 181 milliseconds