OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stream_buffer_
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/net/filter/
filter.h
19
// To filter a data stream, the caller first gets filter's
stream_buffer_
20
// through its accessor and fills in
stream_buffer_
with pre-filter data, next
23
// and read out, the caller may fill in
stream_buffer_
again. This
168
// Returns a pointer to the
stream_buffer_
.
169
IOBuffer* stream_buffer() const { return
stream_buffer_
.get(); }
171
// Returns the maximum size of
stream_buffer_
in number of chars.
174
// Returns the total number of chars remaining in
stream_buffer_
to be
178
// is safe to copy new data into
stream_buffer_
.
181
// Flushes
stream_buffer_
for next round of filtering. After copying data to
182
//
stream_buffer_
, the caller should call this function to notify Filter t
232
scoped_refptr<IOBuffer>
stream_buffer_
;
member in class:net::Filter
[
all
...]
filter.cc
320
:
stream_buffer_
(NULL),
397
stream_buffer_
= new IOBuffer(buffer_size);
Completed in 331 milliseconds