Searched defs:HttpHeader (Results 1 - 2 of 2) sorted by relevance

/external/qemu/proxy/
H A Dproxy_http_rewriter.c65 /* HttpHeader is a simple structure used to hold a (key,value)
68 typedef struct HttpHeader { struct
69 struct HttpHeader* next;
72 } HttpHeader; typedef in typeref:struct:HttpHeader
75 http_header_free( HttpHeader* h )
84 http_header_append( HttpHeader* h, const char* value )
96 static HttpHeader*
100 HttpHeader* h = malloc(sizeof(*h) + len+1);
117 HttpHeader* first;
118 HttpHeader* las
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dhttpcommon.h100 enum HttpHeader { enum in namespace:talk_base
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);
349 // Convenience methods using HttpHeader
350 inline void changeHeader(HttpHeader header, const std::string& value,
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 heade
[all...]

Completed in 70 milliseconds