Searched refs:UpdateAttempter (Results 1 – 10 of 10) sorted by relevance
/system/update_engine/ |
D | update_attempter.cc | 96 const int UpdateAttempter::kMaxDeltaUpdateFailures = 3; 129 UpdateAttempter::UpdateAttempter(SystemState* system_state, in UpdateAttempter() function in chromeos_update_engine::UpdateAttempter 136 UpdateAttempter::~UpdateAttempter() { in ~UpdateAttempter() 145 void UpdateAttempter::Init() { in Init() 163 bool UpdateAttempter::ScheduleUpdates() { in ScheduleUpdates() 171 Bind(&UpdateAttempter::OnUpdateScheduled, base::Unretained(this)); in ScheduleUpdates() 180 void UpdateAttempter::CertificateChecked(ServerToCheck server_to_check, in CertificateChecked() 186 bool UpdateAttempter::CheckAndReportDailyMetrics() { in CheckAndReportDailyMetrics() 222 void UpdateAttempter::ReportOSAge() { in ReportOSAge() 247 void UpdateAttempter::Update(const string& app_version, in Update() [all …]
|
D | mock_update_attempter.h | 29 class MockUpdateAttempter : public UpdateAttempter { 31 using UpdateAttempter::UpdateAttempter;
|
D | system_state.h | 48 class UpdateAttempter; variable 94 virtual UpdateAttempter* update_attempter() = 0;
|
D | real_system_state.cc | 151 new UpdateAttempter(this, certificate_checker_.get())); in Initialize() 222 base::Bind(&UpdateAttempter::BroadcastStatus, in StartUpdater() 228 base::Bind(&UpdateAttempter::UpdateEngineStarted, in StartUpdater()
|
D | real_system_state.h | 110 inline UpdateAttempter* update_attempter() override { in update_attempter() 181 std::unique_ptr<UpdateAttempter> update_attempter_;
|
D | fake_system_state.h | 85 inline UpdateAttempter* update_attempter() override { in update_attempter() 148 inline void set_update_attempter(UpdateAttempter* update_attempter) { in set_update_attempter() 265 UpdateAttempter* update_attempter_;
|
D | update_attempter.h | 59 class UpdateAttempter : public ActionProcessorDelegate, 68 UpdateAttempter(SystemState* system_state, CertificateChecker* cert_checker); 69 ~UpdateAttempter() override; 581 DISALLOW_COPY_AND_ASSIGN(UpdateAttempter);
|
D | connection_manager.cc | 72 UpdateAttempter* update_attempter = system_state_->update_attempter(); in IsUpdateAllowedOver()
|
D | update_attempter_unittest.cc | 169 class UpdateAttempterUnderTest : public UpdateAttempter { 172 : UpdateAttempter(system_state, nullptr) {} in UpdateAttempterUnderTest() 185 UpdateAttempter::Update(app_version, in Update() 209 return UpdateAttempter::ScheduleUpdates(); in ScheduleUpdates() 690 DoAll(SetArgPointee<1>(UpdateAttempter::kMaxDeltaUpdateFailures - 1), in TEST_F() 696 DoAll(SetArgPointee<1>(UpdateAttempter::kMaxDeltaUpdateFailures), in TEST_F() 711 DoAll(SetArgPointee<1>(UpdateAttempter::kMaxDeltaUpdateFailures), in TEST_F() 719 UpdateAttempter::kMaxDeltaUpdateFailures + 1)); in TEST_F()
|
D | common_service.cc | 182 UpdateAttempter* update_attempter = system_state_->update_attempter(); in SetChannel()
|