Searched defs:stream (Results 51 - 75 of 1254) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/loader/
H A Dstream_resource_handler.h22 // Redirect this resource to a stream.
62 Stream* stream() { return stream_.get(); } function in class:content::StreamResourceHandler
65 virtual void OnSpaceAvailable(Stream* stream) OVERRIDE;
66 virtual void OnClose(Stream* stream) OVERRIDE;
/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/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/modules/mediastream/
H A DMediaStreamRegistry.cpp43 void MediaStreamRegistry::registerURL(SecurityOrigin*, const KURL& url, URLRegistrable* stream) argument
45 ASSERT(&stream->registry() == this);
47 m_streamDescriptors.set(url.string(), static_cast<MediaStream*>(stream)->descriptor());
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DMediaStreamAudioDestinationNode.h47 MediaStream* stream() { return m_stream.get(); } function in class:blink::FINAL
/external/chromium_org/third_party/angle/src/compiler/translator/
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...]
/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder_FactoryRegistrar.cpp21 SkImageDecoder* image_decoder_from_stream(SkStreamRewindable* stream) { argument
25 codec = curr->factory()(stream);
27 // the stream will be at its beginning.
28 bool rewindSuceeded = stream->rewind();
31 // if we are given a stream that does not support rewinding.
33 SkDEBUGF(("Unable to rewind the image stream."));
48 SkImageDecoder::Format SkImageDecoder::GetStreamFormat(SkStreamRewindable* stream) { argument
51 Format format = curr->factory()(stream);
52 if (!stream->rewind()) {
54 "Unable to rewind the image stream\
[all...]
/external/compiler-rt/test/tsan/
H A Dgetline_nohang.cc3 // Make sure TSan doesn't deadlock on a file stream lock at program shutdown.
14 // Forge a non-standard stream to make sure it's not closed.
15 FILE *stream = fdopen(fd[0], "r"); local
17 volatile int res = getline(&line, &size, stream);
32 // ThreadSanitizer used to hang here because of a deadlock on a file stream.
/external/eigen/unsupported/test/
H A Dmpreal_support.cpp54 std::stringstream stream; local
55 stream << A;
/external/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...]
/external/libcxx/test/input.output/iostreams.base/ios.base/ios.base.callback/
H A Dregister_callback.pass.cpp35 void f1(std::ios_base::event ev, std::ios_base& stream, int index) argument
39 assert(stream.getloc().name() == LOCALE_en_US_UTF_8);
/external/ltrace/
H A Dlens.c29 format_argument(FILE *stream, struct value *value, argument
45 return lens_format(lens, stream, value, arguments);
49 lens_format(struct lens *lens, FILE *stream, struct value *value, argument
53 return lens->format_cb(lens, stream, value, arguments);
/external/lzma/CPP/7zip/Archive/7z/
H A D7zSpecStream.h19 void Init(ISequentialInStream *stream) argument
21 _stream = stream;
/external/nanopb-c/examples/network_server/
H A Dcommon.c11 static bool write_callback(pb_ostream_t *stream, const uint8_t *buf, size_t count) argument
13 int fd = (intptr_t)stream->state;
17 static bool read_callback(pb_istream_t *stream, uint8_t *buf, size_t count) argument
19 int fd = (intptr_t)stream->state;
25 stream->bytes_left = 0; /* EOF */
32 pb_ostream_t stream = {&write_callback, (void*)(intptr_t)fd, SIZE_MAX, 0}; local
33 return stream;
38 pb_istream_t stream = {&read_callback, (void*)(intptr_t)fd, SIZE_MAX}; local
39 return stream;
/external/nanopb-c/tests/alltypes/
H A Ddecode_alltypes.c20 bool check_alltypes(pb_istream_t *stream, int mode) argument
27 if (!pb_decode(stream, AllTypes_fields, &alltypes))
193 pb_istream_t stream; local
203 stream = pb_istream_from_buffer(buffer, count);
206 if (!check_alltypes(&stream, mode))
208 printf("Parsing failed: %s\n", PB_GET_ERROR(&stream));
/external/nanopb-c/tests/backwards_compatibility/
H A Ddecode_legacy.c23 bool check_alltypes(pb_istream_t *stream, int mode) argument
30 if (!pb_decode(stream, AllTypes_fields, &alltypes))
182 pb_istream_t stream; local
192 stream = pb_istream_from_buffer(buffer, count);
195 if (!check_alltypes(&stream, mode))
197 printf("Parsing failed: %s\n", PB_GET_ERROR(&stream));
/external/nanopb-c/tests/basic_buffer/
H A Ddecode_buffer.c16 bool print_person(pb_istream_t *stream) argument
21 if (!pb_decode(stream, Person_fields, &person))
64 pb_istream_t stream; local
78 stream = pb_istream_from_buffer(buffer, count);
81 if (!print_person(&stream))
83 printf("Parsing failed: %s\n", PB_GET_ERROR(&stream));
/external/nanopb-c/tests/extensions/
H A Dencode_extensions.c15 pb_ostream_t stream; local
34 /* Set up the output stream */
35 stream = pb_ostream_from_buffer(buffer, sizeof(buffer));
38 if (pb_encode(&stream, AllTypes_fields, &alltypes))
41 fwrite(buffer, 1, stream.bytes_written, stdout);
46 fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream));
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DIncomingStreamHandler.java21 /** Listener to be notified when a connected peer creates a new stream. */
24 @Override public void receive(SpdyStream stream) throws IOException {
25 stream.close(ErrorCode.REFUSED_STREAM);
30 * Handle a new stream from this connection's peer. Implementations should
31 * respond by either {@link SpdyStream#reply replying to the stream} or
35 void receive(SpdyStream stream) throws IOException; argument
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_uncompr.c30 z_stream stream; local
33 stream.next_in = (z_const Bytef *)source;
34 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;
45 err = inflateInit(&stream);
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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...]
/external/qemu/distrib/sdl-1.2.15/src/audio/arts/
H A DSDL_artsaudio.h35 /* The stream descriptor for the audio device */
36 arts_stream_t stream; member in struct:SDL_PrivateAudioData
52 #define stream (this->hidden->stream) macro
/external/skia/src/images/
H A DSkImageDecoder_FactoryRegistrar.cpp21 SkImageDecoder* image_decoder_from_stream(SkStreamRewindable* stream) { argument
25 codec = curr->factory()(stream);
27 // the stream will be at its beginning.
28 bool rewindSuceeded = stream->rewind();
31 // if we are given a stream that does not support rewinding.
33 SkDEBUGF(("Unable to rewind the image stream."));
48 SkImageDecoder::Format SkImageDecoder::GetStreamFormat(SkStreamRewindable* stream) { argument
51 Format format = curr->factory()(stream);
52 if (!stream->rewind()) {
54 "Unable to rewind the image stream\
[all...]
H A DSkStreamHelpers.cpp13 size_t CopyStreamToStorage(SkAutoMalloc* storage, SkStream* stream) { argument
15 SkASSERT(stream != NULL);
17 if (stream->hasLength()) {
18 const size_t length = stream->getLength();
20 if (stream->read(dst, length) != length) {
32 size_t bytesRead = stream->read(buffer, bufferSize);
36 } while (!stream->isAtEnd());
43 SkData *CopyStreamToData(SkStream* stream) { argument
44 SkASSERT(stream != NULL);
46 if (stream
[all...]

Completed in 4149 milliseconds

1234567891011>>