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

  /external/chromium/net/http/
http_chunked_decoder.cc 103 size_t index_of_lf = base::StringPiece(buf, buf_len).find('\n'); local
104 if (index_of_lf != base::StringPiece::npos) {
105 buf_len = static_cast<int>(index_of_lf);
108 bytes_consumed = static_cast<int>(index_of_lf) + 1;
  /external/chromium_org/net/http/
http_chunked_decoder.cc 109 size_t index_of_lf = base::StringPiece(buf, buf_len).find('\n'); local
110 if (index_of_lf != base::StringPiece::npos) {
111 buf_len = static_cast<int>(index_of_lf);
114 bytes_consumed = static_cast<int>(index_of_lf) + 1;

Completed in 26 milliseconds