OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:THROTTLED
(Results
1 - 13
of
13
) sorted by null
/external/chromium_org/sync/protocol/
sync_protocol_error.h
23
THROTTLED
,
sync_protocol_error.cc
19
ENUM_CASE(
THROTTLED
);
proto_enum_conversions.cc
143
ENUM_CASE(sync_pb::SyncEnums,
THROTTLED
);
/external/chromium_org/sync/engine/
sync_scheduler_impl.cc
40
case
THROTTLED
:
102
ENUM_CASE(
THROTTLED
);
205
// 2. We're silenced /
throttled
.
211
// canary job -- can bypass a
THROTTLED
WaitInterval. The only thing that
309
if (wait_interval_ && wait_interval_->mode == WaitInterval::
THROTTLED
) {
310
SDVLOG(1) << "Unable to run a job because we're
throttled
.";
339
SDVLOG(1) << "Not running a nudge because we're fully type
throttled
.";
534
SDVLOG(2) << "Was
throttled
during previous sync cycle.";
571
SDVLOG(2) << "Poll request got us
throttled
.";
630
if (wait_interval_->mode == WaitInterval::
THROTTLED
) {
[
all
...]
syncer_proto_util.cc
43
// Time to backoff syncing after receiving a
throttled
response.
115
case sync_pb::SyncEnums::
THROTTLED
:
116
return
THROTTLED
;
185
//
THROTTLED
is currently the only error code that uses |error_data_types|.
186
DCHECK_EQ(error.error_type(), sync_pb::SyncEnums::
THROTTLED
);
448
case
THROTTLED
:
450
DLOG(WARNING) << "Client fully
throttled
by syncer.";
453
DLOG(WARNING) << "Some types
throttled
by syncer.";
sync_scheduler_impl.h
141
// A server-initiated
throttled
interval. We do not allow any syncing
143
THROTTLED
,
203
// Helper to signal listeners about changed
throttled
types.
215
// Transitions out of the
THROTTLED
WaitInterval then calls TryCanaryJob().
233
// Returns the set of types that are enabled and not currently
throttled
.
272
// Current wait state. Null if we're not in backoff and not
throttled
.
syncer_proto_util_unittest.cc
71
error_pb.set_error_type(sync_pb::SyncEnums::
THROTTLED
);
/external/chromium/chrome/browser/sync/engine/
syncer_thread.cc
185
if (wait_interval_->mode == WaitInterval::
THROTTLED
)
597
<< " We are currently
throttled
. So not scheduling the next sync.";
819
DCHECK_EQ(WaitInterval::
THROTTLED
, wait_interval_->mode);
836
wait_interval_.reset(new WaitInterval(WaitInterval::
THROTTLED
,
844
WaitInterval::
THROTTLED
;
[
all
...]
syncer_thread.h
179
// A server-initiated
throttled
interval. We do not allow any syncing
181
THROTTLED
,
321
// Current wait state. Null if we're not in backoff and not
throttled
.
syncer_thread2_whitebox_unittest.cc
57
SyncerThread::WaitInterval::
THROTTLED
, TimeDelta::FromSeconds(1)));
syncer_proto_util.cc
38
// Time to backoff syncing after receiving a
throttled
response.
235
case ClientToServerResponse::
THROTTLED
:
/external/chromium_org/chrome/browser/sync/test/integration/
sync_test.cc
780
case syncer::
THROTTLED
:
781
return sync_pb::SyncEnums::
THROTTLED
;
/external/chromium_org/sync/test/engine/
mock_connection_manager.cc
153
response.set_error_code(SyncEnums::
THROTTLED
);
Completed in 95 milliseconds