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

  /external/chromium/net/tools/flip_server/
balsa_frame.cc 432 // 'line_begin' points to the first character of the line.
435 // 'line_begin' points to the position of first character of line.
438 const char* line_begin,
447 << "\"" << std::string(line_begin, line_end) << "\"";
452 while (current > line_begin && *current <= ' ') --current;
488 const char* line_begin = stream_begin + lines_[i].first; local
505 DCHECK_LT(line_begin - stream_begin, line_end - stream_begin);
511 // We're guaranteed to have *line_end > ' ' while line_end >= line_begin.
514 << "\"" << std::string(line_begin, line_end) << "\"";
515 while (*line_end <= ' ' && line_end > line_begin) {
    [all...]
balsa_frame.h 173 const char* line_begin,
  /external/chromium/net/http/
http_response_headers.cc 272 std::string::const_iterator line_begin = raw_input.begin(); local
274 find(line_begin, raw_input.end(), '\0');
279 ParseStatusLine(line_begin, line_end, has_headers);
471 std::string::const_iterator line_begin,
473 std::string::const_iterator p = line_begin;
514 std::string::const_iterator line_begin,
518 parsed_http_version_ = ParseVersion(line_begin, line_end);
538 std::string::const_iterator p = find(line_begin, line_end, ' ');
    [all...]
http_response_headers.h 255 // with line_begin and end pointing at the begin and end of this line. If the
257 static HttpVersion ParseVersion(std::string::const_iterator line_begin,
264 // with line_begin and end pointing at the begin and end of this line.
266 void ParseStatusLine(std::string::const_iterator line_begin,

Completed in 43 milliseconds