OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:HttpHeader
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome_frame/test/
test_with_web_server.h
37
static CFInvocation
HttpHeader
() { return CFInvocation(HTTP_HEADER); }
/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/chromium_org/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 226 milliseconds