/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
Ping.java | 16 package com.squareup.okhttp.internal.spdy;
|
Settings.java | 16 package com.squareup.okhttp.internal.spdy; 20 * From the spdy/3 spec, the default initial window size for all streams is 150 * Returns true if this user agent should use this setting in future SPDY
|
/external/chromium/net/http/ |
http_network_layer.cc | 13 #include "net/spdy/spdy_framer.h" 14 #include "net/spdy/spdy_session.h" 15 #include "net/spdy/spdy_session_pool.h" 58 // We want an A/B experiment between SPDY enabled and SPDY disabled, 59 // but only for pages where SPDY *could have been* negotiated. To do 60 // this, we use NPN, but prevent it from negotiating SPDY. If the 61 // server negotiates HTTP, rather than SPDY, today that will only happen 62 // on servers that installed NPN (and could have done SPDY). But this is 63 // a bit of a hack, as this correlation between NPN and SPDY is no [all...] |
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
SpdyTransport.java | 19 import com.squareup.okhttp.internal.spdy.SpdyConnection; 20 import com.squareup.okhttp.internal.spdy.SpdyStream; 75 headers.setTransport("spdy/3");
|
/external/chromium/net/spdy/ |
spdy_http_stream.cc | 5 #include "net/spdy/spdy_http_stream.h" 21 #include "net/spdy/spdy_http_utils.h" 22 #include "net/spdy/spdy_session.h" 149 // Note: the not_reusable flag has no meaning for SPDY streams. 177 // SPDY doesn't need an indicator here. 181 // SPDY streams aren't considered reusable. 199 linked_ptr<spdy::SpdyHeaderBlock> headers(new spdy::SpdyHeaderBlock); 290 eof ? spdy::DATA_FLAG_FIN : spdy::DATA_FLAG_NONE) [all...] |
spdy_frame_builder.h | 13 #include "net/spdy/spdy_protocol.h" 15 namespace spdy { namespace 18 // into Spdy frames. 157 } // namespace spdy
|
spdy_framer_test.cc | 9 #include "net/spdy/spdy_framer.h" 10 #include "net/spdy/spdy_protocol.h" 11 #include "net/spdy/spdy_frame_builder.h" 14 namespace spdy { namespace 192 } // namespace spdy 194 using spdy::SpdyControlFlags; 195 using spdy::SpdyControlFrame; 196 using spdy::SpdyDataFrame; 197 using spdy::SpdyFrame; 198 using spdy::SpdyFrameBuilder 211 namespace spdy { namespace [all...] |
spdy_proxy_client_socket.cc | 5 #include "net/spdy/spdy_proxy_client_socket.h" 20 #include "net/spdy/spdy_http_utils.h" 210 int rv = spdy_stream_->WriteStreamData(buf, buf_len, spdy::DATA_FLAG_NONE); 218 // Since a SPDY Data frame can only include kMaxSpdyFrameChunkSize bytes 224 int rv = spdy_stream_->WriteStreamData(iobuf, len, spdy::DATA_FLAG_NONE); 347 linked_ptr<spdy::SpdyHeaderBlock> headers(new spdy::SpdyHeaderBlock()); 431 const spdy::SpdyHeaderBlock& response,
|
spdy_http_stream.h | 19 #include "net/spdy/spdy_protocol.h" 20 #include "net/spdy/spdy_session.h" 21 #include "net/spdy/spdy_stream.h" 76 virtual int OnResponseReceived(const spdy::SpdyHeaderBlock& response, 131 // Is this spdy stream direct to the origin server (or to a proxy).
|
spdy_proxy_client_socket.h | 22 #include "net/spdy/spdy_http_stream.h" 23 #include "net/spdy/spdy_protocol.h" 24 #include "net/spdy/spdy_session.h" 25 #include "net/spdy/spdy_stream.h" 98 virtual int OnResponseReceived(const spdy::SpdyHeaderBlock& response, 134 // Pointer to the SPDY Stream that this sits on top of.
|
spdy_framer.h | 18 #include "net/spdy/spdy_protocol.h" 33 namespace spdy { namespace 48 typedef std::pair<spdy::SettingsFlagsAndId, uint32> SpdySetting; 96 // SPDY states. 113 // SPDY error codes. 170 // Given a buffer containing a decompressed header block in SPDY 234 // frame is used to implement per stream flow control in SPDY. 255 // We want spdy to compress headers across the entire session. As long as 299 // SPDY will by default validate the length of incoming control 460 // SPDY header compressors [all...] |
spdy_frame_builder.cc | 7 #include "net/spdy/spdy_frame_builder.h" 8 #include "net/spdy/spdy_protocol.h" 10 namespace spdy { namespace 180 } // namespace spdy
|
/external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/ |
SpdyConnectionTest.java | 17 package com.squareup.okhttp.internal.spdy; 32 import static com.squareup.okhttp.internal.spdy.Settings.PERSIST_VALUE; 33 import static com.squareup.okhttp.internal.spdy.SpdyConnection.FLAG_FIN; 34 import static com.squareup.okhttp.internal.spdy.SpdyConnection.FLAG_UNIDIRECTIONAL; 35 import static com.squareup.okhttp.internal.spdy.SpdyConnection.GOAWAY_INTERNAL_ERROR; 36 import static com.squareup.okhttp.internal.spdy.SpdyConnection.GOAWAY_PROTOCOL_ERROR; 37 import static com.squareup.okhttp.internal.spdy.SpdyConnection.TYPE_DATA; 38 import static com.squareup.okhttp.internal.spdy.SpdyConnection.TYPE_GOAWAY; 39 import static com.squareup.okhttp.internal.spdy.SpdyConnection.TYPE_NOOP; 40 import static com.squareup.okhttp.internal.spdy.SpdyConnection.TYPE_PING [all...] |
SpdyServer.java | 17 package com.squareup.okhttp.internal.spdy; 37 /** A basic SPDY server that serves the contents of a local directory. */ 73 return Arrays.asList("spdy/3");
|
/external/chromium_org/net/ |
net.target.darwin-arm.mk | 402 net/spdy/buffered_spdy_framer.cc \ 403 net/spdy/spdy_buffer.cc \ 404 net/spdy/spdy_buffer_producer.cc \ 405 net/spdy/spdy_frame_builder.cc \ 406 net/spdy/spdy_frame_reader.cc \ 407 net/spdy/spdy_framer.cc \ 408 net/spdy/spdy_header_block.cc \ 409 net/spdy/spdy_http_stream.cc \ 410 net/spdy/spdy_http_utils.cc \ 411 net/spdy/spdy_protocol.cc [all...] |
net.target.darwin-mips.mk | 402 net/spdy/buffered_spdy_framer.cc \ 403 net/spdy/spdy_buffer.cc \ 404 net/spdy/spdy_buffer_producer.cc \ 405 net/spdy/spdy_frame_builder.cc \ 406 net/spdy/spdy_frame_reader.cc \ 407 net/spdy/spdy_framer.cc \ 408 net/spdy/spdy_header_block.cc \ 409 net/spdy/spdy_http_stream.cc \ 410 net/spdy/spdy_http_utils.cc \ 411 net/spdy/spdy_protocol.cc [all...] |
net.target.darwin-x86.mk | 402 net/spdy/buffered_spdy_framer.cc \ 403 net/spdy/spdy_buffer.cc \ 404 net/spdy/spdy_buffer_producer.cc \ 405 net/spdy/spdy_frame_builder.cc \ 406 net/spdy/spdy_frame_reader.cc \ 407 net/spdy/spdy_framer.cc \ 408 net/spdy/spdy_header_block.cc \ 409 net/spdy/spdy_http_stream.cc \ 410 net/spdy/spdy_http_utils.cc \ 411 net/spdy/spdy_protocol.cc [all...] |
net.target.linux-arm.mk | 402 net/spdy/buffered_spdy_framer.cc \ 403 net/spdy/spdy_buffer.cc \ 404 net/spdy/spdy_buffer_producer.cc \ 405 net/spdy/spdy_frame_builder.cc \ 406 net/spdy/spdy_frame_reader.cc \ 407 net/spdy/spdy_framer.cc \ 408 net/spdy/spdy_header_block.cc \ 409 net/spdy/spdy_http_stream.cc \ 410 net/spdy/spdy_http_utils.cc \ 411 net/spdy/spdy_protocol.cc [all...] |
net.target.linux-mips.mk | 402 net/spdy/buffered_spdy_framer.cc \ 403 net/spdy/spdy_buffer.cc \ 404 net/spdy/spdy_buffer_producer.cc \ 405 net/spdy/spdy_frame_builder.cc \ 406 net/spdy/spdy_frame_reader.cc \ 407 net/spdy/spdy_framer.cc \ 408 net/spdy/spdy_header_block.cc \ 409 net/spdy/spdy_http_stream.cc \ 410 net/spdy/spdy_http_utils.cc \ 411 net/spdy/spdy_protocol.cc [all...] |
net.target.linux-x86.mk | 402 net/spdy/buffered_spdy_framer.cc \ 403 net/spdy/spdy_buffer.cc \ 404 net/spdy/spdy_buffer_producer.cc \ 405 net/spdy/spdy_frame_builder.cc \ 406 net/spdy/spdy_frame_reader.cc \ 407 net/spdy/spdy_framer.cc \ 408 net/spdy/spdy_header_block.cc \ 409 net/spdy/spdy_http_stream.cc \ 410 net/spdy/spdy_http_utils.cc \ 411 net/spdy/spdy_protocol.cc [all...] |
/external/okhttp/src/test/java/com/squareup/okhttp/internal/mockspdyserver/ |
MockSpdyServer.java | 24 import com.squareup.okhttp.internal.spdy.IncomingStreamHandler; 25 import com.squareup.okhttp.internal.spdy.SpdyConnection; 26 import com.squareup.okhttp.internal.spdy.SpdyStream; 51 /** A scriptable spdy/3 + HTTP server. */ 232 List<Integer> chunkSizes = Collections.emptyList(); // No chunked encoding for SPDY.
|
/external/chromium/ |
Android.mk | 314 net/spdy/spdy_framer.cc \ 315 net/spdy/spdy_frame_builder.cc \ 316 net/spdy/spdy_http_stream.cc \ 317 net/spdy/spdy_http_utils.cc \ 318 net/spdy/spdy_io_buffer.cc \ 319 net/spdy/spdy_proxy_client_socket.cc \ 320 net/spdy/spdy_session.cc \ 321 net/spdy/spdy_session_pool.cc \ 322 net/spdy/spdy_settings_storage.cc \ 323 net/spdy/spdy_stream.cc [all...] |
/external/chromium/net/websockets/ |
websocket_handshake_handler.cc | 221 const GURL& url, spdy::SpdyHeaderBlock* headers, std::string* challenge) { 251 spdy::SpdyHeaderBlock::iterator found = headers->find(name); 357 const spdy::SpdyHeaderBlock& headers, 363 for (spdy::SpdyHeaderBlock::const_iterator iter = headers.begin();
|
websocket_handshake_handler_unittest.cc | 283 spdy::SpdyHeaderBlock headers; 353 spdy::SpdyHeaderBlock headers;
|
/external/okhttp/ |
Android.mk | 23 okhttp_test_src_files := $(filter-out src/test/java/com/squareup/okhttp/internal/spdy/SpdyServer.java, $(okhttp_test_src_files))
|