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

  /external/chromium/net/websockets/
websocket_handshake_handler.cc 57 bool GetHeaderName(std::string::const_iterator line_begin,
61 std::string::const_iterator colon = std::find(line_begin, line_end, ':');
65 *name_begin = line_begin;
83 std::string::const_iterator line_begin = lines.token_begin(); local
88 if (GetHeaderName(line_begin, line_end, &name_begin, &name_end)) {
97 filtered_headers.append(line_begin, line_end);
  /external/chromium/net/http/
http_response_headers.h 267 // with line_begin and end pointing at the begin and end of this line. If the
269 static HttpVersion ParseVersion(std::string::const_iterator line_begin,
276 // with line_begin and end pointing at the begin and end of this line.
278 void ParseStatusLine(std::string::const_iterator line_begin,
http_response_headers.cc 330 std::string::const_iterator line_begin = raw_input.begin(); local
332 find(line_begin, raw_input.end(), '\0');
338 ParseStatusLine(line_begin, line_end, has_headers);
540 std::string::const_iterator line_begin,
542 std::string::const_iterator p = line_begin;
583 std::string::const_iterator line_begin,
587 parsed_http_version_ = ParseVersion(line_begin, line_end);
607 std::string::const_iterator p = find(line_begin, line_end, ' ');
    [all...]
  /external/chromium/net/tools/flip_server/
balsa_frame.cc 456 // 'line_begin' points to the first character of the line.
459 // 'line_begin' points to the position of first character of line.
462 const char* line_begin,
471 << "\"" << std::string(line_begin, line_end) << "\"";
476 while (current > line_begin && *current <= ' ') --current;
512 const char* line_begin = stream_begin + lines_[i].first; local
529 DCHECK_LT(line_begin - stream_begin, line_end - stream_begin);
535 // We're guaranteed to have *line_end > ' ' while line_end >= line_begin.
538 << "\"" << std::string(line_begin, line_end) << "\"";
539 while (*line_end <= ' ' && line_end > line_begin) {
    [all...]
balsa_frame.h 155 const char* line_begin,

Completed in 115 milliseconds