OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:backoffentry
(Results
1 - 6
of
6
) sorted by null
/external/chromium/net/base/
backoff_entry.cc
15
BackoffEntry
::
BackoffEntry
(const
BackoffEntry
::Policy* const policy)
24
BackoffEntry
::~
BackoffEntry
() {
30
void
BackoffEntry
::InformOfRequest(bool succeeded) {
58
bool
BackoffEntry
::ShouldRejectRequest() const {
62
base::TimeTicks
BackoffEntry
::GetReleaseTime() const {
66
void
BackoffEntry
::SetCustomReleaseTime(const base::TimeTicks& release_time) {
70
bool
BackoffEntry
::CanDiscard() const
[
all
...]
backoff_entry_unittest.cc
12
using net::
BackoffEntry
;
14
BackoffEntry
::Policy base_policy = { 0, 1000, 2.0, 0.0, 20000, 2000 };
16
class TestBackoffEntry : public
BackoffEntry
{
19
:
BackoffEntry
(policy),
51
BackoffEntry
::Policy never_expires_policy = base_policy;
87
BackoffEntry
::Policy no_store_policy = base_policy;
94
BackoffEntry
::Policy lenient_policy = base_policy;
97
BackoffEntry
entry(&lenient_policy);
138
BackoffEntry
::Policy jittery_policy = base_policy;
194
BackoffEntry
::Policy lenient_policy = base_policy
[
all
...]
backoff_entry.h
19
class
BackoffEntry
: public base::NonThreadSafe {
45
// Lifetime of policy must enclose lifetime of
BackoffEntry
. The
47
explicit
BackoffEntry
(const Policy* const policy);
48
virtual ~
BackoffEntry
();
67
// just as well start with a fresh
BackoffEntry
object), and hasn't
89
DISALLOW_COPY_AND_ASSIGN(
BackoffEntry
);
/external/chromium/net/url_request/
url_request_throttler_entry.h
121
virtual const
BackoffEntry
* GetBackoffEntry() const;
122
virtual
BackoffEntry
* GetBackoffEntry();
135
BackoffEntry
::Policy backoff_policy_;
154
BackoffEntry
backoff_entry_;
url_request_throttler_unittest.cc
24
class MockBackoffEntry : public
BackoffEntry
{
26
explicit MockBackoffEntry(const
BackoffEntry
::Policy* const policy)
27
:
BackoffEntry
(policy), fake_now_(TimeTicks()) {
73
// logic is already tested in the
BackoffEntry
unit tests).
77
const
BackoffEntry
* GetBackoffEntry() const {
81
BackoffEntry
* GetBackoffEntry() {
url_request_throttler_entry.cc
260
const
BackoffEntry
* URLRequestThrottlerEntry::GetBackoffEntry() const {
264
BackoffEntry
* URLRequestThrottlerEntry::GetBackoffEntry() {
Completed in 464 milliseconds