HomeSort by relevance Sort by last modified time
    Searched refs:backoff_expiry (Results 1 - 6 of 6) sorted by null

  /system/update_engine/update_manager/
policy.h 113 base::Time backoff_expiry; member in struct:chromeos_update_manager::UpdateState
178 base::Time backoff_expiry; member in struct:chromeos_update_manager::UpdateDownloadParams
chromeos_policy.cc 345 result->backoff_expiry = update_state.backoff_expiry;
368 result->backoff_expiry = backoff_url_result.backoff_expiry;
371 !backoff_url_result.backoff_expiry.is_null();
713 result->backoff_expiry = update_state.backoff_expiry;
736 if (may_backoff && !update_state.backoff_expiry.is_null() &&
737 !ec->IsWallclockTimeGreaterThan(update_state.backoff_expiry)) {
866 Time backoff_expiry; local
    [all...]
default_policy.cc 70 result->backoff_expiry = base::Time();
chromeos_policy.h 36 base::Time backoff_expiry; member in struct:chromeos_update_manager::UpdateBackoffAndDownloadUrlResult
38 // Significant iff |do_increment_failures| is false and |backoff_expiry| is
154 // Within |update_state|, |backoff_expiry| and |is_backoff_disabled| are used
168 // * If backing off with a new expiry time, then |result->backoff_expiry| is
171 // * Else, |result->backoff_expiry| is set to null, indicating that no backoff
chromeos_policy_unittest.cc 171 update_state.backoff_expiry = Time();
653 EXPECT_LT(curr_time, result.backoff_expiry);
673 update_state.backoff_expiry = curr_time + TimeDelta::FromMinutes(3);
683 EXPECT_LT(curr_time, result.backoff_expiry);
702 update_state.backoff_expiry = curr_time - TimeDelta::FromSeconds(1);
715 EXPECT_EQ(Time(), result.backoff_expiry);
746 EXPECT_EQ(Time(), result.backoff_expiry);
777 EXPECT_EQ(Time(), result.backoff_expiry);
808 EXPECT_EQ(Time(), result.backoff_expiry);
    [all...]
update_manager_unittest.cc 205 update_state.backoff_expiry = Time();

Completed in 801 milliseconds