Home | History | Annotate | Download | only in http

Lines Matching refs:raw_input

132 HttpResponseHeaders::HttpResponseHeaders(const std::string& raw_input)
134 Parse(raw_input);
156 std::string raw_input;
157 if (pickle.ReadString(iter, &raw_input))
158 Parse(raw_input);
326 void HttpResponseHeaders::Parse(const std::string& raw_input) {
327 raw_headers_.reserve(raw_input.size());
330 std::string::const_iterator line_begin = raw_input.begin();
332 find(line_begin, raw_input.end(), '\0');
335 bool has_headers = (line_end != raw_input.end() &&
336 (line_end + 1) != raw_input.end() &&
340 if (line_end == raw_input.end()) {
350 raw_headers_.append(line_end + 1, raw_input.end());