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

  /external/chromium_org/third_party/webrtc/base/
stream_unittest.cc 174 EXPECT_TRUE(NULL != stream->GetReadData(&bytes));
253 // Try using GetReadData to do a full read
255 q = stream->GetReadData(&bytes);
262 // Try using GetReadData to do some small reads
264 q = stream->GetReadData(&bytes);
269 q = stream->GetReadData(&bytes);
276 // Try using GetReadData in a wraparound case
285 q = stream->GetReadData(&bytes);
290 q = stream->GetReadData(&bytes);
proxyserver.cc 135 const void* p = buffer->GetReadData(&size);
stream.h 126 // GetReadData returns a pointer to a buffer which is owned by the stream.
129 // must call ConsumeReadData with the number of processed bytes. GetReadData
132 // GetReadData.
133 virtual const void* GetReadData(size_t* data_len) { return NULL; }
269 virtual const void* GetReadData(size_t* data_len) {
270 return stream_->GetReadData(data_len);
660 virtual const void* GetReadData(size_t* data_len);
stream.cc 1008 const void* FifoBuffer::GetReadData(size_t* size) {
    [all...]

Completed in 33 milliseconds