OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:control_frame
(Results
1 - 2
of
2
) sorted by null
/external/chromium/net/spdy/
spdy_framer_test.cc
270
scoped_ptr<SpdyFrame>
control_frame
(frame.take());
273
EXPECT_TRUE(framer.ParseHeaderBlock(
control_frame
.get(), &new_headers));
339
scoped_ptr<SpdyFrame>
control_frame
(frame.take());
343
EXPECT_FALSE(framer.ParseHeaderBlock(
control_frame
.get(), &new_headers));
365
scoped_ptr<SpdyFrame>
control_frame
(frame.take());
368
EXPECT_TRUE(framer.ParseHeaderBlock(
control_frame
.get(), &new_headers));
642
SpdyControlFrame*
control_frame
;
local
649
control_frame
= reinterpret_cast<SpdyControlFrame*>(decompressed.get());
650
EXPECT_EQ(SYN_STREAM,
control_frame
->type());
652
control_frame
, &decompressed_headers))
[
all
...]
spdy_framer.cc
315
SpdyControlFrame
control_frame
(frame->data(), false);
316
uint32 type =
control_frame
.type();
400
SpdyControlFrame
control_frame
(current_frame_buffer_, false);
401
DCHECK(
control_frame
.type() == SYN_STREAM ||
402
control_frame
.type() == SYN_REPLY ||
403
control_frame
.type() == HEADERS);
404
visitor_->OnControl(&
control_frame
);
419
SpdyControlFrame
control_frame
(current_frame_buffer_, false);
421
DCHECK(
control_frame
.type() == SYN_STREAM ||
422
control_frame
.type() == SYN_REPLY |
833
const SpdyControlFrame&
control_frame
=
local
1664
const SpdyControlFrame&
control_frame
=
local
[
all
...]
Completed in 50 milliseconds