Searched refs:LOWEST (Results 1 - 25 of 28) sorted by relevance

12

/external/chromium_org/net/base/
H A Drequest_priority.cc15 case LOWEST:
16 return "LOWEST";
H A Drequest_priority.h17 LOWEST, enumerator in enum:net::RequestPriority
18 DEFAULT_PRIORITY = LOWEST,
H A Dprioritized_dispatcher_unittest.cc24 IDLE < LOWEST &&
25 LOWEST < HIGHEST &&
190 new_limits.reserved_slots[LOWEST] = 1;
279 // This leaves 2 for LOWEST or lower.
287 TestJob* job_c = AddJob('c', LOWEST); // Must wait.
/external/chromium_org/components/cronet/android/
H A Dchromium_url_request_priority_list.h11 DEFINE_REQUEST_PRIORITY(LOWEST, 1)
H A Dchromium_url_request.cc27 return net::LOWEST;
35 return net::LOWEST;
/external/chromium_org/net/quic/
H A Dquic_http_utils_test.cc16 EXPECT_EQ(3u, ConvertRequestPriorityToQuicPriority(LOWEST));
24 EXPECT_EQ(LOWEST, ConvertQuicPriorityToRequestPriority(3));
/external/chromium_org/net/spdy/
H A Dspdy_http_utils_unittest.cc18 EXPECT_EQ(2, ConvertRequestPriorityToSpdyPriority(LOWEST, SPDY2));
26 EXPECT_EQ(3, ConvertRequestPriorityToSpdyPriority(LOWEST, SPDY3));
46 EXPECT_EQ(LOWEST, ConvertSpdyPriorityToRequestPriority(3, SPDY3));
H A Dspdy_stream_unittest.cc125 kStreamUrl, 1, kPostBodyLength, LOWEST, NULL, 0));
153 SPDY_BIDIRECTIONAL_STREAM, session, url, LOWEST, BoundNetLog());
241 kStreamUrl, 1, kPostBodyLength, LOWEST, NULL, 0));
271 SPDY_BIDIRECTIONAL_STREAM, session, url, LOWEST, log.bound());
322 kStreamUrl, 1, kPostBodyLength, LOWEST, NULL, 0));
353 SPDY_REQUEST_RESPONSE_STREAM, session, url, LOWEST, BoundNetLog());
387 kStreamUrl, 1, kPostBodyLength, LOWEST, NULL, 0));
414 SPDY_BIDIRECTIONAL_STREAM, session, url, LOWEST, BoundNetLog());
447 spdy_util_.ConstructSpdyGet(NULL, 0, false, 1, LOWEST, true));
472 SPDY_REQUEST_RESPONSE_STREAM, session, url, LOWEST, BoundNetLo
[all...]
H A Dspdy_network_transaction_unittest.cc741 spdy_util_.ConstructSpdyGet(NULL, 0, false, 1, LOWEST, true));
785 case LOWEST:
805 case LOWEST:
850 spdy_util_.ConstructSpdyGet(NULL, 0, false, 1, LOWEST, true));
856 spdy_util_.ConstructSpdyGet(NULL, 0, false, 3, LOWEST, true));
862 spdy_util_.ConstructSpdyGet(NULL, 0, false, 5, LOWEST, true));
946 spdy_util_.ConstructSpdyGet(NULL, 0, false, 1, LOWEST, true));
952 spdy_util_.ConstructSpdyGet(NULL, 0, false, 3, LOWEST, true));
1033 spdy_util_.ConstructSpdyGet(NULL, 0, false, 1, LOWEST, true));
1039 spdy_util_.ConstructSpdyGet(NULL, 0, false, 3, LOWEST, tru
5768 NormalSpdyTransactionHelper helper(CreateGetRequest(), LOWEST, local
[all...]
H A Dspdy_websocket_test_util.cc75 return spdy_util_.ConstructSpdySyn(stream_id, *headers, LOWEST, false, false);
H A Dspdy_http_utils.cc164 COMPILE_ASSERT(HIGHEST - LOWEST < 4 &&
175 // Map IDLE => 3, LOWEST => 2, LOW => 2, MEDIUM => 1, HIGHEST => 0.
176 if (priority > LOWEST) {
H A Dspdy_session_unittest.cc950 spdy_util_.ConstructSpdyGet(NULL, 0, false, 1, LOWEST, true));
975 session, url, LOWEST, BoundNetLog());
1837 spdy_util_.ConstructSpdyGet(NULL, 0, false, 3, LOWEST, true));
1875 session, url, LOWEST, BoundNetLog());
1914 // Request 2, at LOWEST priority, will be a full request and will be id 1.
1916 spdy_util_.ConstructSpdyGet(NULL, 0, false, 1, LOWEST, true));
1953 session, url2, LOWEST, BoundNetLog());
2021 session, url2, LOWEST, BoundNetLog());
2093 session, url2, LOWEST, BoundNetLog());
2480 spdy_util_.ConstructSpdyGet(NULL, 0, false, 1, LOWEST, tru
[all...]
H A Dspdy_http_stream_unittest.cc159 spdy_util_.ConstructSpdyGet(NULL, 0, false, 1, LOWEST, true));
221 spdy_util_.ConstructSpdyGet(NULL, 0, false, 1, LOWEST, true));
223 spdy_util_.ConstructSpdyGet(NULL, 0, false, 3, LOWEST, true));
653 spdy_util_.ConstructSpdyGet(base_url, false, 1, LOWEST));
H A Dspdy_test_util_common.cc1080 SetPriority(LOWEST, &syn_stream);
1199 return ConstructSpdySyn(1, block, LOWEST, false, false);
1239 ConvertRequestPriorityToSpdyPriority(LOWEST, spdy_version_),
H A Dspdy_proxy_client_socket_unittest.cc197 SPDY_BIDIRECTIONAL_STREAM, spdy_session_, url_, LOWEST,
333 return spdy_util_.ConstructSpdySyn(kStreamId, block, LOWEST, false, false);
342 return spdy_util_.ConstructSpdySyn(kStreamId, block, LOWEST, false, false);
/external/chromium_org/content/browser/loader/
H A Dresource_scheduler_unittest.cc288 scoped_ptr<TestRequest> request(NewRequest("http://host/1", net::LOWEST));
294 scoped_ptr<TestRequest> low(NewRequest("http://host/low", net::LOWEST));
295 scoped_ptr<TestRequest> low2(NewRequest("http://host/low", net::LOWEST));
305 scoped_ptr<TestRequest> low(NewRequest("http://host/low", net::LOWEST));
306 scoped_ptr<TestRequest> low2(NewRequest("http://host/low", net::LOWEST));
317 scoped_ptr<TestRequest> low(NewRequest("http://host/low", net::LOWEST));
318 scoped_ptr<TestRequest> low2(NewRequest("http://host/low", net::LOWEST));
333 NewRequest("https://spdyhost/low", net::LOWEST));
334 scoped_ptr<TestRequest> low(NewRequest("http://host/low", net::LOWEST));
335 scoped_ptr<TestRequest> low2(NewRequest("http://host/low", net::LOWEST));
[all...]
/external/chromium_org/net/url_request/
H A Durl_request_http_job_unittest.cc103 job->SetPriority(LOWEST);
104 EXPECT_EQ(LOWEST, job->priority());
H A Durl_request_ftp_job_unittest.cc153 job->SetPriority(LOWEST);
154 EXPECT_EQ(LOWEST, job->priority());
/external/chromium_org/net/socket/
H A Dclient_socket_pool_base_unittest.cc977 EXPECT_EQ(OK, StartRequest("b", LOWEST));
980 EXPECT_EQ(OK, StartRequest("a", LOWEST));
985 EXPECT_EQ(ERR_IO_PENDING, StartRequest("c", LOWEST));
1000 // and then ("c", LOWEST).
1012 EXPECT_EQ(OK, StartRequest("a", LOWEST));
1328 EXPECT_EQ(ERR_IO_PENDING, StartRequest("a", LOWEST));
1332 EXPECT_EQ(ERR_IO_PENDING, StartRequest("a", LOWEST));
1359 EXPECT_EQ(ERR_IO_PENDING, StartRequest("a", LOWEST));
1363 EXPECT_EQ(ERR_IO_PENDING, StartRequest("a", LOWEST));
1430 EXPECT_EQ(ERR_IO_PENDING, StartRequest("a", LOWEST));
[all...]
H A Dtransport_client_socket_pool_unittest.cc256 EXPECT_EQ(ERR_IO_PENDING, StartRequest("a", LOWEST));
257 EXPECT_EQ(ERR_IO_PENDING, StartRequest("a", LOWEST));
261 EXPECT_EQ(ERR_IO_PENDING, StartRequest("a", LOWEST));
413 EXPECT_EQ(ERR_IO_PENDING, StartRequest("a", LOWEST));
422 EXPECT_EQ(ERR_IO_PENDING, StartRequest("a", LOWEST));
492 int rv = handle_->Init("a", dest, LOWEST, callback(), pool_,
513 int rv = handle.Init("a", dest, LOWEST, callback.callback(), &pool_,
H A Dwebsocket_transport_client_socket_pool_unittest.cc413 handle_->Init("a", dest, LOWEST, callback(), pool_, BoundNetLog());
437 "a", dest, LOWEST, callback.callback(), &pool_, BoundNetLog());
H A Ddeterministic_socket_data_unittest.cc102 LOWEST,
/external/chromium_org/net/http/
H A Dhttp_network_transaction_unittest.cc3017 spdy_util_.ConstructSpdyGet(NULL, 0, false, 1, LOWEST, false));
3082 spdy_util_.ConstructSpdyGet(NULL, 0, false, 1, LOWEST, false));
3157 spdy_util_.ConstructSpdyGet(NULL, 0, false, 1, LOWEST, false));
3166 LOWEST,
3262 LOWEST));
3349 LOWEST));
3353 spdy_util_.ConstructSpdyGet(kMyUrl, false, 1, LOWEST));
3438 LOWEST));
3501 LOWEST));
3527 spdy_util_.ConstructSpdySyn(3, connect2_block, LOWEST, fals
[all...]
/external/chromium_org/components/cronet/android/java/src/org/chromium/net/
H A DChromiumUrlRequest.java432 return ChromiumUrlRequestPriority.LOWEST;
/external/chromium_org/net/dns/
H A Dhost_resolver_impl_unittest.cc1049 CreateRequest("req0", 80, LOWEST);
1054 CreateRequest("req5", 80, LOWEST); // Will cancel.
1099 EXPECT_EQ(ERR_IO_PENDING, CreateRequest("req0", 80, LOWEST)->Resolve());

Completed in 8687 milliseconds

12