/external/chromium_org/net/spdy/ |
spdy_http_utils_unittest.cc | 15 EXPECT_EQ(0, ConvertRequestPriorityToSpdyPriority(HIGHEST, SPDY2)); 16 EXPECT_EQ(1, ConvertRequestPriorityToSpdyPriority(MEDIUM, SPDY2)); 17 EXPECT_EQ(2, ConvertRequestPriorityToSpdyPriority(LOW, SPDY2)); 18 EXPECT_EQ(2, ConvertRequestPriorityToSpdyPriority(LOWEST, SPDY2)); 19 EXPECT_EQ(3, ConvertRequestPriorityToSpdyPriority(IDLE, SPDY2)); 31 EXPECT_EQ(HIGHEST, ConvertSpdyPriorityToRequestPriority(0, SPDY2)); 32 EXPECT_EQ(MEDIUM, ConvertSpdyPriorityToRequestPriority(1, SPDY2)); 33 EXPECT_EQ(LOW, ConvertSpdyPriorityToRequestPriority(2, SPDY2)); 34 EXPECT_EQ(IDLE, ConvertSpdyPriorityToRequestPriority(3, SPDY2)); 38 EXPECT_EQ(IDLE, ConvertSpdyPriorityToRequestPriority(i, SPDY2)); [all...] |
spdy_protocol_test.cc | 18 SPDY2 = 2, 40 ::testing::Values(SPDY2, SPDY3)); 65 ::testing::Values(SPDY2, SPDY3));
|
spdy_frame_builder_test.cc | 39 ::testing::Values(SPDY2, SPDY3, SPDY4));
|
spdy_websocket_test_util.cc | 75 ConvertRequestPriorityToSpdyPriority(request_priority, SPDY2), 100 ConvertRequestPriorityToSpdyPriority(request_priority, SPDY2),
|
spdy_http_utils.cc | 136 if (protocol_version == SPDY2) { 154 SpdyPriority idle_cutoff = (protocol_version == SPDY2) ? 3 : 5; 163 if (pushed && protocol_version == SPDY2) {
|
buffered_spdy_framer.cc | 14 return SPDY2; 28 return SPDY2;
|
spdy_framer.h | 634 if (spdy_version_ == SPDY2) {
|
spdy_protocol.h | 34 SPDY2 = 2, 35 SPDY_MIN_VERSION = SPDY2,
|
spdy_framer.cc | 164 case SPDY2: [all...] |
spdy_framer_test.cc | 645 bool IsSpdy2() { return spdy_version_ == SPDY2; } 657 ::testing::Values(SPDY2, SPDY3, SPDY4)); [all...] |
/external/chromium_org/net/tools/flip_server/ |
spdy_interface_test.cc | 204 Values(SPDY2, SPDY3, SPDY4)); 205 INSTANTIATE_TEST_CASE_P(SpdySMServerTest, SpdySMServerTest, Values(SPDY2)); 217 if (GetParam() != SPDY2) { 218 // This test case is for SPDY2. 251 if (GetParam() == SPDY2) { 252 // This test case is not for SPDY2. 286 if (GetParam() != SPDY2) { 287 // This test case is for SPDY2. 319 if (GetParam() == SPDY2) { 320 // This test case is not for SPDY2 [all...] |
spdy_interface.cc | 141 if (spdy_version() == SPDY2) { 326 buffered_spdy_framer_ = new BufferedSpdyFramer(SPDY2, true); 444 if (spdy_version() == SPDY2) { 485 if (spdy_version() == SPDY2) {
|
sm_connection.cc | 323 *version_negotiated = SPDY2;
|