/external/webkit/Source/WebCore/manual-tests/NPN_Invoke/ |
D | main.c | 43 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* s… 44 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason); 45 int32_t NPP_WriteReady(NPP instance, NPStream* stream); 46 int32_t NPP_Write(NPP instance, NPStream* stream, int32_t offset, int32_t len, void* buffer); 47 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname); 183 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* s… in NPP_NewStream() 189 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason) in NPP_DestroyStream() 194 int32_t NPP_WriteReady(NPP instance, NPStream* stream) in NPP_WriteReady() 199 int32_t NPP_Write(NPP instance, NPStream* stream, int32_t offset, int32_t len, void* buffer) in NPP_Write() 204 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname) in NPP_StreamAsFile()
|
/external/webkit/Source/WebCore/plugins/ |
D | npfunctions.h | 47 typedef NPError (*NPN_RequestReadProcPtr)(NPStream* stream, NPByteRange* rangeList); 48 typedef NPError (*NPN_NewStreamProcPtr)(NPP instance, NPMIMEType type, const char* window, NPStream… 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); 105 typedef NPError (*NPP_NewStreamProcPtr)(NPP instance, NPMIMEType type, NPStream* stream, NPBool see… 106 typedef NPError (*NPP_DestroyStreamProcPtr)(NPP instance, NPStream* stream, NPReason reason); 107 typedef void (*NPP_StreamAsFileProcPtr)(NPP instance, NPStream* stream, const char* fname); 108 typedef int32_t (*NPP_WriteReadyProcPtr)(NPP instance, NPStream* stream); 109 typedef int32_t (*NPP_WriteProcPtr)(NPP instance, NPStream* stream, int32_t offset, int32_t len, vo…
|
D | npapi.cpp | 67 NPError NPN_RequestRead(NPStream* stream, NPByteRange* rangeList) in NPN_RequestRead() 92 NPError NPN_NewStream(NPP instance, NPMIMEType type, const char* target, NPStream** stream) in NPN_NewStream() 97 int32_t NPN_Write(NPP instance, NPStream* stream, int32_t len, void* buffer) in NPN_Write() 102 NPError NPN_DestroyStream(NPP instance, NPStream* stream, NPReason reason) in NPN_DestroyStream()
|
D | PluginStream.h | 76 static NPP ownerForStream(NPStream*); 119 NPStream m_stream;
|
D | PluginView.h | 177 NPError newStream(NPMIMEType type, const char* target, NPStream** stream); 178 int32_t write(NPStream* stream, int32_t len, void* buffer); 179 NPError destroyStream(NPStream* stream, NPReason reason);
|
D | PluginStream.cpp | 50 typedef HashMap<NPStream*, NPP> StreamMap; 210 NPP PluginStream::ownerForStream(NPStream* stream) in ownerForStream()
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/ |
D | NetscapePlugin.h | 79 NPError destroyStream(NPStream*, NPReason); 107 NPError NPP_NewStream(NPMIMEType, NPStream*, NPBool seekable, uint16_t* stype); 108 NPError NPP_DestroyStream(NPStream*, NPReason); 109 void NPP_StreamAsFile(NPStream*, const char* filename); 110 int32_t NPP_WriteReady(NPStream*); 111 int32_t NPP_Write(NPStream*, int32_t offset, int32_t len, void* buffer);
|
D | NetscapePluginStream.h | 55 const NPStream* npStream() const { return &m_npStream; } in npStream() 87 NPStream m_npStream;
|
D | NetscapePlugin.cpp | 168 NPError NetscapePlugin::destroyStream(NPStream* stream, NPReason reason) in destroyStream() 306 NPError NetscapePlugin::NPP_NewStream(NPMIMEType mimeType, NPStream* stream, NPBool seekable, uint1… in NPP_NewStream() 311 NPError NetscapePlugin::NPP_DestroyStream(NPStream* stream, NPReason reason) in NPP_DestroyStream() 316 void NetscapePlugin::NPP_StreamAsFile(NPStream* stream, const char* filename) in NPP_StreamAsFile() 321 int32_t NetscapePlugin::NPP_WriteReady(NPStream* stream) in NPP_WriteReady() 326 int32_t NetscapePlugin::NPP_Write(NPStream* stream, int32_t offset, int32_t len, void* buffer) in NPP_Write()
|
D | NetscapeBrowserFuncs.cpp | 311 static NPError NPN_RequestRead(NPStream* stream, NPByteRange* rangeList) in NPN_RequestRead() 317 static NPError NPN_NewStream(NPP instance, NPMIMEType type, const char* target, NPStream** stream) in NPN_NewStream() 323 static int32_t NPN_Write(NPP instance, NPStream* stream, int32_t len, void* buffer) in NPN_Write() 329 static NPError NPN_DestroyStream(NPP npp, NPStream* stream, NPReason reason) in NPN_DestroyStream()
|
/external/webkit/Source/WebCore/bridge/ |
D | npapi.h | 211 } NPStream; typedef 824 NPStream* stream, NPBool seekable, 826 NPError NP_LOADDS NPP_DestroyStream(NPP instance, NPStream* stream, 828 int32_t NP_LOADDS NPP_WriteReady(NPP instance, NPStream* stream); 829 int32_t NP_LOADDS NPP_Write(NPP instance, NPStream* stream, int32_t offset, 831 void NP_LOADDS NPP_StreamAsFile(NPP instance, NPStream* stream, 860 NPError NP_LOADDS NPN_RequestRead(NPStream* stream, NPByteRange* rangeList); 862 const char* target, NPStream** stream); 863 int32_t NP_LOADDS NPN_Write(NPP instance, NPStream* stream, int32_t len, 865 NPError NP_LOADDS NPN_DestroyStream(NPP instance, NPStream* stream,
|
/external/webkit/Examples/NetscapeCoreAnimationPlugin/ |
D | main.m | 59 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* sty… 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); 163 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* sty… 169 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason) 174 int32 NPP_WriteReady(NPP instance, NPStream* stream) 179 int32 NPP_Write(NPP instance, NPStream* stream, int32 offset, int32 len, void* buffer) 184 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname)
|
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/ |
D | EvaluateJSAfterRemovingPluginElement.cpp | 39 virtual NPError NPP_DestroyStream(NPStream*, NPReason); 53 NPError EvaluateJSAfterRemovingPluginElement::NPP_DestroyStream(NPStream*, NPReason) in NPP_DestroyStream() argument
|
D | DocumentOpenInDestroyStream.cpp | 43 virtual NPError NPP_DestroyStream(NPStream*, NPReason) in NPP_DestroyStream() argument
|
/external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/ |
D | main.m | 78 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* sty… 79 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason); 80 int32_t NPP_WriteReady(NPP instance, NPStream* stream); 81 int32_t NPP_Write(NPP instance, NPStream* stream, int32_t offset, int32_t len, void* buffer); 82 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname); 193 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* sty… 199 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason) 204 int32_t NPP_WriteReady(NPP instance, NPStream* stream) 209 int32_t NPP_Write(NPP instance, NPStream* stream, int32_t offset, int32_t len, void* buffer) 214 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname)
|
/external/webkit/Examples/NetscapeCocoaPlugin/ |
D | main.m | 62 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* s… 63 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason); 64 int32_t NPP_WriteReady(NPP instance, NPStream* stream); 65 int32_t NPP_Write(NPP instance, NPStream* stream, int32_t offset, int32_t len, void* buffer); 66 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname); 167 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* s… 173 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason) 178 int32_t NPP_WriteReady(NPP instance, NPStream* stream) 183 int32_t NPP_Write(NPP instance, NPStream* stream, int32_t offset, int32_t len, void* buffer) 188 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname)
|
/external/webkit/Examples/NetscapeInputMethodPlugin/ |
D | main.m | 65 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* sty… 66 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason); 67 int32 NPP_WriteReady(NPP instance, NPStream* stream); 68 int32 NPP_Write(NPP instance, NPStream* stream, int32 offset, int32 len, void* buffer); 69 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname); 180 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* sty… 186 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason) 191 int32 NPP_WriteReady(NPP instance, NPStream* stream) 196 int32 NPP_Write(NPP instance, NPStream* stream, int32 offset, int32 len, void* buffer) 201 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname)
|
/external/webkit/Tools/DumpRenderTree/unix/TestNetscapePlugin/ |
D | TestNetscapePlugin.cpp | 188 NPStream *stream, in webkit_test_plugin_new_stream() 209 webkit_test_plugin_destroy_stream(NPP instance, NPStream* stream, NPError reason) in webkit_test_plugin_destroy_stream() 240 webkit_test_plugin_stream_as_file(NPP /*instance*/, NPStream* /*stream*/, const char* /*fname*/) in webkit_test_plugin_stream_as_file() argument 245 webkit_test_plugin_write_ready(NPP /*instance*/, NPStream* /*stream*/) in webkit_test_plugin_write_ready() argument 252 NPStream* /*stream*/, in webkit_test_plugin_write() argument
|
/external/webkit/Source/WebKit/mac/Plugins/ |
D | WebNetscapePluginView.h | 165 - (NPError)newStream:(NPMIMEType)type target:(const char *)target stream:(NPStream**)stream; 166 - (NPError)write:(NPStream*)stream len:(SInt32)len buffer:(void *)buffer; 167 - (NPError)destroyStream:(NPStream*)stream reason:(NPReason)reason;
|
D | WebNetscapePluginStream.h | 68 static NPP ownerForStream(NPStream *); 110 NPStream m_stream;
|
D | npapi.mm | 63 NPError NPN_RequestRead(NPStream* stream, NPByteRange* rangeList) 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)
|
D | WebNetscapePluginStream.mm | 80 typedef HashMap<NPStream*, NPP> StreamMap; 87 NPP WebNetscapePluginStream::ownerForStream(NPStream *stream) 140 memset(&m_stream, 0, sizeof(NPStream)); 160 memset(&m_stream, 0, sizeof(NPStream));
|
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/ |
D | main.cpp | 388 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream *stream, NPBool seekable, uint16_t *s… in NPP_NewStream() 406 NPError NPP_DestroyStream(NPP instance, NPStream *stream, NPReason reason) in NPP_DestroyStream() 436 int32_t NPP_WriteReady(NPP instance, NPStream *stream) in NPP_WriteReady() 441 int32_t NPP_Write(NPP instance, NPStream *stream, int32_t offset, int32_t len, void *buffer) in NPP_Write() 451 void NPP_StreamAsFile(NPP instance, NPStream *stream, const char *fname) in NPP_StreamAsFile()
|
D | PluginObject.h | 61 NPStream* stream;
|
D | PluginTest.cpp | 95 NPError PluginTest::NPP_DestroyStream(NPStream *stream, NPReason reason) in NPP_DestroyStream()
|