/external/chromium_org/net/spdy/ |
spdy_http_utils_unittest.cc | 23 EXPECT_EQ(0, ConvertRequestPriorityToSpdyPriority(HIGHEST, SPDY3)); 24 EXPECT_EQ(1, ConvertRequestPriorityToSpdyPriority(MEDIUM, SPDY3)); 25 EXPECT_EQ(2, ConvertRequestPriorityToSpdyPriority(LOW, SPDY3)); 26 EXPECT_EQ(3, ConvertRequestPriorityToSpdyPriority(LOWEST, SPDY3)); 27 EXPECT_EQ(4, ConvertRequestPriorityToSpdyPriority(IDLE, SPDY3)); 43 EXPECT_EQ(HIGHEST, ConvertSpdyPriorityToRequestPriority(0, SPDY3)); 44 EXPECT_EQ(MEDIUM, ConvertSpdyPriorityToRequestPriority(1, SPDY3)); 45 EXPECT_EQ(LOW, ConvertSpdyPriorityToRequestPriority(2, SPDY3)); 46 EXPECT_EQ(LOWEST, ConvertSpdyPriorityToRequestPriority(3, SPDY3)); 47 EXPECT_EQ(IDLE, ConvertSpdyPriorityToRequestPriority(4, SPDY3)); [all...] |
spdy_protocol_test.cc | 19 SPDY3 = 3, 40 ::testing::Values(SPDY2, SPDY3)); 65 ::testing::Values(SPDY2, SPDY3));
|
spdy_http_utils.cc | 26 std::string status_key = (protocol_version >= SPDY3) ? ":status" : "status"; 28 (protocol_version >= SPDY3) ? ":version" : "version"; 107 if (protocol_version < SPDY3) { 172 const char* scheme_header = protocol_version >= SPDY3 ? ":scheme" : "scheme"; 173 const char* host_header = protocol_version >= SPDY3 ? ":host" : "host"; 174 const char* path_header = protocol_version >= SPDY3 ? ":path" : "url";
|
spdy_frame_builder_test.cc | 39 ::testing::Values(SPDY2, SPDY3, SPDY4));
|
buffered_spdy_framer.cc | 17 return SPDY3;
|
spdy_framer.h | 631 // The theoretical maximum for SPDY3 and earlier is (2^24 - 1) + 637 if (spdy_version_ == SPDY3) {
|
spdy_protocol.h | 36 SPDY3 = 3,
|
spdy_test_util_common.cc | 843 // Remove leading colon from "special" headers (for SPDY3 and 845 if (spdy_version() >= SPDY3 && key[0] == ':') [all...] |
spdy_framer.cc | 165 case SPDY3: [all...] |
spdy_framer_test.cc | 646 bool IsSpdy3() { return spdy_version_ == SPDY3; } 657 ::testing::Values(SPDY2, SPDY3, SPDY4)); [all...] |
spdy_network_transaction_unittest.cc | 748 if (spdy_util_.spdy_version() < SPDY3) { [all...] |
spdy_session_unittest.cc | [all...] |
/external/chromium_org/net/quic/ |
spdy_utils.cc | 18 int length = SpdyFramer::GetSerializedLength(SPDY3, &headers); 20 SpdyFramer::WriteHeaderBlock(&builder, SPDY3, &headers);
|
quic_spdy_compressor.cc | 15 : spdy_framer_(SPDY3),
|
quic_http_stream.cc | 110 &request_headers_, SPDY3, /*direct=*/true); 514 SpdyFramer framer(SPDY3); 536 if (!SpdyHeadersToHttpResponse(headers, SPDY3, response_info_)) {
|
quic_spdy_decompressor.cc | 78 : spdy_framer_(SPDY3),
|
/external/chromium_org/net/tools/quic/ |
quic_spdy_client_stream.cc | 87 SpdyFramer framer(SPDY3);
|
quic_spdy_server_stream.cc | 68 SpdyFramer framer(SPDY3);
|
spdy_utils.cc | 95 // Empty header values are only allowed because this is spdy3. 160 int length = SpdyFramer::GetSerializedLength(SPDY3, &headers); 162 SpdyFramer::WriteHeaderBlock(&builder, SPDY3, &headers);
|
/external/okhttp/src/main/java/com/squareup/okhttp/ |
Connection.java | 73 private static final byte[] SPDY3 = new byte[] { 158 if (Arrays.equals(selectedProtocol, SPDY3)) {
|
/external/chromium_org/net/tools/flip_server/ |
sm_connection.cc | 307 *version_negotiated = SPDY3; 329 *version_negotiated = SPDY3;
|
spdy_interface_test.cc | 204 Values(SPDY2, SPDY3, SPDY4));
|