OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:control_frame
(Results
1 - 2
of
2
) sorted by null
/external/chromium/net/spdy/
spdy_framer.cc
178
SpdyControlFrame
control_frame
(frame->data(), false);
179
uint32 type =
control_frame
.type();
522
const SpdyControlFrame&
control_frame
=
local
524
return
control_frame
.type() == SYN_STREAM ||
525
control_frame
.type() == SYN_REPLY;
727
SpdyControlFrame
control_frame
(current_frame_buffer_, false);
728
visitor_->OnControl(&
control_frame
);
731
if (
control_frame
.type() == SYN_REPLY &&
732
control_frame
.flags() & CONTROL_FLAG_FIN) {
734
&
control_frame
)->stream_id()
1158
const SpdyControlFrame&
control_frame
=
local
[
all
...]
spdy_framer_test.cc
259
scoped_ptr<SpdyFrame>
control_frame
(frame.take());
262
EXPECT_TRUE(framer.ParseHeaderBlock(
control_frame
.get(), &new_headers));
328
scoped_ptr<SpdyFrame>
control_frame
(frame.take());
332
EXPECT_FALSE(framer.ParseHeaderBlock(
control_frame
.get(), &new_headers));
354
scoped_ptr<SpdyFrame>
control_frame
(frame.take());
357
EXPECT_TRUE(framer.ParseHeaderBlock(
control_frame
.get(), &new_headers));
631
SpdyControlFrame*
control_frame
;
local
638
control_frame
= reinterpret_cast<SpdyControlFrame*>(decompressed.get());
639
EXPECT_EQ(SYN_STREAM,
control_frame
->type());
641
control_frame
, &decompressed_headers))
[
all
...]
Completed in 220 milliseconds