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

  /external/chromium/third_party/libjingle/source/talk/base/
httpbase.h 106 // moving data from the HTTP stream to the HttpData object and vice versa.
125 void send(HttpData* data);
126 void recv(HttpData* data);
145 // pushing it through the HttpParser, and then populating the HttpData object
148 // This data is then written to the HttpData::document. As a result, data
186 HttpData* data_;
194 HttpData::const_iterator header_;
httpcommon.h 163 struct HttpData;
164 bool HttpShouldKeepAlive(const HttpData& data);
292 // HttpData
295 struct HttpData {
303 HttpData() : version(HVER_1_1) { }
388 virtual ~HttpData() { }
390 void copy(const HttpData& src);
396 struct HttpRequestData : public HttpData {
412 struct HttpResponseData : public HttpData {
httpcommon.cc 215 bool HttpShouldKeepAlive(const HttpData& data) {
417 // HttpData
421 HttpData::clear(bool release_document) {
431 HttpData::copy(const HttpData& src) {
436 HttpData::changeHeader(const std::string& name, const std::string& value,
461 size_t HttpData::clearHeader(const std::string& name) {
465 HttpData::iterator HttpData::clearHeader(iterator header) {
472 HttpData::hasHeader(const std::string& name, std::string* value) const
    [all...]
httpclient.cc 214 for (HttpData::const_iterator it = response->begin();
243 HttpData::HeaderCombine combine) {
554 HttpData::HeaderCombine combine =
555 override ? HttpData::HC_REPLACE : HttpData::HC_AUTO;
751 HttpData::const_iterator begin = response().begin(HH_PROXY_AUTHENTICATE);
752 HttpData::const_iterator end = response().end(HH_PROXY_AUTHENTICATE);
753 for (HttpData::const_iterator it = begin; it != end; ++it) {
httpclient.h 54 HttpData::HeaderCombine combine);
httpbase.cc 282 // member of HttpData. In this case, we want this data to be written
415 HttpBase::send(HttpData* data) {
452 HttpBase::recv(HttpData* data) {

Completed in 138 milliseconds