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

1 2 3 4 5

  /external/webkit/Source/WebKit/android/plugins/
ANPNativeWindow_npapi.h 42 ANativeWindow* (*acquireNativeWindow)(NPP instance);
48 void (*invertPluginContent)(NPP instance, bool isContentInverted);
ANPSystem_npapi.h 47 jclass (*loadJavaClass)(NPP instance, const char* className);
57 void (*setPowerState)(NPP instance, ANPPowerState powerState);
65 const char* (*getApplicationDataDirectory)(NPP instance);
68 jclass (*loadJavaClass)(NPP instance, const char* className);
69 void (*setPowerState)(NPP instance, ANPPowerState powerState);
ANPOpenGL_npapi.h 46 EGLContext (*acquireContext)(NPP instance);
50 ANPTextureInfo (*lockTexture)(NPP instance);
54 void (*releaseTexture)(NPP instance, const ANPTextureInfo*);
60 void (*invertPluginContent)(NPP instance, bool isContentInverted);
ANPVideo_npapi.h 46 ANativeWindow* (*acquireNativeWindow)(NPP instance);
54 void (*setWindowDimensions)(NPP instance, const ANativeWindow* window, const ANPRectF* dimensions);
58 void (*releaseNativeWindow)(NPP instance, ANativeWindow* window);
73 void (*setFramerateCallback)(NPP instance, const ANativeWindow* window, ANPVideoFrameCallbackProc);
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);
PluginDebugAndroid.h 40 # define PLUGIN_LOG_EVENT(NPP, EVT, RET, TIME) do { anp_logPluginEvent(NPP, EVT, RET, TIME); } while(0)
50 void anp_logPluginEvent(void* npp, const ANPEvent* event, int16_t returnVal, int elapsedTime);
54 # define PLUGIN_LOG_EVENT(NPP, EVT, RET, TIME) do { } while(0)
  /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
main.cpp 37 NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16_t mode, int16_t argc,
39 NPError NPP_Destroy(NPP instance, NPSavedData** save);
40 NPError NPP_SetWindow(NPP instance, NPWindow* window);
41 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream,
43 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason);
44 int32_t NPP_WriteReady(NPP instance, NPStream* stream);
45 int32_t NPP_Write(NPP instance, NPStream* stream, int32_t offset, int32_t len,
47 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname);
48 void NPP_Print(NPP instance, NPPrint* platformPrint);
49 int16_t NPP_HandleEvent(NPP instance, void* event)
    [all...]
  /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;
