HomeSort by relevance Sort by last modified time
    Searched full:syn_reply (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/net/quic/
quic_headers_stream.cc 19 // A SpdyFramer visitor which passed SYN_STREAM and SYN_REPLY frames to
75 // fin = true after processing a SYN_STREAM or SYN_REPLY frame
190 SpdySynReplyIR syn_reply(stream_id);
191 syn_reply.set_name_value_block(headers);
192 syn_reply.set_fin(fin);
193 frame.reset(spdy_framer_.SerializeFrame(syn_reply));
231 "SPDY SYN_REPLY frame received at the server");
quic_headers_stream.h 17 // Headers in QUIC are sent as SPDY SYN_STREAM or SYN_REPLY frames
26 // Writes |headers| for |stream_id| in a SYN_STREAM or SYN_REPLY
50 // Called when a SYN_REPLY frame been received.
quic_headers_stream_test.cc 121 WriteHeadersAndCheckData(stream_id, fin, 0, SYN_REPLY);
227 SpdySynReplyIR syn_reply(stream_id);
228 syn_reply.set_name_value_block(headers_);
229 syn_reply.set_fin(fin);
230 frame.reset(framer_.SerializeSynReply(syn_reply));
  /external/chromium_org/net/spdy/
spdy_header_block.h 17 // SYN_STREAM or SYN_REPLY frame.
spdy_websocket_test_util.cc 61 SYN_REPLY,
95 // SPDY SYN_REPLY control frame header.
97 SYN_REPLY,
110 // Construct SPDY SYN_REPLY control frame.
buffered_spdy_framer.cc 96 control_frame_fields_->type = SYN_REPLY;
132 case SYN_REPLY:
289 SpdySynReplyIR syn_reply(stream_id);
290 syn_reply.set_fin(flags & CONTROL_FLAG_FIN);
292 syn_reply.set_name_value_block(*headers);
293 return spdy_framer_.SerializeSynReply(syn_reply);
spdy_websocket_stream.h 25 // SYN_STREAM/SYN_REPLY. WebSocket frames are encapsulated as SPDY data frames.
42 // SPDY's SYN_STREAM, SYN_REPLY, or HEADERS frames are
spdy_test_util_common.cc 774 case SYN_REPLY:
    [all...]
spdy_protocol_test.cc 47 EXPECT_EQ(2, SYN_REPLY);
spdy_websocket_test_util.h 37 // Constructs a standard SPDY SYN_REPLY packet to match the
spdy_test_util_common.h 323 // Construct a SPDY frame. If it is a SYN_STREAM or SYN_REPLY frame (as
330 // Construct a SPDY frame. If it is a SYN_STREAM or SYN_REPLY frame (as
468 // Constructs a standard SPDY SYN_REPLY frame to match the SPDY GET.
476 // Constructs a standard SPDY SYN_REPLY frame to match the SPDY GET.
482 // Constructs a standard SPDY SYN_REPLY frame with an Internal Server
487 // Constructs a standard SPDY SYN_REPLY frame with the specified status code.
512 // Constructs a standard SPDY SYN_REPLY frame to match the SPDY POST.
spdy_write_queue_unittest.cc 121 MEDIUM, SYN_REPLY, producer_medium.Pass(), stream_medium->GetWeakPtr());
135 EXPECT_EQ(SYN_REPLY, frame_type);
162 write_queue.Enqueue(DEFAULT_PRIORITY, SYN_REPLY, producer2.Pass(),
176 EXPECT_EQ(SYN_REPLY, frame_type);
spdy_framer.h 54 // SYN_STREAM, or SYN_REPLY frame.
142 // Control frames that contain SPDY header blocks (SYN_STREAM, SYN_REPLY,
207 // Called when a SYN_REPLY frame is received.
427 // Serialize a SYN_REPLY SpdyFrame.
428 SpdySerializedFrame* SerializeSynReply(const SpdySynReplyIR& syn_reply);
448 // for sending additional headers outside of a SYN_STREAM/SYN_REPLY.
777 // type SYN_STREAM or SYN_REPLY.
    [all...]
spdy_framer.cc 197 // Size, in bytes, of a SYN_REPLY frame not including the variable-length
466 case SYN_REPLY:
467 return "SYN_REPLY";
526 // (SYN_STREAM, SYN_REPLY, HEADERS, PUSH_PROMISE, CONTINUATION)
854 case SYN_REPLY:
    [all...]
spdy_network_transaction_unittest.cc 672 // Verify the SYN_REPLY.
3390 const SpdyHeaderInfo* syn_reply; member in struct:net::SynReplyTests
3634 const SpdyFrame* syn_reply; member in struct:net::SynReplyTests
    [all...]
spdy_framer_test.cc 338 InitHeaderStreaming(SYN_REPLY, stream_id);
691 // Test that if we receive a SYN_REPLY with stream ID zero, we signal an error
698 SpdySynReplyIR syn_reply(0);
699 syn_reply.SetHeader("alpha", "beta");
700 scoped_ptr<SpdySerializedFrame> frame(framer.SerializeSynReply(syn_reply));
    [all...]
spdy_proxy_client_socket.cc 110 // a SYN_REPLY frame. OK will be returned if the status is 200.
388 // Wait for SYN_REPLY frame from the server
395 // we are notified by a callback when the SYN_REPLY frame arrives
spdy_http_stream.h 129 // when a SYN_REPLY comes in for the stream.
spdy_proxy_client_socket.h 43 // CONNECT frame for |endpoint|. After the SYN_REPLY is received,
spdy_protocol.cc 79 return SYN_REPLY;
137 case SYN_REPLY:
buffered_spdy_framer.h 45 // Called after all the header data for SYN_REPLY control frame is received.
  /external/chromium_org/net/quic/test_tools/
quic_test_packet_maker.cc 190 SpdySynReplyIR syn_reply(stream_id);
191 syn_reply.set_name_value_block(headers);
192 syn_reply.set_fin(fin);
194 spdy_response_framer_.SerializeSynReply(syn_reply));
  /external/chromium_org/net/tools/flip_server/
http_interface_test.cc 269 std::string syn_reply = local
281 ASSERT_EQ(syn_reply, StringPiece(df->data, df->size));
290 std::string syn_reply = local
312 ASSERT_EQ(syn_reply, StringPiece(df->data, df->size));
spdy_interface.h 77 // Called after all the header data for SYN_REPLY control frame is received.
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
FrameReader.java 37 * SYN_REPLY, and HTTP/2 HEADERS and PUSH_PROMISE.

Completed in 475 milliseconds

1 2