OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BytesFree
(Results
1 - 14
of
14
) 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;
/external/chromium_org/net/tools/balsa/
buffer_interface.h
27
virtual int
BytesFree
() const = 0;
simple_buffer.cc
70
inline int SimpleBuffer::
BytesFree
() const {
107
*size = SimpleBuffer::
BytesFree
();
147
if (size > 0 &&
BytesFree
() < size) {
157
CHECK_GE(
BytesFree
(), size);
simple_buffer.h
37
virtual int
BytesFree
() const OVERRIDE;
/external/chromium_org/net/tools/flip_server/
ring_buffer.cc
23
int RingBuffer::
BytesFree
() const { return BufferSize() - ReadableBytes(); }
55
int bytes_available =
BytesFree
();
161
if (size <=
BytesFree
()) {
201
CHECK_LE(amount_to_produce,
BytesFree
());
ring_buffer.h
43
virtual int
BytesFree
() const OVERRIDE;
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
/external/chromium_org/net/quic/
quic_packet_creator.cc
130
return
BytesFree
() >
157
LOG(DFATAL) << "No room for Stream frame,
BytesFree
: " <<
BytesFree
()
172
const size_t free_bytes =
BytesFree
();
194
DCHECK_LT(data_size,
BytesFree
());
272
size_t QuicPacketCreator::
BytesFree
() const {
424
frame,
BytesFree
(), queued_frames_.empty(), true,
455
if (
BytesFree
() == 0) {
quic_packet_creator.h
122
size_t
BytesFree
() const;
127
// in
BytesFree
.
quic_packet_creator_test.cc
365
//
BytesFree
() returns bytes available for the next frame, which will
368
EXPECT_EQ(expected_bytes_free, creator_.
BytesFree
()) << "delta: " << delta;
576
creator_.
BytesFree
());
599
EXPECT_EQ(0u, creator_.
BytesFree
());
621
creator_.
BytesFree
());
quic_packet_generator.cc
113
DCHECK(data.Empty() || packet_creator_->
BytesFree
() == 0u);
Completed in 168 milliseconds