HomeSort by relevance Sort by last modified time
    Searched defs:HttpHeader (Results 1 - 2 of 2) sorted by null

  /external/chromium/third_party/libjingle/source/talk/base/
httpcommon.h 100 enum HttpHeader {
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 header)
    [all...]
  /external/qemu/proxy/
proxy_http_rewriter.c 65 /* HttpHeader is a simple structure used to hold a (key,value)
68 typedef struct HttpHeader {
69 struct HttpHeader* next;
72 } 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* last
    [all...]

Completed in 58 milliseconds