OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:HttpResponseHeaders
(Results
1 - 2
of
2
) sorted by null
/external/chromium/net/http/
http_response_headers.h
26
//
HttpResponseHeaders
: parses and holds HTTP response headers.
27
class
HttpResponseHeaders
28
: public base::RefCountedThreadSafe<
HttpResponseHeaders
> {
49
//
HttpResponseHeaders
does not perform any encoding changes on the input.
51
explicit
HttpResponseHeaders
(const std::string& raw_headers);
56
HttpResponseHeaders
(const Pickle& pickle, void** pickle_iter);
63
void Update(const
HttpResponseHeaders
& new_headers);
249
friend class base::RefCountedThreadSafe<
HttpResponseHeaders
>;
257
HttpResponseHeaders
();
258
~
HttpResponseHeaders
();
[
all
...]
http_response_headers.cc
119
struct
HttpResponseHeaders
::ParsedHeader {
132
HttpResponseHeaders
::
HttpResponseHeaders
(const std::string& raw_input)
154
HttpResponseHeaders
::
HttpResponseHeaders
(const Pickle& pickle, void** iter)
161
void
HttpResponseHeaders
::Persist(Pickle* pickle, PersistOptions options) {
217
void
HttpResponseHeaders
::Update(const
HttpResponseHeaders
& new_headers) {
261
void
HttpResponseHeaders
::MergeWithHeaders(const std::string& raw_headers,
290
void
HttpResponseHeaders
::RemoveHeader(const std::string& name)
[
all
...]
Completed in 365 milliseconds