OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:new_headers
(Results
1 - 5
of
5
) sorted by null
/external/chromium/net/spdy/
spdy_framer_test.cc
242
SpdyHeaderBlock
new_headers
;
local
243
EXPECT_TRUE(framer.ParseHeaderBlock(frame.get(), &
new_headers
));
245
EXPECT_EQ(headers.size(),
new_headers
.size());
246
EXPECT_EQ(headers["alpha"],
new_headers
["alpha"]);
247
EXPECT_EQ(headers["gamma"],
new_headers
["gamma"]);
269
SpdyHeaderBlock
new_headers
;
local
273
EXPECT_TRUE(framer.ParseHeaderBlock(control_frame.get(), &
new_headers
));
310
SpdyHeaderBlock
new_headers
;
local
315
EXPECT_FALSE(framer.ParseHeaderBlock(syn_frame1.get(), &
new_headers
));
316
EXPECT_FALSE(framer.ParseHeaderBlock(syn_frame2.get(), &
new_headers
));
338
SpdyHeaderBlock
new_headers
;
local
364
SpdyHeaderBlock
new_headers
;
local
1390
SpdyHeaderBlock
new_headers
;
local
[
all
...]
/external/chromium/net/http/
http_response_headers_unittest.cc
821
const char*
new_headers
;
member in struct:__anon5062
876
std::string
new_headers
(tests[i].
new_headers
);
877
HeadersToRaw(&
new_headers
);
879
new net::HttpResponseHeaders(
new_headers
));
[
all
...]
http_response_headers.h
64
void Update(const HttpResponseHeaders&
new_headers
);
http_response_headers.cc
217
void HttpResponseHeaders::Update(const HttpResponseHeaders&
new_headers
) {
218
DCHECK(
new_headers
.response_code() == 304 ||
219
new_headers
.response_code() == 206);
230
// Figure out which headers we want to take from
new_headers
:
231
for (size_t i = 0; i <
new_headers
.parsed_.size(); ++i) {
232
const HeaderList& new_parsed =
new_headers
.parsed_;
[
all
...]
/bootable/recovery/
recovery.cpp
455
const char**
new_headers
= (const char**)malloc((count+1) * sizeof(char*));
local
456
const char** h =
new_headers
;
461
return
new_headers
;
[
all
...]
Completed in 114 milliseconds