OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PUSH_PROMISE
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/net/spdy/
spdy_protocol_test.cc
57
EXPECT_EQ(12,
PUSH_PROMISE
);
buffered_spdy_framer.cc
142
case
PUSH_PROMISE
:
227
control_frame_fields_->type =
PUSH_PROMISE
;
spdy_protocol.cc
108
return
PUSH_PROMISE
;
168
case
PUSH_PROMISE
:
spdy_framer.cc
307
// Size, in bytes, of a
PUSH_PROMISE
frame, sans the embedded header block.
486
case
PUSH_PROMISE
:
487
return "
PUSH_PROMISE
";
526
// (SYN_STREAM, SYN_REPLY, HEADERS,
PUSH_PROMISE
, CONTINUATION)
962
case
PUSH_PROMISE
[
all
...]
spdy_protocol.h
288
PUSH_PROMISE
,
316
// Used by HEADERS,
PUSH_PROMISE
, and CONTINUATION.
362
// Whether or not server push (
PUSH_PROMISE
) is enabled.
[
all
...]
spdy_framer_test.cc
183
SpdyPushPromiseIR
push_promise
(stream_id, promised_stream_id);
184
scoped_ptr<SpdyFrame> frame(framer.SerializePushPromise(
push_promise
));
400
InitHeaderStreaming(
PUSH_PROMISE
, stream_id);
731
// Test that if we receive a
PUSH_PROMISE
with stream ID zero, we signal an
742
SpdyPushPromiseIR
push_promise
(0, 4);
743
push_promise
.SetHeader("alpha", "beta");
745
framer.SerializePushPromise(
push_promise
));
756
// Test that if we receive a
PUSH_PROMISE
with promised stream ID zero, we
767
SpdyPushPromiseIR
push_promise
(3, 0);
768
push_promise
.SetHeader("alpha", "beta")
[
all
...]
Completed in 1880 milliseconds