HomeSort by relevance Sort by last modified time
    Searched refs:npp (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/webkit/Source/WebCore/platform/qt/
PlatformBridgeQt.cpp 31 bool PlatformBridge::popupsAllowed(NPP npp)
33 if (npp && npp->ndata)
34 return static_cast<PluginView*>(npp->ndata)->arePopupsAllowed();
PlatformBridge.h 81 typedef NPP_t* NPP;
93 static bool popupsAllowed(NPP npp);
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapeContainerCheckPrivate.h 43 typedef uint32_t (*WKN_CheckIfAllowedToLoadURLProcPtr)(NPP npp, const char* url, const char* frame, void (*callbackFunc)(NPP npp, uint32_t, NPBool allowed, void* context), void* context);
44 typedef void (*WKN_CancelCheckIfAllowedToLoadURLProcPtr)(NPP npp, uint32_t);
45 typedef char* (*WKN_ResolveURLProcPtr)(NPP npp, const char* url, const char* target);
47 uint32_t WKN_CheckIfAllowedToLoadURL(NPP npp, const char* url, const char* frame, void (*callbackFunc)(NPP npp, uint32_t, NPBool allowed, void* (…)
    [all...]
WebNetscapeContainerCheckContextInfo.h 35 void (*_callback)(NPP npp, uint32_t, NPBool, void *);
39 - (id)initWithCheckRequestID:(uint32_t)checkRequestID callbackFunc:(void (*)(NPP npp, uint32_t checkID, NPBool allowed, void* context))callbackFunc context:(void*)context;
41 - (void (*)(NPP npp, uint32_t, NPBool, void*))callback;
WebNetscapeContainerCheckContextInfo.mm 32 - (id)initWithCheckRequestID:(uint32_t)checkRequestID callbackFunc:(void (*)(NPP npp, uint32_t checkID, NPBool allowed, void* context))callbackFunc context:(void*)context
49 - (void (*)(NPP npp, uint32_t, NPBool, void*))callback
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
DocumentOpenInDestroyStream.cpp 30 extern bool testDocumentOpen(NPP npp);
36 DocumentOpenInDestroyStream(NPP npp, const string& identifier)
37 : PluginTest(npp, identifier)
GetURLWithJavaScriptURLDestroyingPlugin.cpp 34 GetURLWithJavaScriptURLDestroyingPlugin(NPP npp, const string& identifier)
35 : PluginTest(npp, identifier)
EvaluateJSAfterRemovingPluginElement.cpp 36 EvaluateJSAfterRemovingPluginElement(NPP, const string& identifier);
46 EvaluateJSAfterRemovingPluginElement::EvaluateJSAfterRemovingPluginElement(NPP npp, const string& identifier)
47 : PluginTest(npp, identifier)
GetUserAgentWithNullNPPFromNPPNew.cpp 38 GetUserAgentWithNullNPPFromNPPNew(NPP npp, const string& identifier)
39 : PluginTest(npp, identifier)
56 static PluginTest::Register<GetUserAgentWithNullNPPFromNPPNew> getUserAgentWithNullNPPFromNPPNew("get-user-agent-with-null-npp-from-npp-new");
NPRuntimeObjectFromDestroyedPlugin.cpp 32 NPRuntimeObjectFromDestroyedPlugin(NPP npp, const string& identifier)
33 : PluginTest(npp, identifier)
NullNPPGetValuePointer.cpp 36 NullNPPGetValuePointer(NPP, const string& identifier);
45 static PluginTest::Register<NullNPPGetValuePointer> registrar("null-npp-getvalue-pointer");
47 NullNPPGetValuePointer::NullNPPGetValuePointer(NPP npp, const string& identifier)
48 : PluginTest(npp, identifier)
PassDifferentNPPStruct.cpp 32 // Passing a different NPP struct that has the same ndata value as the one passed to NPP_New should
37 PassDifferentNPPStruct(NPP npp, const string& identifier)
38 : PluginTest(npp, identifier)
44 virtual NPError NPP_SetWindow(NPP instance, NPWindow* window)
50 NPP oldNPP = m_npp;
60 pluginLog(instance, "NPN_GetValue(NPNVprivateModeBool) with a different NPP struct failed with error %d", error);
63 pluginLog(instance, "NPN_GetValue(NPNVprivateModeBool) with a different NPP struct succeeded");
70 static PluginTest::Register<PassDifferentNPPStruct> getValueNetscapeWindow("pass-different-npp-struct");
PluginScriptableNPObjectInvokeDefault.cpp 33 PluginScriptableNPObjectInvokeDefault(NPP npp, const string& identifier)
34 : PluginTest(npp, identifier)
NPDeallocateCalledBeforeNPShutdown.cpp 34 NPDeallocateCalledBeforeNPShutdown(NPP npp, const string& identifier)
35 : PluginTest(npp, identifier)
  /external/webkit/Source/WebKit/android/plugins/
PluginDebugAndroid.cpp 63 void anp_logPluginEvent(void* npp, const ANPEvent* evt, int16_t returnVal, int elapsedTime) {
68 PLUGIN_LOG("%p EVENT::NULL", npp);
74 npp, returnVal, elapsedTime, inputActions[evt->data.key.action],
79 PLUGIN_LOG("%p EVENT::KEY[%d] unknown action", npp, returnVal);
85 anp_logPlugin("%p EVENT::MOUSE[%d] time=%d action=%s [%d %d]", npp,
89 anp_logPlugin("%p EVENT::MOUSE[%d] unknown action", npp, returnVal);
97 npp, returnVal, elapsedTime,
101 anp_logPlugin("%p EVENT::TOUCH[%d] unknown action", npp, returnVal);
108 npp, elapsedTime, evt->data.draw.data.bitmap.format,
113 npp, elapsedTime, evt->data.draw.data.surface.width
    [all...]
PluginTimer.h 42 PluginTimer(PluginTimer** list, NPP instance, bool repeat,
43 void (*proc)(NPP npp, uint32_t timerID));
62 NPP m_instance;
63 void (*m_timerFunc)(NPP, uint32_t);
74 uint32_t schedule(NPP instance, uint32_t interval, bool repeat,
75 void (*proc)(NPP npp, uint32_t timerID));
76 void unschedule(NPP instance, uint32_t timerID);
  /external/webkit/Source/WebCore/plugins/
PluginMainThreadScheduler.cpp 44 void PluginMainThreadScheduler::scheduleCall(NPP npp, MainThreadFunction function, void* userData)
48 CallQueueMap::iterator it = m_callQueueMap.find(npp);
60 void PluginMainThreadScheduler::registerPlugin(NPP npp)
64 ASSERT(!m_callQueueMap.contains(npp));
65 m_callQueueMap.set(npp, Deque<Call>());
68 void PluginMainThreadScheduler::unregisterPlugin(NPP npp)
72 ASSERT(m_callQueueMap.contains(npp));
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebBindings.cpp 61 bool WebBindings::construct(NPP npp, NPObject* object, const NPVariant* args, uint32_t argCount, NPVariant* result)
63 return _NPN_Construct(npp, object, args, argCount, result);
66 NPObject* WebBindings::createObject(NPP npp, NPClass* npClass)
68 return _NPN_CreateObject(npp, npClass);
71 bool WebBindings::enumerate(NPP npp, NPObject* object, NPIdentifier** identifier, uint32_t* identifierCount)
73 return _NPN_Enumerate(npp, object, identifier, identifierCount);
76 bool WebBindings::evaluate(NPP npp, NPObject* object, NPString* script, NPVariant* result
    [all...]
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
GetValueNetscapeWindow.cpp 36 GetValueNetscapeWindow(NPP npp, const string& identifier)
37 : PluginTest(npp, identifier)
43 virtual NPError NPP_SetWindow(NPP instance, NPWindow* window)
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginObject.h 52 NPP npp; member in struct:__anon18162
89 extern void testNPRuntime(NPP npp);
90 extern void pluginLog(NPP instance, const char* format, ...);
91 extern void pluginLogWithArguments(NPP instance, const char* format, va_list args);
92 extern bool testDocumentOpen(NPP npp);
93 extern bool testWindowOpen(NPP npp);
    [all...]
PluginObject.cpp 39 static void pluginLogWithWindowObject(NPObject* windowObject, NPP instance, const char* message)
65 static void pluginLogWithWindowObjectVariableArgs(NPObject* windowObject, NPP instance, const char* format, ...)
76 void pluginLogWithArguments(NPP instance, const char* format, va_list args)
93 void pluginLog(NPP instance, const char* format, ...)
107 static NPObject* pluginAllocate(NPP npp, NPClass*);
321 browser->getvalue(plugin->npp, NPNVprivateModeBool, &privateBrowsingEnabled);
373 browser->setvalue(plugin->npp, NPPVpluginWindowBool, (void *)NPVARIANT_TO_BOOLEAN(*variant));
384 if (browser->getvalue(obj->npp, NPNVPluginElementNPObject, &elementObject) == NPERR_NO_ERROR) {
388 if (browser->getproperty(obj->npp, elementObject, styleIdentifier, &styleVariant) && NPVARIANT_IS_OBJECT(styleVariant))
    [all...]
  /frameworks/base/tests/BrowserTestPlugin/jni/
PluginObject.h 66 SubPlugin(NPP inst) : m_inst(inst) {}
70 NPP inst() const { return m_inst; }
73 NPP m_inst;
78 NPP npp; member in struct:PluginObject
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapeBrowserFuncs.cpp 283 static NPError NPN_GetURL(NPP npp, const char* url, const char* target)
288 RefPtr<NetscapePlugin> plugin = NetscapePlugin::fromNPP(npp);
294 static NPError NPN_PostURL(NPP npp, const char* url, const char* target, uint32_t len, const char* buf, NPBool file)
306 RefPtr<NetscapePlugin> plugin = NetscapePlugin::fromNPP(npp);
317 static NPError NPN_NewStream(NPP instance, NPMIMEType type, const char* target, NPStream** stream)
323 static int32_t NPN_Write(NPP instance, NPStream* stream, int32_t len, void* buffer)
329 static NPError NPN_DestroyStream(NPP npp, NPStream* stream, NPReason reason
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8Helpers.cpp 40 v8::Local<v8::Context> toV8Context(NPP npp, NPObject* npObject)
  /external/webkit/Source/WebCore/bridge/
NP_jsobject.h 50 NPObject* _NPN_CreateScriptObject(NPP npp, JSC::JSObject*, PassRefPtr<JSC::Bindings::RootObject> rootObject);

Completed in 142 milliseconds

1 2 3