OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetReadData
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/base/
stream_unittest.cc
110
EXPECT_TRUE(NULL != stream->
GetReadData
(&bytes));
189
// Try using
GetReadData
to do a full read
191
q = stream->
GetReadData
(&bytes);
198
// Try using
GetReadData
to do some small reads
200
q = stream->
GetReadData
(&bytes);
205
q = stream->
GetReadData
(&bytes);
212
// Try using
GetReadData
in a wraparound case
221
q = stream->
GetReadData
(&bytes);
226
q = stream->
GetReadData
(&bytes);
proxyserver.cc
141
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);
265
virtual const void*
GetReadData
(size_t* data_len) {
266
return stream_->
GetReadData
(data_len);
535
const void*
GetReadData
(size_t* data_len) override;
stream.cc
104
const void* StreamInterface::
GetReadData
(size_t* data_len) {
799
const void* FifoBuffer::
GetReadData
(size_t* size) {
Completed in 390 milliseconds