HomeSort by relevance Sort by last modified time
    Searched refs:GetReadData (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/libjingle/source/talk/base/
stream_unittest.cc 190 EXPECT_TRUE(NULL != stream->GetReadData(&bytes));
269 // Try using GetReadData to do a full read
271 q = stream->GetReadData(&bytes);
278 // Try using GetReadData to do some small reads
280 q = stream->GetReadData(&bytes);
285 q = stream->GetReadData(&bytes);
292 // Try using GetReadData in a wraparound case
301 q = stream->GetReadData(&bytes);
306 q = stream->GetReadData(&bytes);
proxyserver.cc 152 const void* p = buffer->GetReadData(&size);
stream.h 141 // GetReadData returns a pointer to a buffer which is owned by the stream.
144 // must call ConsumeReadData with the number of processed bytes. GetReadData
147 // GetReadData.
148 virtual const void* GetReadData(size_t* data_len) { return NULL; }
284 virtual const void* GetReadData(size_t* data_len) {
285 return stream_->GetReadData(data_len);
647 virtual const void* GetReadData(size_t* data_len);
stream.cc 925 const void* FifoBuffer::GetReadData(size_t* size) {
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
stream.h 130 // GetReadData returns a pointer to a buffer which is owned by the stream.
133 // must call ConsumeReadData with the number of processed bytes. GetReadData
136 // GetReadData.
137 virtual const void* GetReadData(size_t* data_len) { return NULL; }
270 virtual const void* GetReadData(size_t* data_len) {
271 return stream_->GetReadData(data_len);
571 virtual const void* GetReadData(size_t* data_len);
stream.cc 822 const void* FifoBuffer::GetReadData(size_t* size) {

Completed in 202 milliseconds