OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FilterBuf
(Results
1 - 4
of
4
) sorted by null
/external/chromium/net/http/
http_chunked_decoder.h
81
// Indicates that a previous call to
FilterBuf
encountered the final CRLF.
92
int
FilterBuf
(char* buf, int buf_len);
114
// Set to true when
FilterBuf
encounters the last-chunk.
117
// Set to true when
FilterBuf
encounters the final CRLF.
http_chunked_decoder_unittest.cc
25
int n = decoder.
FilterBuf
(&input[0], static_cast<int>(input.size()));
45
int n = decoder.
FilterBuf
(&input[0], static_cast<int>(input.size()));
http_chunked_decoder.cc
63
int HttpChunkedDecoder::
FilterBuf
(char* buf, int buf_len) {
http_stream_parser.cc
498
// Filter incoming data if appropriate.
FilterBuf
may return an error.
500
result = chunked_decoder_->
FilterBuf
(user_read_buf_->data(), result);
Completed in 1471 milliseconds