/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/ |
EvaluateJSAfterRemovingPluginElement.cpp | 39 virtual NPError NPP_DestroyStream(NPStream*, NPReason); 53 NPError EvaluateJSAfterRemovingPluginElement::NPP_DestroyStream(NPStream*, NPReason)
|
DocumentOpenInDestroyStream.cpp | 43 virtual NPError NPP_DestroyStream(NPStream*, NPReason)
|
/external/webkit/Examples/NetscapeCoreAnimationPlugin/ |
main.m | 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); 163 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* stype) 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 [all...] |
/frameworks/base/tests/BrowserTestPlugin/jni/ |
main.cpp | 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); 191 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype) 197 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason) 202 int32_t NPP_WriteReady(NPP instance, NPStream* stream) 207 int32_t NPP_Write(NPP instance, NPStream* stream, int32_t offset, int32_t len, void* buffer) 212 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname [all...] |
/external/webkit/Examples/NetscapeCocoaPlugin/ |
main.m | 62 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype); 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* stype) 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 [all...] |
/external/webkit/Source/WebCore/manual-tests/NPN_Invoke/ |
main.c | 43 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype); 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* stype) 189 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason) 194 int32_t NPP_WriteReady(NPP instance, NPStream* stream) 199 int32_t NPP_Write(NPP instance, NPStream* stream, int32_t offset, int32_t len, void* buffer) 204 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname [all...] |
/external/webkit/Source/WebCore/plugins/ |
PluginStream.h | 76 static NPP ownerForStream(NPStream*); 119 NPStream m_stream;
|
npfunctions.h | 47 typedef NPError (*NPN_RequestReadProcPtr)(NPStream* stream, NPByteRange* rangeList); 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); 105 typedef NPError (*NPP_NewStreamProcPtr)(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype); 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, void* buffer);
|
npapi.cpp | 67 NPError NPN_RequestRead(NPStream* stream, NPByteRange* rangeList) 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)
|
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);
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/ |
NetscapePluginStream.h | 55 const NPStream* npStream() const { return &m_npStream; } 87 NPStream m_npStream;
|
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);
|
NetscapePlugin.cpp | 168 NPError NetscapePlugin::destroyStream(NPStream* stream, NPReason reason) 173 if (it->second->npStream() == stream) { 306 NPError NetscapePlugin::NPP_NewStream(NPMIMEType mimeType, NPStream* stream, NPBool seekable, uint16_t* streamType) 311 NPError NetscapePlugin::NPP_DestroyStream(NPStream* stream, NPReason reason) 316 void NetscapePlugin::NPP_StreamAsFile(NPStream* stream, const char* filename) 321 int32_t NetscapePlugin::NPP_WriteReady(NPStream* stream) 326 int32_t NetscapePlugin::NPP_Write(NPStream* stream, int32_t offset, int32_t len, void* buffer)
|
/development/samples/BrowserPlugin/jni/ |
main.cpp | 48 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, 50 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason); 51 int32_t NPP_WriteReady(NPP instance, NPStream* stream); 52 int32_t NPP_Write(NPP instance, NPStream* stream, int32_t offset, int32_t len, 54 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname); 303 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype) 309 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason) 314 int32_t NPP_WriteReady(NPP instance, NPStream* stream) 319 int32_t NPP_Write(NPP instance, NPStream* stream, int32_t offset, int32_t len, void* buffer) 324 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname [all...] |
/external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/ |
main.m | 78 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* stype); 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* stype) 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 [all...] |
/external/webkit/Examples/NetscapeInputMethodPlugin/ |
main.m | 65 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16* stype); 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* stype) 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 [all...] |
/external/webkit/Source/WebKit/mac/Plugins/ |
WebNetscapePluginStream.h | 68 static NPP ownerForStream(NPStream *); 110 NPStream m_stream;
|
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)
|
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;
|
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/ |
PluginObject.h | 61 NPStream* stream;
|
PluginTest.cpp | 95 NPError PluginTest::NPP_DestroyStream(NPStream *stream, NPReason reason)
|
main.cpp | 388 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream *stream, NPBool seekable, uint16_t *stype) 406 NPError NPP_DestroyStream(NPP instance, NPStream *stream, NPReason reason) 436 int32_t NPP_WriteReady(NPP instance, NPStream *stream) 441 int32_t NPP_Write(NPP instance, NPStream *stream, int32_t offset, int32_t len, void *buffer) 451 void NPP_StreamAsFile(NPP instance, NPStream *stream, const char *fname)
|
/external/webkit/Source/WebCore/bridge/ |
npapi.h | 211 } NPStream; 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 [all...] |
/external/webkit/Tools/DumpRenderTree/unix/TestNetscapePlugin/ |
TestNetscapePlugin.cpp | 188 NPStream *stream, 209 webkit_test_plugin_destroy_stream(NPP instance, NPStream* stream, NPError reason) 240 webkit_test_plugin_stream_as_file(NPP /*instance*/, NPStream* /*stream*/, const char* /*fname*/) 245 webkit_test_plugin_write_ready(NPP /*instance*/, NPStream* /*stream*/) 252 NPStream* /*stream*/,
|