OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:URLRequestThrottlerEntry
(Results
1 - 4
of
4
) sorted by null
/external/chromium/net/url_request/
url_request_throttler_entry.cc
17
const int
URLRequestThrottlerEntry
::kDefaultSlidingWindowPeriodMs = 2000;
18
const int
URLRequestThrottlerEntry
::kDefaultMaxSendThreshold = 20;
35
const int
URLRequestThrottlerEntry
::kDefaultNumErrorsToIgnore = 4;
36
const int
URLRequestThrottlerEntry
::kDefaultInitialBackoffMs = 700;
37
const double
URLRequestThrottlerEntry
::kDefaultMultiplyFactor = 1.4;
38
const double
URLRequestThrottlerEntry
::kDefaultJitterFactor = 0.4;
39
const int
URLRequestThrottlerEntry
::kDefaultMaximumBackoffMs = 15 * 60 * 1000;
40
const int
URLRequestThrottlerEntry
::kDefaultEntryLifetimeMs = 2 * 60 * 1000;
41
const char
URLRequestThrottlerEntry
::kRetryHeaderName[] = "X-Retry-After";
42
const char
URLRequestThrottlerEntry
::kExponentialThrottlingHeader[]
[
all
...]
url_request_throttler_entry.h
20
//
URLRequestThrottlerEntry
represents an entry of URLRequestThrottlerManager.
31
class
URLRequestThrottlerEntry
: public URLRequestThrottlerEntryInterface {
71
explicit
URLRequestThrottlerEntry
(URLRequestThrottlerManager* manager);
76
URLRequestThrottlerEntry
(URLRequestThrottlerManager* manager,
105
virtual ~
URLRequestThrottlerEntry
();
159
DISALLOW_COPY_AND_ASSIGN(
URLRequestThrottlerEntry
);
/external/chromium_org/net/url_request/
url_request_throttler_entry.cc
24
const int
URLRequestThrottlerEntry
::kDefaultSlidingWindowPeriodMs = 2000;
25
const int
URLRequestThrottlerEntry
::kDefaultMaxSendThreshold = 20;
43
const int
URLRequestThrottlerEntry
::kDefaultNumErrorsToIgnore = 2;
44
const int
URLRequestThrottlerEntry
::kDefaultInitialDelayMs = 700;
45
const double
URLRequestThrottlerEntry
::kDefaultMultiplyFactor = 1.4;
46
const double
URLRequestThrottlerEntry
::kDefaultJitterFactor = 0.4;
47
const int
URLRequestThrottlerEntry
::kDefaultMaximumBackoffMs = 15 * 60 * 1000;
48
const int
URLRequestThrottlerEntry
::kDefaultEntryLifetimeMs = 2 * 60 * 1000;
49
const char
URLRequestThrottlerEntry
::kExponentialThrottlingHeader[] =
51
const char
URLRequestThrottlerEntry
::kExponentialThrottlingDisableValue[]
[
all
...]
url_request_throttler_entry.h
21
//
URLRequestThrottlerEntry
represents an entry of URLRequestThrottlerManager.
32
class NET_EXPORT
URLRequestThrottlerEntry
69
URLRequestThrottlerEntry
(URLRequestThrottlerManager* manager,
75
URLRequestThrottlerEntry
(URLRequestThrottlerManager* manager,
105
virtual ~
URLRequestThrottlerEntry
();
170
DISALLOW_COPY_AND_ASSIGN(
URLRequestThrottlerEntry
);
Completed in 352 milliseconds