Home
last modified time | relevance | path

Searched refs:HttpHeader (Results 1 – 5 of 5) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/base/
Dhttpcommon.h100 enum HttpHeader { enum
149 const char* ToString(HttpHeader header);
150 bool FromString(HttpHeader& header, const std::string& str);
160 bool HttpHeaderIsEndToEnd(HttpHeader header);
161 bool HttpHeaderIsCollapsible(HttpHeader header);
350 inline void changeHeader(HttpHeader header, const std::string& value, in changeHeader()
354 inline void addHeader(HttpHeader header, const std::string& value,
358 inline void setHeader(HttpHeader header, const std::string& value,
362 inline void clearHeader(HttpHeader header) { in clearHeader()
365 inline bool hasHeader(HttpHeader header, std::string* value) const { in hasHeader()
[all …]
Dhttpcommon.cc142 ENUM(HttpHeader, kHttpHeaders);
160 const char* ToString(HttpHeader header) { in ToString()
161 return Enum<HttpHeader>::Name(header); in ToString()
164 bool FromString(HttpHeader& header, const std::string& str) { in FromString()
165 return Enum<HttpHeader>::Parse(header, str); in FromString()
187 bool HttpHeaderIsEndToEnd(HttpHeader header) { in HttpHeaderIsEndToEnd()
204 bool HttpHeaderIsCollapsible(HttpHeader header) { in HttpHeaderIsCollapsible()
439 HttpHeader header; in changeHeader()
Dhttpbase.cc51 bool MatchHeader(const char* str, size_t len, HttpHeader header) { in MatchHeader()
Dhttpclient.cc216 HttpHeader header; in HttpWriteCacheHeaders()
/external/qemu/proxy/
Dproxy_http_rewriter.c68 typedef struct HttpHeader { struct
69 struct HttpHeader* next; argument
72 } HttpHeader; argument
75 http_header_free( HttpHeader* h ) in http_header_free()
84 http_header_append( HttpHeader* h, const char* value ) in http_header_append()
96 static HttpHeader*
100 HttpHeader* h = malloc(sizeof(*h) + len+1); in http_header_alloc()
117 HttpHeader* first;
118 HttpHeader* last;
131 HttpHeader* h = l->first; in http_header_list_done()
[all …]