HomeSort by relevance Sort by last modified time
    Searched refs:spdy (Results 51 - 62 of 62) sorted by null

1 23

  /external/chromium/net/http/
http_network_transaction_unittest.cc 44 #include "net/spdy/spdy_framer.h"
45 #include "net/spdy/spdy_session.h"
46 #include "net/spdy/spdy_session_pool.h"
47 #include "net/spdy/spdy_test_util.h"
122 spdy::SpdyFramer::set_enable_compression_default(false);
128 spdy::SpdyFramer::set_enable_compression_default(true);
332 // This is the expected return from a current server advertising SPDY.
334 "Alternate-Protocol: 443:npn-spdy/2\r\n\r\n";
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/
background.js 37 var kSpdySessionCount = "spdy.sessions";
293 // Make sure the content can be fetched via spdy if it is enabled.
295 alert("Can not fetch current url via spdy.\n" +
308 // If last fetch was via spdy, current fetch should use spdy too. Same
  /external/okhttp/src/main/java/com/squareup/okhttp/
Connection.java 25 import com.squareup.okhttp.internal.spdy.SpdyConnection;
43 * Holds the sockets and streams of an HTTP, HTTPS, or HTTPS+SPDY connection,
61 * for both HTTP and SPDY transports.
140 boolean useNpn = route.modernTls && route.address.transports.contains("spdy/3");
159 sslSocket.setSoTimeout(0); // SPDY timeouts are set per-stream.
206 return true; // Optimistic. We can't test SPDY because its streams are in use.
264 * Returns true if this is a SPDY connection. Such connections can be used
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyWriter.java 17 package com.squareup.okhttp.internal.spdy;
29 /** Write spdy/3 frames. */
SpdyReader.java 17 package com.squareup.okhttp.internal.spdy;
33 /** Read spdy/3 frames. */
SpdyConnection.java 17 package com.squareup.okhttp.internal.spdy;
41 * for SPDY. This is motivated by exception transparency: an IOException that
117 new Thread(new Reader(), "Spdy Reader " + hostName).start();
203 executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
218 executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
253 executor.submit(new NamedRunnable("OkHttp SPDY Writer %s ping %d", hostName, streamId) {
469 executor.submit(new NamedRunnable("OkHttp SPDY Callback %s stream %d", hostName, streamId) {
SpdyStream.java 17 package com.squareup.okhttp.internal.spdy;
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/
MockSpdyPeer.java 17 package com.squareup.okhttp.internal.spdy;
HttpOverSpdyTest.java 16 package com.squareup.okhttp.internal.spdy;
57 /** Test how SPDY interacts with HTTP features. */
  /external/chromium_org/net/websockets/
websocket_job_test.cc 28 #include "net/spdy/spdy_session.h"
29 #include "net/spdy/spdy_websocket_test_util.h"
434 void TestConnectBySpdy(SpdyOption spdy, ThrottlingOption throttling);
851 SpdyOption spdy, ThrottlingOption throttling) {
853 // SocketStream in the situation we have SPDY session to the server. If
855 // If you enabled spdy, you should specify |spdy| as |SPDY_ON|. Expected
    [all...]
  /external/chromium/net/spdy/
spdy_protocol.h 5 // This file contains some protocol structures for use with Spdy.
16 #include "net/spdy/spdy_bitmasks.h"
126 namespace spdy { namespace
128 // This implementation of Spdy is version 2; It's like version 1, with some
132 // Initial window size for a Spdy stream
135 // Maximum window size for a Spdy stream
138 // HTTP-over-SPDY header constants
151 // Types of Spdy Control Frames.
219 // A SPDY stream id is a 31 bit entity.
222 // A SPDY priority is a number between 0 and 3 (inclusive)
    [all...]
spdy_framer.cc 9 #include "net/spdy/spdy_framer.h"
16 #include "net/spdy/spdy_frame_builder.h"
17 #include "net/spdy/spdy_bitmasks.h"
28 // https://groups.google.com/group/spdy-dev/browse_thread/thread/dfaf498542fac792
38 // Adler ID for the SPDY header compressor dictionary.
43 namespace spdy { namespace
738 DCHECK_LE(delta_window_size, spdy::kSpdyStreamMaximumWindowSize);
929 "Unexpectedly large frame. Spdy session is likely corrupt.";
    [all...]

Completed in 989 milliseconds

1 23