npapi.mm 38 WebNetscapePluginView *pluginViewForInstance(NPP instance);
74 WebNetscapePluginView *pluginViewForInstance(NPP instance)
82 NPError NPN_GetURLNotify(NPP instance, const char* URL, const char* target, void* notifyData)
87 NPError NPN_GetURL(NPP instance, const char* URL, const char* target)
92 NPError NPN_PostURLNotify(NPP instance, const char* URL, const char* target, uint32_t len, const char* buf, NPBool file, void* notifyData)
97 NPError NPN_PostURL(NPP instance, const char* URL, const char* target, uint32_t len, const char* buf, NPBool file)
102 NPError NPN_NewStream(NPP instance, NPMIMEType type, const char* target, NPStream** stream)
107 int32_t NPN_Write(NPP instance, NPStream* stream, int32_t len, void* buffer)
112 NPError NPN_DestroyStream(NPP instance, NPStream* stream, NPReason reason)
117 const char* NPN_UserAgent(NPP instance
    [all...]
  /frameworks/base/core/java/android/webkit/
PluginStub.java 25 * implementation will be provided the same NPP instance that is created
32 * @param NPP The native NPP instance.
36 public abstract View getEmbeddedView(int NPP, Context context);
42 * @param NPP The native NPP instance.
46 public abstract View getFullScreenView(int NPP, Context context);
  /external/webkit/Source/WebCore/bindings/v8/
npruntime_impl.h 54 NPObject *_NPN_CreateObject(NPP, NPClass*);
57 bool _NPN_Invoke(NPP, NPObject*, NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result);
58 bool _NPN_InvokeDefault(NPP, NPObject*, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result);
59 bool _NPN_Evaluate(NPP, NPObject*, NPString* npScript, NPVariant* result);
60 bool _NPN_EvaluateHelper(NPP, bool popupsAllowed, NPObject*, NPString* npScript, NPVariant* result);
61 bool _NPN_GetProperty(NPP, NPObject*, NPIdentifier propertyName, NPVariant* result);
62 bool _NPN_SetProperty(NPP, NPObject*, NPIdentifier propertyName, const NPVariant* value);
63 bool _NPN_RemoveProperty(NPP, NPObject*, NPIdentifier propertyName);
64 bool _NPN_HasProperty(NPP, NPObject*, NPIdentifier propertyName);
65 bool _NPN_HasMethod(NPP, NPObject*, NPIdentifier methodName)
    [all...]
V8Helpers.h 40 v8::Local<v8::Context> toV8Context(NPP, NPObject*);
  /external/webkit/Source/WebCore/bridge/
npruntime_impl.h 44 extern NPObject* _NPN_CreateObject(NPP, NPClass*);
48 extern bool _NPN_Invoke(NPP, NPObject*, NPIdentifier methodName, const NPVariant* args, uint32_t argCount, NPVariant* result);
49 extern bool _NPN_InvokeDefault(NPP, NPObject*, const NPVariant* args, uint32_t argCount, NPVariant* result);
50 extern bool _NPN_Evaluate(NPP, NPObject*, NPString*, NPVariant* result);
51 extern bool _NPN_GetProperty(NPP, NPObject*, NPIdentifier, NPVariant* result);
52 extern bool _NPN_SetProperty(NPP, NPObject*, NPIdentifier, const NPVariant*);
53 extern bool _NPN_RemoveProperty(NPP, NPObject*, NPIdentifier);
54 extern bool _NPN_HasProperty(NPP, NPObject*, NPIdentifier);
55 extern bool _NPN_HasMethod(NPP, NPObject*, NPIdentifier);
57 extern bool _NPN_Enumerate(NPP, NPObject*, NPIdentifier**, uint32_t* count)
    [all...]
  /external/webkit/Source/WebCore/plugins/
PluginMainThreadScheduler.h 35 typedef NPP_t* NPP;
46 void scheduleCall(NPP, MainThreadFunction*, void* userData);
48 void registerPlugin(NPP);
49 void unregisterPlugin(NPP);
57 void dispatchCallsForPlugin(NPP, const Deque<Call>& calls);
58 typedef HashMap<NPP, Deque<Call> > CallQueueMap;
npfunctions.h 45 typedef NPError (*NPN_GetURLNotifyProcPtr)(NPP instance, const char* URL, const char* window, void* notifyData);
46 typedef NPError (*NPN_PostURLNotifyProcPtr)(NPP instance, const char* URL, const char* window, uint32_t len, const char* buf, NPBool file, void* notifyData);
48 typedef NPError (*NPN_NewStreamProcPtr)(NPP instance, NPMIMEType type, const char* window, NPStream** stream);
49 typedef int32_t (*NPN_WriteProcPtr)(NPP instance, NPStream* stream, int32_t len, void* buffer);
50 typedef NPError (*NPN_DestroyStreamProcPtr)(NPP instance, NPStream* stream, NPReason reason);
51 typedef void (*NPN_StatusProcPtr)(NPP instance, const char* message);
52 typedef const char*(*NPN_UserAgentProcPtr)(NPP instance);
57 typedef NPError (*NPN_GetValueProcPtr)(NPP instance, NPNVariable variable, void *ret_value);
58 typedef NPError (*NPN_SetValueProcPtr)(NPP instance, NPPVariable variable, void *value);
59 typedef void (*NPN_InvalidateRectProcPtr)(NPP instance, NPRect *rect)
    [all...]
npapi.cpp 39 static PluginView* pluginViewForInstance(NPP instance)
72 NPError NPN_GetURLNotify(NPP instance, const char* url, const char* target, void* notifyData)
77 NPError NPN_GetURL(NPP instance, const char* url, const char* target)
82 NPError NPN_PostURLNotify(NPP instance, const char* url, const char* target, uint32_t len, const char* buf, NPBool file, void* notifyData)
87 NPError NPN_PostURL(NPP instance, const char* url, const char* target, uint32_t len, const char* buf, NPBool file)
92 NPError NPN_NewStream(NPP instance, NPMIMEType type, const char* target, NPStream** stream)
97 int32_t NPN_Write(NPP instance, NPStream* stream, int32_t len, void* buffer)
102 NPError NPN_DestroyStream(NPP instance, NPStream* stream, NPReason reason)
107 const char* NPN_UserAgent(NPP instance)
117 void NPN_Status(NPP instance, const char* message
    [all...]
  /external/webkit/Examples/NetscapeCocoaPlugin/
MenuHandler.h 40 NPP instance;
43 - (id)initWithBrowserFuncs:(NPNetscapeFuncs *)theBrowserFuncs instance:(NPP)theInstance;
  /external/webkit/Source/WebCore/platform/qt/
PlatformBridge.h 81 typedef NPP_t* NPP;
93 static bool popupsAllowed(NPP npp);
  /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)
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");
  /external/webkit/Examples/NetscapeCoreAnimationPlugin/
main.m 48 NPP npp;
56 NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc, char* argn[], char* argv[], NPSavedData* saved);
57 NPError NPP_Destroy(NPP instance, NPSavedData** save);
58 NPError NPP_SetWindow(NPP instance, NPWindow* window);
59 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* stype);
60 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason);
61 int32 NPP_WriteReady(NPP instance, NPStream* stream);
62 int32 NPP_Write(NPP instance, NPStream* stream, int32 offset, int32 len, void* buffer);
63 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname)
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebBindings.h 53 WEBKIT_API static bool construct(NPP, NPObject*, const NPVariant* args, uint32_t argCount, NPVariant* result);
56 WEBKIT_API static NPObject* createObject(NPP, NPClass*);
59 WEBKIT_API static bool enumerate(NPP, NPObject*, NPIdentifier**, uint32_t* identifierCount);
62 WEBKIT_API static bool evaluate(NPP, NPObject*, NPString* script, NPVariant* result);
65 WEBKIT_API static bool evaluateHelper(NPP, bool popupsAllowed, NPObject*, NPString* script, NPVariant* result);
71 WEBKIT_API static bool getProperty(NPP, NPObject*, NPIdentifier property, NPVariant *result);
80 WEBKIT_API static bool hasMethod(NPP, NPObject*, NPIdentifier method);
83 WEBKIT_API static bool hasProperty(NPP, NPObject*, NPIdentifier property);
95 WEBKIT_API static bool invoke(NPP, NPObject*, NPIdentifier method, const NPVariant* args, uint32_t argCount, NPVariant* result);
98 WEBKIT_API static bool invokeDefault(NPP, NPObject*, const NPVariant* args, uint32_t argCount, NPVariant* result)
    [all...]
  /frameworks/base/tests/BrowserTestPlugin/jni/event/
EventPlugin.h 33 EventPlugin(NPP inst);

Completed in 1457 milliseconds

1 2 3 4 5