/external/chromium_org/remoting/base/ |
compound_buffer_unittest.cc | 263 CompoundBufferInputStream stream(buffer.get()); 265 ReadString(&stream, "Hello world!"); 266 ReadString(&stream, "This "); 267 ReadString(&stream, "is test"); 268 EXPECT_TRUE(stream.Skip(3)); 269 ReadString(&stream, "MultipleArrayInput"); 270 EXPECT_TRUE(stream.Skip(6)); 271 ReadString(&stream, "f"); 272 ReadString(&stream, "o"); 273 ReadString(&stream, "r") [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/ |
MediaStreamRegistry.cpp | 42 void MediaStreamRegistry::registerURL(SecurityOrigin*, const KURL& url, URLRegistrable* stream) 44 ASSERT(&stream->registry() == this); 46 m_streamDescriptors.set(url.string(), static_cast<MediaStream*>(stream)->descriptor());
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebSocketStreamHandle.h | 46 // Connect new socket stream asynchronously. 49 // Send web socket frame data on the socket stream. 52 // Close the socket stream.
|
WebSocketStreamHandleClient.h | 46 // Called when Socket Stream is opened. 55 // Called when Socket Stream is closed. 58 // Called when Socket Stream has an error.
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
httpserver.cc | 55 StreamInterface* stream = it->second->EndProcess(); local 56 delete stream; 62 HttpServer::HandleConnection(StreamInterface* stream) { 67 connection->BeginProcess(stream); 149 HttpServer::Connection::BeginProcess(StreamInterface* stream) { 151 base_.attach(stream); 291 StreamInterface* stream = new SocketStream(incoming); local 292 //stream = new LoggingAdapter(stream, LS_VERBOSE, "HttpServer", false); 293 HandleConnection(stream); [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
rtpdump.h | 37 #include "talk/base/stream.h" 106 explicit RtpDumpReader(talk_base::StreamInterface* stream) 107 : stream_(stream), 138 // RtpDumpLoopReader reads RTP dump packets from the input stream and rewinds 139 // the stream when it ends. RtpDumpLoopReader maintains the elapsed time, the 145 explicit RtpDumpLoopReader(talk_base::StreamInterface* stream); 150 // count, timestamps, and sequence number, of the input stream. 169 // How many RTP packets and how many payload frames in the input stream. RTP 175 // the previous dump packets in the input stream. 188 explicit RtpDumpWriter(talk_base::StreamInterface* stream); [all...] |
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/ |
default_logger.h | 47 stringstream stream; local 48 stream << n; 50 stream >> result;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/ |
tr_dump.c | 59 static FILE *stream = NULL; variable 69 if (stream) { 70 fwrite(buf, size, 1, stream); 220 if(stream) { 222 fclose(stream); 223 stream = NULL; 237 if(!stream) { 239 stream = fopen(filename, "wt"); 240 if(!stream) 261 return stream ? TRUE : FALSE [all...] |
/external/chromium_org/third_party/skia/include/images/ |
SkMovie.h | 22 /** Try to create a movie from the stream. If the stream format is not 28 returned, the stream may be retained by the movie (via ref()) until
|
/external/chromium_org/third_party/skia/src/core/ |
SkPicture.cpp | 267 bool SkPicture::StreamIsSKP(SkStream* stream, SkPictInfo* pInfo) { 268 if (NULL == stream) { 273 if (!stream->read(&info, sizeof(SkPictInfo))) { 292 SkPicture* SkPicture::CreateFromStream(SkStream* stream, InstallPixelRefProc proc) { 295 if (!StreamIsSKP(stream, &info)) { 301 if (stream->readBool()) { 302 playback = SkNEW_ARGS(SkPicturePlayback, (stream, info, proc)); 310 void SkPicture::serialize(SkWStream* stream, EncodeBitmap encoder) const { 330 stream->write(&info, sizeof(info)); 332 stream->writeBool(true) [all...] |
/external/chromium_org/third_party/skia/src/ports/ |
SkXMLParser_tinyxml.cpp | 59 bool SkXMLParser::parse(SkStream& stream) 61 size_t size = stream.getLength(); 66 stream.read(buf, size);
|
/external/harfbuzz/src/ |
Makefile.am | 7 harfbuzz-stream.c \ 39 harfbuzz-stream.h \ 45 harfbuzz-stream-private.h \
|
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/ |
ClassLoaderResourceLoader.java | 68 InputStream stream = classLoader.getResourceAsStream(path); local 69 return stream == null ? null : buffer(new InputStreamReader(stream, getCharacterSet()));
|
/external/libogg/doc/libogg/ |
ogg_stream_eos.html | 20 <p>This function indicates whether we have reached the end of the stream or not. 41 <li>1 if we are at the end of the stream or an internal error occurred.</li> 43 0 if we have not yet reached the end of the stream.</li>
|
/external/llvm/lib/Bitcode/Writer/ |
BitcodeWriter.cpp | 150 unsigned AbbrevToUse, BitstreamWriter &Stream) { 161 Stream.EmitRecord(Code, Vals, AbbrevToUse); 248 BitstreamWriter &Stream) { 252 Stream.EnterSubblock(bitc::PARAMATTR_GROUP_BLOCK_ID, 3); 287 Stream.EmitRecord(bitc::PARAMATTR_GRP_CODE_ENTRY, Record); 292 Stream.ExitBlock(); 296 BitstreamWriter &Stream) { 300 Stream.EnterSubblock(bitc::PARAMATTR_BLOCK_ID, 3); 308 Stream.EmitRecord(bitc::PARAMATTR_CODE_ENTRY, Record); 312 Stream.ExitBlock() [all...] |
/external/lzma/CPP/Common/ |
StdInStream.cpp | 19 static const char *kEOFMessage = "Unexpected end of input stream";
20 static const char *kReadErrorMessage ="Error reading input stream";
21 static const char *kIllegalCharMessage = "Illegal character in input stream";
|
/external/mesa3d/src/gallium/drivers/trace/ |
tr_dump.c | 59 static FILE *stream = NULL; variable 69 if (stream) { 70 fwrite(buf, size, 1, stream); 220 if(stream) { 222 fclose(stream); 223 stream = NULL; 237 if(!stream) { 239 stream = fopen(filename, "wt"); 240 if(!stream) 261 return stream ? TRUE : FALSE [all...] |
/external/qemu/distrib/sdl-1.2.15/src/audio/pulse/ |
SDL_pulseaudio.h | 38 pa_stream *stream; member in struct:SDL_PrivateAudioData 68 #define stream (this->hidden->stream) macro
|
/external/skia/include/images/ |
SkMovie.h | 22 /** Try to create a movie from the stream. If the stream format is not 28 returned, the stream may be retained by the movie (via ref()) until
|
/external/skia/src/core/ |
SkPicture.cpp | 267 bool SkPicture::StreamIsSKP(SkStream* stream, SkPictInfo* pInfo) { 268 if (NULL == stream) { 273 if (!stream->read(&info, sizeof(SkPictInfo))) { 292 SkPicture* SkPicture::CreateFromStream(SkStream* stream, InstallPixelRefProc proc) { 295 if (!StreamIsSKP(stream, &info)) { 301 if (stream->readBool()) { 302 playback = SkNEW_ARGS(SkPicturePlayback, (stream, info, proc)); 310 void SkPicture::serialize(SkWStream* stream, EncodeBitmap encoder) const { 330 stream->write(&info, sizeof(info)); 332 stream->writeBool(true) [all...] |
/external/skia/src/ports/ |
SkXMLParser_tinyxml.cpp | 59 bool SkXMLParser::parse(SkStream& stream) 61 size_t size = stream.getLength(); 66 stream.read(buf, size);
|
/external/zlib/src/contrib/iostream3/ |
README | 1 These classes provide a C++ stream interface to the zlib library. It allows you 7 It does this by deriving a specialized stream buffer for gzipped files, which is 22 - a few bug fixes of stream behavior
|
/frameworks/av/include/media/nbaio/ |
AudioStreamOutSink.h | 29 AudioStreamOutSink(audio_stream_out *stream); 50 // AudioStreamOutSink wraps a HAL's output stream. Its 60 audio_stream_out *stream() const { return mStream; }
|
/frameworks/av/media/libnbaio/ |
AudioStreamInSource.cpp | 26 AudioStreamInSource::AudioStreamInSource(audio_stream_in *stream) : 28 mStream(stream), 33 ALOG_ASSERT(stream != NULL);
|
/frameworks/base/core/java/android/gesture/ |
GestureStore.java | 221 public void save(OutputStream stream) throws IOException { 222 save(stream, false); 225 public void save(OutputStream stream, boolean closeStream) throws IOException { 236 out = new DataOutputStream((stream instanceof BufferedOutputStream) ? stream : 237 new BufferedOutputStream(stream, GestureConstants.IO_BUFFER_SIZE)); 274 public void load(InputStream stream) throws IOException { 275 load(stream, false); 278 public void load(InputStream stream, boolean closeStream) throws IOException { 281 in = new DataInputStream((stream instanceof BufferedInputStream) ? stream [all...] |