/external/webkit/Source/WebKit/mac/Plugins/ |
D | WebPluginRequest.h | 40 …quest:(NSURLRequest *)request frameName:(NSString *)frameName notifyData:(void *)notifyData sendNo… 44 - (void *)notifyData;
|
D | WebNetscapePluginView.h | 160 …RLRequest *)request inTarget:(NSString *)target withNotifyData:(void *)notifyData sendNotification… 161 - (NPError)getURLNotify:(const char *)URL target:(const char *)target notifyData:(void *)notifyData; 163 …har *)target len:(UInt32)len buf:(const char *)buf file:(NPBool)file notifyData:(void *)notifyData;
|
D | WebPluginRequest.m | 35 …quest:(NSURLRequest *)request frameName:(NSString *)frameName notifyData:(void *)notifyData sendNo… 41 _notifyData = notifyData; 73 - (void *)notifyData
|
D | WebNetscapePluginStream.h | 55 …apePluginStream> create(NSURLRequest *request, NPP plugin, bool sendNotification, void* notifyData) in create() argument 57 return adoptRef(new WebNetscapePluginStream(request, plugin, sendNotification, notifyData)); in create() 130 WebNetscapePluginStream(NSURLRequest *, NPP, bool sendNotification, void* notifyData);
|
D | npapi.mm | 82 NPError NPN_GetURLNotify(NPP instance, const char* URL, const char* target, void* notifyData) 84 return [pluginViewForInstance(instance) getURLNotify:URL target:target notifyData:notifyData]; 92 … const char* URL, const char* target, uint32_t len, const char* buf, NPBool file, void* notifyData) 94 …nstance(instance) postURLNotify:URL target:target len:len buf:buf file:file notifyData:notifyData];
|
D | WebNetscapePluginView.mm | 187 …equest *)request inTarget:(const char *)cTarget withNotifyData:(void *)notifyData sendNotification… 1600 …) pluginFuncs]->urlnotify(plugin, [URL _web_URLCString], NPRES_DONE, [JSPluginRequest notifyData]); 1608 …est requestWithURL:URL], plugin, [JSPluginRequest sendNotification], [JSPluginRequest notifyData]); 1632 …otify(plugin, [[[pluginRequest request] URL] _web_URLCString], reason, [pluginRequest notifyData]); 1676 … [[[pluginRequest request] URL] _web_URLCString], NPERR_GENERIC_ERROR, [pluginRequest notifyData]); 1708 …equest *)request inTarget:(const char *)cTarget withNotifyData:(void *)notifyData sendNotification… 1763 notifyData:notifyData 1769 …ginStream> stream = WebNetscapePluginStream::create(request, plugin, sendNotification, notifyData); 1778 …or)getURLNotify:(const char *)URLCString target:(const char *)cTarget notifyData:(void *)notifyData 1783 … return [self loadRequest:request inTarget:cTarget withNotifyData:notifyData sendNotification:YES]; [all …]
|
/external/webkit/Source/WebCore/plugins/ |
D | PluginStream.h | 60 …e* frame, const ResourceRequest& request, bool sendNotification, void* notifyData, const NPPluginF… in create() argument 62 …return adoptRef(new PluginStream(client, frame, request, sendNotification, notifyData, functions, … in create() 86 …mClient*, Frame*, const ResourceRequest&, bool sendNotification, void* notifyData, const NPPluginF…
|
D | npapi.cpp | 72 NPError NPN_GetURLNotify(NPP instance, const char* url, const char* target, void* notifyData) in NPN_GetURLNotify() argument 74 return pluginViewForInstance(instance)->getURLNotify(url, target, notifyData); in NPN_GetURLNotify() 82 … const char* url, const char* target, uint32_t len, const char* buf, NPBool file, void* notifyData) in NPN_PostURLNotify() argument 84 return pluginViewForInstance(instance)->postURLNotify(url, target, len, buf, file, notifyData); in NPN_PostURLNotify()
|
D | PluginView.h | 117 …const FrameLoadRequest& frameLoadRequest, bool sendNotification, void* notifyData, bool shouldAllo… in PluginRequest() argument 119 , m_notifyData(notifyData) in PluginRequest() 124 void* notifyData() const { return m_notifyData; } in notifyData() function 173 NPError getURLNotify(const char* url, const char* target, void* notifyData); 175 …const char* url, const char* target, uint32_t len, const char* but, NPBool file, void* notifyData); 301 NPError load(const FrameLoadRequest&, bool sendNotification, void* notifyData); 302 …l, const char* target, uint32_t len, const char* buf, bool file, void* notifyData, bool sendNotifi…
|
D | PluginStream.cpp | 57 …, const ResourceRequest& resourceRequest, bool sendNotification, void* notifyData, const NPPluginF… in PluginStream() argument 61 , m_notifyData(notifyData) in PluginStream() 78 m_stream.notifyData = 0; in PluginStream() 171 m_stream.notifyData = m_notifyData; in startStream() 289 m_stream.notifyData = m_notifyData; in destroyStream()
|
D | npfunctions.h | 45 …or (*NPN_GetURLNotifyProcPtr)(NPP instance, const char* URL, const char* window, void* notifyData); 46 …const char* URL, const char* window, uint32_t len, const char* buf, NPBool file, void* notifyData); 112 …def void (*NPP_URLNotifyProcPtr)(NPP instance, const char* URL, NPReason reason, void* notifyData); 117 … void (*NPP_URLRedirectNotifyPtr)(NPP instance, const char* url, int32_t status, void* notifyData);
|
D | PluginView.cpp | 467 …LoadRequest().resourceRequest(), request->sendNotification(), request->notifyData(), plugin()->plu… in performRequest() 484 …ncs()->urlnotify(m_instance, requestURL.string().utf8().data(), NPRES_DONE, request->notifyData()); in performRequest() 512 …LoadRequest().resourceRequest(), request->sendNotification(), request->notifyData(), plugin()->plu… in performRequest() 544 …PluginView::load(const FrameLoadRequest& frameLoadRequest, bool sendNotification, void* notifyData) in load() argument 572 …PluginRequest* request = new PluginRequest(frameLoadRequest, sendNotification, notifyData, arePopu… in load() 589 NPError PluginView::getURLNotify(const char* url, const char* target, void* notifyData) in getURLNotify() argument 602 return load(frameLoadRequest, true, notifyData); in getURLNotify() 621 …(const char* url, const char* target, uint32_t len, const char* buf, NPBool file, void* notifyData) in postURLNotify() argument 623 return handlePost(url, target, len, buf, file, notifyData, true, true); in postURLNotify() 1237 …l, const char* target, uint32_t len, const char* buf, bool file, void* notifyData, bool sendNotifi… in handlePost() argument [all …]
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebPluginLoadObserver.h | 44 const WebURL& notifyURL, void* notifyData) in WebPluginLoadObserver() argument 47 , m_notifyData(notifyData) in WebPluginLoadObserver()
|
D | WebPluginContainerImpl.h | 92 …adFrameRequest(const WebURLRequest&, const WebString& target, bool notifyNeeded, void* notifyData);
|
D | WebPluginContainerImpl.cpp | 369 const WebURLRequest& request, const WebString& target, bool notifyNeeded, void* notifyData) in loadFrameRequest() argument 380 new WebPluginLoadObserver(this, request.url(), notifyData); in loadFrameRequest()
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebPlugin.h | 81 const WebURL&, void* notifyData) = 0; 83 const WebURL&, void* notifyData, const WebURLError&) = 0;
|
D | WebPluginContainer.h | 87 const WebURLRequest&, const WebString& target, bool notifyNeeded, void* notifyData) = 0;
|
/external/webkit/Source/WebCore/bridge/ |
D | npapi.h | 200 void* notifyData; member 836 NPReason reason, void* notifyData); 842 … NP_LOADDS NPP_URLRedirectNotify(NPP instance, const char* url, int32_t status, void* notifyData); 850 const char* target, void* notifyData); 856 void* notifyData);
|
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/ |
D | PluginObject.h | 87 extern void handleCallback(PluginObject* object, const char *url, NPReason reason, void *notifyData…
|
/external/webkit/Source/WebCore/manual-tests/NPN_Invoke/ |
D | main.c | 50 void NPP_URLNotify(NPP instance, const char* URL, NPReason reason, void* notifyData); 218 void NPP_URLNotify(NPP instance, const char* url, NPReason reason, void* notifyData) in NPP_URLNotify() argument
|
/external/webkit/Tools/DumpRenderTree/unix/TestNetscapePlugin/ |
D | TestNetscapePlugin.cpp | 317 webkit_test_plugin_url_notify(NPP instance, const char* url, NPReason reason, void* notifyData) in webkit_test_plugin_url_notify() argument 324 handleCallback(obj, url, reason, notifyData); in webkit_test_plugin_url_notify()
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/ |
D | NetscapeBrowserFuncs.cpp | 385 static NPError NPN_GetURLNotify(NPP npp, const char* url, const char* target, void* notifyData) in NPN_GetURLNotify() argument 391 …->loadURL("GET", makeURLString(url), target, HTTPHeaderMap(), Vector<uint8_t>(), true, notifyData); in NPN_GetURLNotify() 396 … const char* url, const char* target, uint32_t len, const char* buf, NPBool file, void* notifyData) in NPN_PostURLNotify() argument 405 plugin->loadURL("POST", makeURLString(url), target, headerFields, postData, true, notifyData); in NPN_PostURLNotify()
|
D | NetscapePluginStream.cpp | 156 m_npStream.notifyData = m_notificationData; in start()
|
D | NetscapePlugin.cpp | 336 void NetscapePlugin::NPP_URLNotify(const char* url, NPReason reason, void* notifyData) in NPP_URLNotify() argument 338 m_pluginModule->pluginFuncs().urlnotify(&m_npp, url, reason, notifyData); in NPP_URLNotify()
|
/external/webkit/Examples/NetscapeCoreAnimationPlugin/ |
D | main.m | 66 void NPP_URLNotify(NPP instance, const char* URL, NPReason reason, void* notifyData); 215 void NPP_URLNotify(NPP instance, const char* url, NPReason reason, void* notifyData)
|