Home
last modified time | relevance | path

Searched refs:notifyData (Results 1 – 25 of 39) sorted by relevance

12

/external/webkit/Source/WebKit/mac/Plugins/
DWebPluginRequest.h40 …quest:(NSURLRequest *)request frameName:(NSString *)frameName notifyData:(void *)notifyData sendNo…
44 - (void *)notifyData;
DWebNetscapePluginView.h160 …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;
DWebPluginRequest.m35 …quest:(NSURLRequest *)request frameName:(NSString *)frameName notifyData:(void *)notifyData sendNo…
41 _notifyData = notifyData;
73 - (void *)notifyData
DWebNetscapePluginStream.h55 …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);
Dnpapi.mm82 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];
DWebNetscapePluginView.mm187 …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/
DPluginStream.h60 …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…
Dnpapi.cpp72 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()
DPluginView.h117 …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…
DPluginStream.cpp57 …, 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()
Dnpfunctions.h45 …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);
DPluginView.cpp467 …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/
DWebPluginLoadObserver.h44 const WebURL& notifyURL, void* notifyData) in WebPluginLoadObserver() argument
47 , m_notifyData(notifyData) in WebPluginLoadObserver()
DWebPluginContainerImpl.h92 …adFrameRequest(const WebURLRequest&, const WebString& target, bool notifyNeeded, void* notifyData);
DWebPluginContainerImpl.cpp369 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/
DWebPlugin.h81 const WebURL&, void* notifyData) = 0;
83 const WebURL&, void* notifyData, const WebURLError&) = 0;
DWebPluginContainer.h87 const WebURLRequest&, const WebString& target, bool notifyNeeded, void* notifyData) = 0;
/external/webkit/Source/WebCore/bridge/
Dnpapi.h200 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/
DPluginObject.h87 extern void handleCallback(PluginObject* object, const char *url, NPReason reason, void *notifyData
/external/webkit/Source/WebCore/manual-tests/NPN_Invoke/
Dmain.c50 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/
DTestNetscapePlugin.cpp317 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/
DNetscapeBrowserFuncs.cpp385 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()
DNetscapePluginStream.cpp156 m_npStream.notifyData = m_notificationData; in start()
DNetscapePlugin.cpp336 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/
Dmain.m66 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)

12