Home | History | Annotate | Download | only in http

Lines Matching defs:HttpStreamParser

110 class HttpStreamParser::SeekableIOBuffer : public IOBuffer {
176 const size_t HttpStreamParser::kChunkHeaderFooterSize = 12;
178 HttpStreamParser::HttpStreamParser(ClientSocketHandle* connection,
199 io_callback_ = base::Bind(&HttpStreamParser::OnIOComplete,
203 HttpStreamParser::~HttpStreamParser() {
206 int HttpStreamParser::SendRequest(const std::string& request_line,
303 int HttpStreamParser::ReadResponseHeaders(const CompletionCallback& callback) {
332 void HttpStreamParser::Close(bool not_reusable) {
338 int HttpStreamParser::ReadResponseBody(IOBuffer* buf, int buf_len,
359 void HttpStreamParser::OnIOComplete(int result) {
371 int HttpStreamParser::DoLoop(int result) {
423 int HttpStreamParser::DoSendHeaders() {
437 int HttpStreamParser::DoSendHeadersComplete(int result) {
476 int HttpStreamParser::DoSendBody() {
497 int HttpStreamParser::DoSendBodyComplete(int result) {
514 int HttpStreamParser::DoSendRequestReadBodyComplete(int result) {
547 int HttpStreamParser::DoReadHeaders() {
562 int HttpStreamParser::DoReadHeadersComplete(int result) {
609 int HttpStreamParser::DoReadBody() {
642 int HttpStreamParser::DoReadBodyComplete(int result) {
743 int HttpStreamParser::HandleReadHeaderResult(int result) {
850 int HttpStreamParser::ParseResponseHeaders() {
879 int HttpStreamParser::DoParseResponseHeaders(int end_offset) {
919 void HttpStreamParser::CalculateResponseBodySize() {
959 UploadProgress HttpStreamParser::GetUploadProgress() const {
967 bool HttpStreamParser::IsResponseBodyComplete() const {
976 bool HttpStreamParser::CanFindEndOfResponse() const {
980 bool HttpStreamParser::IsMoreDataBuffered() const {
984 bool HttpStreamParser::IsConnectionReused() const {
990 void HttpStreamParser::SetConnectionReused() {
994 bool HttpStreamParser::IsConnectionReusable() const {
998 void HttpStreamParser::GetSSLInfo(SSLInfo* ssl_info) {
1006 void HttpStreamParser::GetSSLCertRequestInfo(
1015 int HttpStreamParser::EncodeChunk(const base::StringPiece& payload,
1040 bool HttpStreamParser::ShouldMergeRequestHeadersAndBody(