Searched defs:stream (Results 26 - 50 of 1084) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dsslstreamadapter.cc53 SSLStreamAdapter* SSLStreamAdapter::Create(StreamInterface* stream) { argument
57 return new OpenSSLStreamAdapter(stream);
59 return new NSSStreamAdapter(stream);
/external/chromium_org/third_party/skia/src/core/
H A DSkFontStream.h19 * if the stream is a normal sfnt (ttf). If there is an error or
22 * Note: the stream is rewound initially, but is returned at an arbitrary
30 * Note: the stream is rewound initially, but is returned at an arbitrary
38 * Note: the stream is rewound initially, but is returned at an arbitrary
44 static size_t GetTableSize(SkStream* stream, int ttcIndex, SkFontTableTag tag) { argument
45 return GetTableData(stream, ttcIndex, tag, 0, ~0U, NULL);
/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder_FactoryDefault.cpp16 SkImageDecoder* SkImageDecoder::Factory(SkStream* stream) { argument
17 return image_decoder_from_stream(stream);
24 SkMovie* SkMovie::DecodeStream(SkStream* stream) { argument
27 SkMovie* movie = curr->factory()(stream);
31 // we must rewind only if we got NULL, since we gave the stream to the
33 stream->rewind();
H A DSkImageDecoder_FactoryRegistrar.cpp25 SkImageDecoder* image_decoder_from_stream(SkStream* stream) { argument
29 codec = curr->factory()(stream);
31 // the stream will be at its beginning.
32 bool rewindSuceeded = stream->rewind();
35 // if we are given a stream that does not support rewinding.
37 SkDEBUGF(("Unable to rewind the image stream."));
54 SkImageDecoder::Format SkImageDecoder::GetStreamFormat(SkStream* stream) { argument
57 Format format = curr->factory()(stream);
58 if (!stream->rewind()) {
60 "Unable to rewind the image stream\
[all...]
/external/chromium_org/third_party/zlib/
H A Dcompress.c29 z_stream stream; local
32 stream.next_in = (Bytef*)source;
33 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
38 stream.next_out = dest;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
42 stream.zalloc = (alloc_func)0;
43 stream.zfree = (free_func)0;
44 stream
[all...]
/external/freetype/src/base/
H A Dftsnames.c64 FT_Stream stream = face->stream; local
/external/lzma/CPP/Common/
H A DStdOutStream.h16 CStdOutStream (FILE *stream): _streamIsOpen(false), _stream(stream) {}; argument
/external/oprofile/libutil++/
H A Dstream_util.h3 * C++ stream utility
17 /// class which save a stream state and restore it at dtor time
21 * save the stream flags, precision and fill char.
28 io_state(std::ios & stream);
29 /// restore the stream state
32 std::ios & stream; member in class:io_state
/external/qemu/distrib/zlib-1.2.3/
H A Dcompress.c29 z_stream stream; local
32 stream.next_in = (Bytef*)source;
33 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
38 stream.next_out = dest;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
42 stream.zalloc = (alloc_func)0;
43 stream.zfree = (free_func)0;
44 stream
[all...]
/external/skia/src/core/
H A DSkFontStream.h19 * if the stream is a normal sfnt (ttf). If there is an error or
22 * Note: the stream is rewound initially, but is returned at an arbitrary
30 * Note: the stream is rewound initially, but is returned at an arbitrary
38 * Note: the stream is rewound initially, but is returned at an arbitrary
44 static size_t GetTableSize(SkStream* stream, int ttcIndex, SkFontTableTag tag) { argument
45 return GetTableData(stream, ttcIndex, tag, 0, ~0U, NULL);
/external/skia/src/images/
H A DSkImageDecoder_FactoryDefault.cpp16 SkImageDecoder* SkImageDecoder::Factory(SkStream* stream) { argument
17 return image_decoder_from_stream(stream);
24 SkMovie* SkMovie::DecodeStream(SkStream* stream) { argument
27 SkMovie* movie = curr->factory()(stream);
31 // we must rewind only if we got NULL, since we gave the stream to the
33 stream->rewind();
/external/zlib/src/
H A Dcompress.c29 z_stream stream; local
32 stream.next_in = (z_const Bytef *)source;
33 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
38 stream.next_out = dest;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
42 stream.zalloc = (alloc_func)0;
43 stream.zfree = (free_func)0;
44 stream
[all...]
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestBufferedTreeNodeStream.java44 public String toTokenTypeString(TreeNodeStream stream) { argument
45 return ((BufferedTreeNodeStream)stream).toTokenTypeString();
50 // stream has 7 real + 6 nav nodes
62 TreeNodeStream stream = newStream(r0);
63 stream.consume(); // consume 101
64 stream.consume(); // consume DN
65 stream.consume(); // consume 102
66 stream.seek(7); // seek to 107
67 assertEquals(107, ((Tree)stream.LT(1)).getType());
68 stream
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDEROctetStringParser.java9 private DefiniteLengthInputStream stream; field in class:DEROctetStringParser
12 DefiniteLengthInputStream stream)
14 this.stream = stream;
19 return stream;
25 return new DEROctetString(stream.toByteArray());
36 throw new ASN1ParsingException("IOException converting stream to byte array: " + e.getMessage(), e);
11 DEROctetStringParser( DefiniteLengthInputStream stream) argument
/external/chromium/chrome/common/
H A Dbzip2_unittest.cc27 bz_stream stream; local
28 stream.bzalloc = NULL;
29 stream.bzfree = NULL;
30 stream.opaque = NULL;
31 int result = BZ2_bzCompressInit(&stream,
37 stream.next_in = input;
38 stream.avail_in = arraysize(input) - 1;
39 stream.next_out = output;
40 stream.avail_out = arraysize(output);
42 result = BZ2_bzCompress(&stream, BZ_FINIS
[all...]
/external/chromium/net/spdy/
H A Dspdy_io_buffer.cc14 IOBuffer* buffer, int size, int priority, SpdyStream* stream)
18 stream_(stream) {}
13 SpdyIOBuffer( IOBuffer* buffer, int size, int priority, SpdyStream* stream) argument
/external/chromium/third_party/libjingle/source/talk/base/
H A Dsslstreamadapter.h31 #include "talk/base/stream.h"
37 // After SSL has been started, the stream will only open on successful
52 // Instantiate an SSLStreamAdapter wrapping the given stream,
55 static SSLStreamAdapter* Create(StreamInterface* stream);
57 explicit SSLStreamAdapter(StreamInterface* stream) argument
58 : StreamAdapterInterface(stream), ignore_bad_cert_(false) { }
77 // Use of the stream prior to calling either of these functions will
80 // soon as possible: right away if the underlying wrapped stream is
86 // exposed stream will open after successful negotiation and
101 // stream open
[all...]
/external/chromium_org/content/browser/loader/
H A Dstream_resource_handler.h22 // Redirect this resource to a stream.
69 Stream* stream() { return stream_.get(); } function in class:content::StreamResourceHandler
72 virtual void OnSpaceAvailable(Stream* stream) OVERRIDE;
73 virtual void OnClose(Stream* stream) OVERRIDE;
/external/chromium_org/content/browser/streams/
H A Dstream_handle_impl.cc7 #include "content/browser/streams/stream.h"
12 StreamHandleImpl::StreamHandleImpl(const base::WeakPtr<Stream>& stream, argument
15 : stream_(stream),
16 url_(stream->url()),
/external/chromium_org/media/base/
H A Dmedia_log.h30 std::ostream& stream() { return stream_; } function in class:media::LogHelper
37 #define MEDIA_LOG(log_cb) LogHelper(log_cb).stream()
/external/chromium_org/net/quic/test_tools/
H A Dreliable_quic_stream_peer.cc14 ReliableQuicStream* stream) {
15 stream->write_side_closed_ = value;
21 ReliableQuicStream* stream) {
22 stream->stream_bytes_written_ = stream_bytes_written;
26 ReliableQuicStream* stream,
28 stream->headers_decompressed_ = headers_decompressed;
13 SetWriteSideClosed(bool value, ReliableQuicStream* stream) argument
19 SetStreamBytesWritten( QuicStreamOffset stream_bytes_written, ReliableQuicStream* stream) argument
25 SetHeadersDecompressed( ReliableQuicStream* stream, bool headers_decompressed) argument
/external/chromium_org/net/spdy/
H A Dspdy_write_queue.h35 // priority associated with the given stream, which may be NULL if
36 // the frame producer is not associated with a stream. If |stream|
42 const base::WeakPtr<SpdyStream>& stream);
45 // enqueued the earliest and its associated stream. Returns true and
46 // fills in |frame_type|, |frame_producer|, and |stream| if
50 base::WeakPtr<SpdyStream>* stream);
52 // Removes all pending writes for the given stream, which must be
54 void RemovePendingWritesForStream(const base::WeakPtr<SpdyStream>& stream);
57 // and streams with no stream i
70 base::WeakPtr<SpdyStream> stream; member in struct:net::SpdyWriteQueue::PendingWrite
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathByteStreamSource.h32 static PassOwnPtr<SVGPathByteStreamSource> create(SVGPathByteStream* stream) argument
34 return adoptPtr(new SVGPathByteStreamSource(stream));
/external/chromium_org/third_party/angle_dx11/src/compiler/
H A DInfoSink.cpp35 TPersistStringStream stream; local
37 stream << file << ":" << line;
39 stream << file << ":? ";
40 stream << ": ";
42 sink.append(stream.str());
/external/chromium_org/third_party/freetype/src/base/
H A Dftapi.c47 FT_Stream stream )
51 FT_Stream_OpenMemory( stream, base, size );
56 FT_Seek_Stream( FT_Stream stream,
59 return FT_Stream_Seek( stream, pos );
64 FT_Skip_Stream( FT_Stream stream,
67 return FT_Stream_Skip( stream, distance );
72 FT_Read_Stream( FT_Stream stream,
76 return FT_Stream_Read( stream, buffer, count );
81 FT_Read_Stream_At( FT_Stream stream,
86 return FT_Stream_ReadAt( stream, po
100 FT_Release_Frame( FT_Stream stream, FT_Byte** pbytes ) argument
[all...]

Completed in 633 milliseconds

1234567891011>>