Searched refs:HttpHeader (Results 1 – 4 of 4) sorted by relevance
/external/webrtc/webrtc/base/ |
D | httpcommon.h | 83 enum HttpHeader { enum 132 const char* ToString(HttpHeader header); 133 bool FromString(HttpHeader& header, const std::string& str); 153 bool HttpHeaderIsEndToEnd(HttpHeader header); 154 bool HttpHeaderIsCollapsible(HttpHeader header); 344 inline void changeHeader(HttpHeader header, const std::string& value, in changeHeader() 348 inline void addHeader(HttpHeader header, const std::string& value, 352 inline void setHeader(HttpHeader header, const std::string& value, 356 inline void clearHeader(HttpHeader header) { in clearHeader() 359 inline bool hasHeader(HttpHeader header, std::string* value) const { in hasHeader() [all …]
|
D | httpcommon.cc | 127 ENUM(HttpHeader, kHttpHeaders); 145 const char* ToString(HttpHeader header) { in ToString() 146 return Enum<HttpHeader>::Name(header); in ToString() 149 bool FromString(HttpHeader& header, const std::string& str) { in FromString() 150 return Enum<HttpHeader>::Parse(header, str); in FromString() 172 bool HttpHeaderIsEndToEnd(HttpHeader header) { in HttpHeaderIsEndToEnd() 189 bool HttpHeaderIsCollapsible(HttpHeader header) { in HttpHeaderIsCollapsible() 433 HttpHeader header; in changeHeader()
|
D | httpbase.cc | 31 bool MatchHeader(const char* str, size_t len, HttpHeader header) { in MatchHeader()
|
D | httpclient.cc | 201 HttpHeader header; in HttpWriteCacheHeaders()
|