OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:HttpBase
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/base/
httpbase.cc
19
#include "webrtc/base/
httpbase
.h"
229
//
HttpBase
::DocumentStream
242
class
HttpBase
::DocumentStream : public StreamInterface {
244
DocumentStream(
HttpBase
* base) : base_(base), error_(HE_DEFAULT) { }
293
// adapter from the
HttpBase
, and further calls to read will either return
297
HttpBase
* base = Disconnect(http_error);
324
HttpBase
* base = Disconnect(HE_NONE);
344
HttpBase
* Disconnect(HttpError error) {
347
HttpBase
* base = base_;
355
HttpBase
* base_
[
all
...]
httpbase.h
82
//
HttpBase
- Provides a state machine for implementing HTTP-based components.
83
// Attach
HttpBase
to a StreamInterface which represents a bidirectional HTTP
85
// side of an HTTP transaction. By default,
HttpBase
operates as an I/O pump,
91
class
HttpBase
96
HttpBase
();
97
~
HttpBase
() override;
114
// Obtaining this stream puts
HttpBase
into stream mode until the stream
115
// is closed.
HttpBase
can only expose one open stream interface at a time.
Completed in 114 milliseconds