Search completed in 1.84 seconds.
11 results for "NPN_RequestRead":
NPN_RequestRead - Archive of obsolete content
ArchivePluginsReferenceNPN RequestRead
syntax #include <npapi.h> nperror npn_requestread(npstream* stream, npbyterange* rangelist); parameters the function has the following parameters: stream stream of type np_seek from which to read bytes.
...the plug-in calls npn_requestread() to request data from a seekable stream.
...if the plug-in requests multiple ranges (either through a list of npbyterange objects in a single call to npn_requestread(), or multiple calls to npn_requestread()), the browser can write individual ranges in any order, and with any number of npp_writeready() and npp_write() calls.
...And 2 more matches
Streams - Plugins
PluginsGuideStreams
random-access mode: the plug-in calls the npn_requestread method to "pull" stream data.
... np_seek: the plug-in instance can randomly access stream data as needed, through calls to npn_requestread.
...if the user now requests a specific page of the document, the plug-in calls npn_requestread with a list of byte ranges.
...And 11 more matches
NPP_NewStream - Archive of obsolete content
ArchivePluginsReferenceNPP NewStream
stream supports random access through calls to npn_requestread (for example, local files or http servers that support byte-range requests).
...the browser must copy data in the stream to the local cache to satisfy random access requests made through npn_requestread.
... np_seek: stream data randomly accessible by the plug-in as needed, through calls to npn_requestread.
...And 4 more matches
NPByteRange - Archive of obsolete content
ArchivePluginsReferenceNPByteRange
the only plug-in api call that uses the npbyterange type is npn_requestread(), which lets the plug-in read specified parts of a file without downloading it.
...the browser makes a copy if it needs to keep the objects beyond the call to npn_requestread().
... see also npn_requestread() ...
NPP_Write - Archive of obsolete content
ArchivePluginsReferenceNPP Write
can be used to check stream progress or by range requests from npn_requestread.
...if the plug-in requested a seekable stream, the npn_requestread function requests reads of a specified byte range that results in a series of calls to npp_writeready and npp_write.
...in a seekable stream with byte range requests, you can use this parameter to track npn_requestread requests.see also npp_destroystream, npp_newstream, npp_writeready, npstream, npp ...
Index - Archive of obsolete content
ArchiveIndex
3664 npn_requestread api, gecko, npapi, plugins, reference requests a range of bytes from a seekable stream.
Index of archived content - Archive of obsolete content
ArchiveIndex of archived content
daterect npn_invalidateregion npn_invoke npn_invokedefault npn_memalloc npn_memflush npn_memfree npn_pluginthreadasynccall npn_posturl npn_posturlnotify npn_releaseobject npn_releasevariantvalue npn_reloadplugins npn_removeproperty npn_requestread npn_retainobject npn_setexception npn_setproperty npn_setvalue npn_setvalueforurl npn_status npn_utf8fromidentifier npn_useragent npn_version npn_write npobject npp nppvariable npp_destroy npp_destroystream ...
Browser-side plug-in API - Archive of obsolete content
ArchivePluginsReferenceBrowser-side
npn_destroystream npn_forceredraw npn_getauthenticationinfo npn_geturl npn_geturlnotify npn_getvalue npn_getvalueforurl npn_invalidaterect npn_invalidateregion npn_memalloc npn_memflush npn_memfree npn_newstream npn_pluginthreadasynccall npn_poppopupsenabledstate npn_posturl npn_posturlnotify npn_pushpopupsenabledstate npn_reloadplugins npn_requestread npn_setvalue npn_setvalueforurl npn_status npn_useragent npn_version npn_write ...
NPAPI plugin reference - Archive of obsolete content
ArchivePluginsReference
npn_requestread requests a range of bytes from a seekable stream.
Browser Side Plug-in API - Plugins
PluginsGuideBrowser Side Plug-in API
npn_requestread requests a range of bytes for a seekable stream.
Gecko Plugin API Reference - Plugins
PluginsGuide
npn_requestread requests a range of bytes for a seekable stream.