HttpStreamParser 33 net/http/http_basic_state.cc parser_.reset(new HttpStreamParser( HttpStreamParser 25 net/http/http_basic_state.h class HttpStreamParser; HttpStreamParser 39 net/http/http_basic_state.h HttpStreamParser* parser() const { return parser_.get(); } HttpStreamParser 59 net/http/http_basic_state.h scoped_ptr<HttpStreamParser> parser_; HttpStreamParser 25 net/http/http_basic_stream.h class HttpStreamParser; HttpStreamParser 86 net/http/http_basic_stream.h HttpStreamParser* parser() const { return state_.parser(); } HttpStreamParser 133 net/http/http_pipelined_connection_impl.cc stream_info_map_[pipeline_id].parser.reset(new HttpStreamParser( HttpStreamParser 188 net/http/http_pipelined_connection_impl.h linked_ptr<HttpStreamParser> parser; HttpStreamParser 419 net/http/http_proxy_client_socket.cc http_stream_parser_.reset(new HttpStreamParser( HttpStreamParser 32 net/http/http_proxy_client_socket.h class HttpStreamParser; HttpStreamParser 141 net/http/http_proxy_client_socket.h scoped_ptr<HttpStreamParser> http_stream_parser_; HttpStreamParser 170 net/http/http_stream_parser.cc const size_t HttpStreamParser::kChunkHeaderFooterSize = 12; HttpStreamParser 172 net/http/http_stream_parser.cc HttpStreamParser::HttpStreamParser(ClientSocketHandle* connection, HttpStreamParser 191 net/http/http_stream_parser.cc io_callback_ = base::Bind(&HttpStreamParser::OnIOComplete, HttpStreamParser 195 net/http/http_stream_parser.cc HttpStreamParser::~HttpStreamParser() { HttpStreamParser 198 net/http/http_stream_parser.cc int HttpStreamParser::SendRequest(const std::string& request_line, HttpStreamParser 293 net/http/http_stream_parser.cc int HttpStreamParser::ReadResponseHeaders(const CompletionCallback& callback) { HttpStreamParser 322 net/http/http_stream_parser.cc void HttpStreamParser::Close(bool not_reusable) { HttpStreamParser 328 net/http/http_stream_parser.cc int HttpStreamParser::ReadResponseBody(IOBuffer* buf, int buf_len, HttpStreamParser 349 net/http/http_stream_parser.cc void HttpStreamParser::OnIOComplete(int result) { HttpStreamParser 361 net/http/http_stream_parser.cc int HttpStreamParser::DoLoop(int result) { HttpStreamParser 418 net/http/http_stream_parser.cc int HttpStreamParser::DoSendHeaders(int result) { HttpStreamParser 448 net/http/http_stream_parser.cc int HttpStreamParser::DoSendBody(int result) { HttpStreamParser 473 net/http/http_stream_parser.cc int HttpStreamParser::DoSendRequestReadingBody(int result) { HttpStreamParser 506 net/http/http_stream_parser.cc int HttpStreamParser::DoReadHeaders() { HttpStreamParser 521 net/http/http_stream_parser.cc int HttpStreamParser::DoReadHeadersComplete(int result) { HttpStreamParser 628 net/http/http_stream_parser.cc int HttpStreamParser::DoReadBody() { HttpStreamParser 661 net/http/http_stream_parser.cc int HttpStreamParser::DoReadBodyComplete(int result) { HttpStreamParser 762 net/http/http_stream_parser.cc int HttpStreamParser::ParseResponseHeaders() { HttpStreamParser 791 net/http/http_stream_parser.cc int HttpStreamParser::DoParseResponseHeaders(int end_offset) { HttpStreamParser 831 net/http/http_stream_parser.cc void HttpStreamParser::CalculateResponseBodySize() { HttpStreamParser 871 net/http/http_stream_parser.cc UploadProgress HttpStreamParser::GetUploadProgress() const { HttpStreamParser 879 net/http/http_stream_parser.cc HttpResponseInfo* HttpStreamParser::GetResponseInfo() { HttpStreamParser 883 net/http/http_stream_parser.cc bool HttpStreamParser::IsResponseBodyComplete() const { HttpStreamParser 892 net/http/http_stream_parser.cc bool HttpStreamParser::CanFindEndOfResponse() const { HttpStreamParser 896 net/http/http_stream_parser.cc bool HttpStreamParser::IsMoreDataBuffered() const { HttpStreamParser 900 net/http/http_stream_parser.cc bool HttpStreamParser::IsConnectionReused() const { HttpStreamParser 906 net/http/http_stream_parser.cc void HttpStreamParser::SetConnectionReused() { HttpStreamParser 910 net/http/http_stream_parser.cc bool HttpStreamParser::IsConnectionReusable() const { HttpStreamParser 914 net/http/http_stream_parser.cc void HttpStreamParser::GetSSLInfo(SSLInfo* ssl_info) { HttpStreamParser 922 net/http/http_stream_parser.cc void HttpStreamParser::GetSSLCertRequestInfo( HttpStreamParser 931 net/http/http_stream_parser.cc int HttpStreamParser::EncodeChunk(const base::StringPiece& payload, HttpStreamParser 956 net/http/http_stream_parser.cc bool HttpStreamParser::ShouldMergeRequestHeadersAndBody( HttpStreamParser 35 net/http/http_stream_parser.h class NET_EXPORT_PRIVATE HttpStreamParser { HttpStreamParser 42 net/http/http_stream_parser.h HttpStreamParser(ClientSocketHandle* connection, HttpStreamParser 46 net/http/http_stream_parser.h virtual ~HttpStreamParser(); HttpStreamParser 238 net/http/http_stream_parser.h base::WeakPtrFactory<HttpStreamParser> weak_ptr_factory_; HttpStreamParser 240 net/http/http_stream_parser.h DISALLOW_COPY_AND_ASSIGN(HttpStreamParser); HttpStreamParser 40 net/http/http_stream_parser_unittest.cc kOutputSize - HttpStreamParser::kChunkHeaderFooterSize; HttpStreamParser 43 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, EncodeChunk_EmptyPayload) { HttpStreamParser 49 net/http/http_stream_parser_unittest.cc HttpStreamParser::EncodeChunk(kPayload, output, sizeof(output)); HttpStreamParser 54 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, EncodeChunk_ShortPayload) { HttpStreamParser 61 net/http/http_stream_parser_unittest.cc HttpStreamParser::EncodeChunk(kPayload, output, sizeof(output)); HttpStreamParser 66 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, EncodeChunk_LargePayload) { HttpStreamParser 73 net/http/http_stream_parser_unittest.cc HttpStreamParser::EncodeChunk(kPayload, output, sizeof(output)); HttpStreamParser 78 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, EncodeChunk_FullPayload) { HttpStreamParser 85 net/http/http_stream_parser_unittest.cc HttpStreamParser::EncodeChunk(kPayload, output, sizeof(output)); HttpStreamParser 90 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, EncodeChunk_TooLargePayload) { HttpStreamParser 96 net/http/http_stream_parser_unittest.cc HttpStreamParser::EncodeChunk(kPayload, output, sizeof(output)); HttpStreamParser 100 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, ShouldMergeRequestHeadersAndBody_NoBody) { HttpStreamParser 102 net/http/http_stream_parser_unittest.cc ASSERT_FALSE(HttpStreamParser::ShouldMergeRequestHeadersAndBody( HttpStreamParser 106 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, ShouldMergeRequestHeadersAndBody_EmptyBody) { HttpStreamParser 112 net/http/http_stream_parser_unittest.cc ASSERT_FALSE(HttpStreamParser::ShouldMergeRequestHeadersAndBody( HttpStreamParser 116 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, ShouldMergeRequestHeadersAndBody_ChunkedBody) { HttpStreamParser 123 net/http/http_stream_parser_unittest.cc ASSERT_FALSE(HttpStreamParser::ShouldMergeRequestHeadersAndBody( HttpStreamParser 127 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, ShouldMergeRequestHeadersAndBody_FileBody) { HttpStreamParser 151 net/http/http_stream_parser_unittest.cc ASSERT_FALSE(HttpStreamParser::ShouldMergeRequestHeadersAndBody( HttpStreamParser 158 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, ShouldMergeRequestHeadersAndBody_SmallBodyInMemory) { HttpStreamParser 168 net/http/http_stream_parser_unittest.cc ASSERT_TRUE(HttpStreamParser::ShouldMergeRequestHeadersAndBody( HttpStreamParser 172 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, ShouldMergeRequestHeadersAndBody_LargeBodyInMemory) { HttpStreamParser 182 net/http/http_stream_parser_unittest.cc ASSERT_FALSE(HttpStreamParser::ShouldMergeRequestHeadersAndBody( HttpStreamParser 191 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, AsyncChunkAndAsyncSocket) { HttpStreamParser 248 net/http/http_stream_parser_unittest.cc HttpStreamParser parser( HttpStreamParser 325 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, TruncatedHeaders) { HttpStreamParser 406 net/http/http_stream_parser_unittest.cc HttpStreamParser parser( HttpStreamParser 434 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, Websocket101Response) { HttpStreamParser 471 net/http/http_stream_parser_unittest.cc HttpStreamParser parser( HttpStreamParser 500 net/http/http_stream_parser_unittest.cc HttpStreamParser* parser() { return parser_.get(); } HttpStreamParser 539 net/http/http_stream_parser_unittest.cc parser_.reset(new HttpStreamParser( HttpStreamParser 576 net/http/http_stream_parser_unittest.cc scoped_ptr<HttpStreamParser> parser_; HttpStreamParser 581 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, ReceivedBytesNoHeaders) { HttpStreamParser 597 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, ReceivedBytesNormal) { HttpStreamParser 618 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, ReceivedBytesExcludesNextResponse) { HttpStreamParser 649 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, ReceivedBytesMultiReadExcludesNextResponse) { HttpStreamParser 681 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, ReceivedBytesFromReadBufExcludesNextResponse) { HttpStreamParser 706 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, ReceivedBytesUseReadBuf) { HttpStreamParser 728 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, ReceivedBytesChunkedTransferExcludesNextResponse) { HttpStreamParser 753 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, ReceivedBytesMultipleReads) { HttpStreamParser 781 net/http/http_stream_parser_unittest.cc TEST(HttpStreamParser, ReceivedBytesIncludesContinueHeader) { HttpStreamParser 23 net/websockets/websocket_basic_handshake_stream.h class HttpStreamParser; HttpStreamParser 96 net/websockets/websocket_basic_handshake_stream.h HttpStreamParser* parser() const { return state_.parser(); }