Home
last modified time | relevance | path

Searched refs:consecutive_errors (Results 1 – 6 of 6) sorted by relevance

/external/chromium/chrome/browser/sync/sessions/
Dstatus_controller.cc86 if (shared_.error_counters.value().consecutive_errors != value) in set_num_consecutive_errors()
87 shared_.error_counters.mutate()->consecutive_errors = value; in set_num_consecutive_errors()
125 shared_.error_counters.value().consecutive_errors + 1); in increment_num_consecutive_errors()
130 shared_.error_counters.value().consecutive_errors + value); in increment_num_consecutive_errors_by()
Dstatus_controller_unittest.cc121 EXPECT_EQ(8, status.error_counters().consecutive_errors); in TEST_F()
123 EXPECT_EQ(9, status.error_counters().consecutive_errors); in TEST_F()
125 EXPECT_EQ(11, status.error_counters().consecutive_errors); in TEST_F()
Dsession_state_unittest.cc73 counters.consecutive_errors = 3; in TEST_F()
81 ExpectIntegerValue(counters.consecutive_errors, in TEST_F()
Dsession_state.cc94 consecutive_errors(0) { in ErrorCounters()
102 value->SetInteger("consecutiveErrors", consecutive_errors); in ToValue()
Dsession_state.h101 int consecutive_errors; member
/external/chromium/chrome/browser/sync/engine/
Dall_status.cc61 if (errors.consecutive_errors > status.max_consecutive_errors) in CalcSyncing()
62 status.max_consecutive_errors = errors.consecutive_errors; in CalcSyncing()