Home
last modified time | relevance | path

Searched refs:NPStream (Results 1 – 25 of 34) sorted by relevance

12

/external/webkit/Source/WebCore/manual-tests/NPN_Invoke/
Dmain.c43 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/
Dnpfunctions.h47 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…
Dnpapi.cpp67 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()
DPluginStream.h76 static NPP ownerForStream(NPStream*);
119 NPStream m_stream;
DPluginView.h177 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);
DPluginStream.cpp50 typedef HashMap<NPStream*, NPP> StreamMap;
210 NPP PluginStream::ownerForStream(NPStream* stream) in ownerForStream()
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
DNetscapePlugin.h79 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);
DNetscapePluginStream.h55 const NPStream* npStream() const { return &m_npStream; } in npStream()
87 NPStream m_npStream;
DNetscapePlugin.cpp168 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()
DNetscapeBrowserFuncs.cpp311 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/
Dnpapi.h211 } 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/
Dmain.m59 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/
DEvaluateJSAfterRemovingPluginElement.cpp39 virtual NPError NPP_DestroyStream(NPStream*, NPReason);
53 NPError EvaluateJSAfterRemovingPluginElement::NPP_DestroyStream(NPStream*, NPReason) in NPP_DestroyStream() argument
DDocumentOpenInDestroyStream.cpp43 virtual NPError NPP_DestroyStream(NPStream*, NPReason) in NPP_DestroyStream() argument
/external/webkit/Examples/NetscapeCoreAnimationMoviePlugin/
Dmain.m78 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/
Dmain.m62 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/
Dmain.m65 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/
DTestNetscapePlugin.cpp188 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/
DWebNetscapePluginView.h165 - (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;
DWebNetscapePluginStream.h68 static NPP ownerForStream(NPStream *);
110 NPStream m_stream;
Dnpapi.mm63 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)
DWebNetscapePluginStream.mm80 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/
Dmain.cpp388 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()
DPluginObject.h61 NPStream* stream;
DPluginTest.cpp95 NPError PluginTest::NPP_DestroyStream(NPStream *stream, NPReason reason) in NPP_DestroyStream()

12