/external/chromium_org/content/test/plugin/ |
D | plugin_get_javascript_url2_test.cc | 47 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData), in NewStream() 49 unsigned long stream_id = reinterpret_cast<unsigned long>(stream->notifyData); in NewStream() 75 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData), in Write() 77 unsigned long stream_id = reinterpret_cast<unsigned long>(stream->notifyData); in Write() 97 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData), in DestroyStream() 99 unsigned long stream_id = reinterpret_cast<unsigned long>(stream->notifyData); in DestroyStream()
|
D | plugin_geturl_test.cc | 159 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData), in NewStream() 189 stream->notifyData); in NewStream() 245 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData), in WriteReady() 248 stream->notifyData); in WriteReady() 279 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData), in Write() 282 stream->notifyData); in Write() 324 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData), in DestroyStream() 346 reinterpret_cast<unsigned long>(stream->notifyData); in DestroyStream() 375 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData), in StreamAsFile() 378 reinterpret_cast<unsigned long>(stream->notifyData); in StreamAsFile()
|
D | plugin_get_javascript_url_test.cc | 112 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData), in NewStream() 114 unsigned long stream_id = reinterpret_cast<unsigned long>(stream->notifyData); in NewStream() 149 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData), in Write() 151 unsigned long stream_id = reinterpret_cast<unsigned long>(stream->notifyData); in Write() 181 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData), in DestroyStream() 183 unsigned long stream_id = reinterpret_cast<unsigned long>(stream->notifyData); in DestroyStream()
|
D | plugin_client.cc | 214 void* notifyData) { in NPP_URLNotify() argument 221 return plugin->URLNotify(url, reason, notifyData); in NPP_URLNotify()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebPluginLoadObserver.h | 44 const WebURL& notifyURL, void* notifyData) in WebPluginLoadObserver() argument 47 , m_notifyData(notifyData) in WebPluginLoadObserver()
|
D | WebPluginContainerImpl.h | 115 …quest(const WebURLRequest&, const WebString& target, bool notifyNeeded, void* notifyData) OVERRIDE;
|
/external/chromium_org/content/shell/tools/plugin/Tests/ |
D | GetURLNotifyWithURLThatFailsToLoad.cpp | 58 virtual bool NPP_URLNotify(const char* url, NPReason reason, void* notifyData) OVERRIDE in NPP_URLNotify() argument 68 if (notifyData != reinterpret_cast<void*>(0x12345678)) in NPP_URLNotify()
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
D | FakeWebPlugin.h | 65 virtual void didFinishLoadingFrameRequest(const WebURL&, void* notifyData) OVERRIDE { } in didFinishLoadingFrameRequest() argument 66 …virtual void didFailLoadingFrameRequest(const WebURL&, void* notifyData, const WebURLError&) OVERR… in didFailLoadingFrameRequest() argument
|
/external/chromium_org/third_party/npapi/bindings/ |
D | npfunctions.h | 61 … NP_LOADDS NPP_URLNotifyProcPtr)(NPP instance, const char* url, NPReason reason, void* notifyData); 68 …_LOADDS NPP_URLRedirectNotifyPtr)(NPP instance, const char* url, int32_t status, void* notifyData); 74 … (*NPN_GetURLNotifyProcPtr)(NPP instance, const char* url, const char* window, void* notifyData); 75 …const char* url, const char* window, uint32_t len, const char* buf, NPBool file, void* notifyData); 128 typedef void (*NPN_URLRedirectResponsePtr)(NPP instance, void* notifyData, NPBool allow);
|
D | npapi.h | 217 void* notifyData; member 845 NPReason reason, void* notifyData); 850 … NP_LOADDS NPP_URLRedirectNotify(NPP instance, const char* url, int32_t status, void* notifyData); 858 const char* target, void* notifyData); 864 void* notifyData); 914 void NP_LOADDS NPN_URLRedirectResponse(NPP instance, void* notifyData, NPBool allow);
|
/external/chromium_org/content/shell/tools/plugin/ |
D | PluginTest.cpp | 119 bool PluginTest::NPP_URLNotify(const char* url, NPReason, void* notifyData) { in NPP_URLNotify() argument 144 void* notifyData) { in NPN_GetURLNotify() argument 145 return browser->geturlnotify(m_npp, url, target, notifyData); in NPN_GetURLNotify()
|
D | PluginObject.h | 85 void* notifyData);
|
D | PluginTest.h | 96 virtual bool NPP_URLNotify(const char* url, NPReason, void* notifyData); 104 void* notifyData);
|
D | main.cpp | 819 void NPP_URLNotify(NPP instance, const char *url, NPReason reason, void *notifyData) in NPP_URLNotify() argument 822 if (obj->pluginTest->NPP_URLNotify(url, reason, notifyData)) in NPP_URLNotify() 828 handleCallback(obj, url, reason, notifyData); in NPP_URLNotify()
|
/external/chromium_org/third_party/npapi/npspy/common/ |
D | npn_gate.cpp | 62 NPError NPN_GetURLNotify(NPP instance, const char *url, const char *target, void* notifyData) in NPN_GetURLNotify() argument 69 …>logCall(action_npn_get_url_notify, (DWORD)instance, (DWORD)url, (DWORD)target, (DWORD)notifyData); in NPN_GetURLNotify() 72 rv = NPNFuncs.geturlnotify(instance, url, target, notifyData); in NPN_GetURLNotify() 95 …e, const char* url, const char* window, uint32 len, const char* buf, NPBool file, void* notifyData) in NPN_PostURLNotify() argument 102 …DWORD)instance, (DWORD)url, (DWORD)window, (DWORD)len, (DWORD)buf, (DWORD)file, (DWORD)notifyData); in NPN_PostURLNotify() 105 rv = NPNFuncs.posturlnotify(instance, url, window, len, buf, file, notifyData); in NPN_PostURLNotify()
|
D | npp_gate.cpp | 336 void NPP_URLNotify(NPP instance, const char* url, NPReason reason, void* notifyData) in NPP_URLNotify() argument 345 …ger->logCall(action_npp_url_notify, (DWORD)instance, (DWORD)url, (DWORD)reason, (DWORD)notifyData); in NPP_URLNotify() 347 epManager->callNPP_URLNotify(instance, url, reason, notifyData); in NPP_URLNotify()
|
D | epmanager.cpp | 344 …ryPointManager::callNPP_URLNotify(NPP instance, const char* url, NPReason reason, void* notifyData) in callNPP_URLNotify() argument 350 CallNPP_URLNotifyProc(nppfuncs->urlnotify, instance, url, reason, notifyData); in callNPP_URLNotify()
|
/external/chromium_org/third_party/WebKit/public/web/ |
D | WebPlugin.h | 113 const WebURL&, void* notifyData) = 0; 115 const WebURL&, void* notifyData, const WebURLError&) = 0;
|
D | WebPluginContainer.h | 101 const WebURLRequest&, const WebString& target, bool notifyNeeded, void* notifyData) = 0;
|
/external/chromium_org/third_party/npapi/npspy/extern/plugin/ |
D | npapi.h | 257 void* notifyData; member 702 NPReason reason, void* notifyData); 715 const char* target, void* notifyData); 721 void* notifyData);
|
D | npupp.h | 159 …d (* NP_LOADDS NPP_URLNotifyUPP)(NPP instance, const char* url, NPReason reason, void* notifyData); 199 …P_LOADDS NPN_GetURLNotifyUPP)(NPP instance, const char* url, const char* window, void* notifyData); 206 …, const char* url, const char* window, uint32 len, const char* buf, NPBool file, void* notifyData);
|
/external/chromium_org/third_party/npapi/npspy/include/ |
D | epmanager.h | 99 void callNPP_URLNotify(NPP instance, const char* url, NPReason reason, void* notifyData);
|
/external/chromium_org/third_party/WebKit/ManualTests/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/chromium_org/components/plugins/renderer/ |
D | webview_plugin.h | 103 void* notifyData) {} in didFinishLoadingFrameRequest() argument
|
/external/chromium_org/content/child/npapi/ |
D | plugin_stream.cc | 59 stream_.notifyData = notify_data_; in Open()
|