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

  /external/chromium/net/tools/flip_server/
buffer_interface.h 28 virtual int BytesFree() const = 0;
simple_buffer.cc 65 inline int SimpleBuffer::BytesFree() const {
102 *size = SimpleBuffer::BytesFree();
142 if (size > 0 && BytesFree() < size) {
152 CHECK_GE(BytesFree(), size);
ring_buffer.cc 34 int RingBuffer::BytesFree() const {
78 int bytes_available = BytesFree();
194 if (size <= BytesFree()) {
238 CHECK_LE(amount_to_produce, BytesFree());
ring_buffer.h 43 virtual int BytesFree() const;
71 // size is <= BytesFree(), it is guaranteed that the buffer size will not
77 // or equal to BytesFree(), it is guaranteed that the buffer size will not
simple_buffer.h 39 virtual int BytesFree() const;

Completed in 141 milliseconds