Searched refs:UpdateAttempter (Results 1 – 9 of 9) sorted by relevance
/system/update_engine/ |
D | update_attempter.cc | 86 const int UpdateAttempter::kMaxDeltaUpdateFailures = 3; 124 UpdateAttempter::UpdateAttempter( in UpdateAttempter() function in chromeos_update_engine::UpdateAttempter 138 UpdateAttempter::~UpdateAttempter() { in ~UpdateAttempter() 147 void UpdateAttempter::Init() { in Init() 169 void UpdateAttempter::ScheduleUpdates() { in ScheduleUpdates() 177 &UpdateAttempter::OnUpdateScheduled, base::Unretained(this)); in ScheduleUpdates() 184 void UpdateAttempter::CertificateChecked(ServerToCheck server_to_check, in CertificateChecked() 191 bool UpdateAttempter::CheckAndReportDailyMetrics() { in CheckAndReportDailyMetrics() 227 void UpdateAttempter::ReportOSAge() { in ReportOSAge() 252 void UpdateAttempter::Update(const string& app_version, in Update() [all …]
|
D | mock_update_attempter.h | 28 class MockUpdateAttempter : public UpdateAttempter { 30 using UpdateAttempter::UpdateAttempter;
|
D | real_system_state.cc | 135 new UpdateAttempter(this, certificate_checker_.get(), &libcros_proxy_, in Initialize() 177 base::Bind(&UpdateAttempter::UpdateBootFlags, in StartUpdater() 184 &UpdateAttempter::BroadcastStatus, in StartUpdater() 189 &UpdateAttempter::UpdateEngineStarted, in StartUpdater()
|
D | system_state.h | 53 class UpdateAttempter; variable 100 virtual UpdateAttempter* update_attempter() = 0;
|
D | update_attempter.h | 60 class UpdateAttempter : public ActionProcessorDelegate, 69 UpdateAttempter(SystemState* system_state, 73 ~UpdateAttempter() override; 516 DISALLOW_COPY_AND_ASSIGN(UpdateAttempter);
|
D | fake_system_state.h | 84 inline UpdateAttempter* update_attempter() override { in update_attempter() 146 inline void set_update_attempter(UpdateAttempter* update_attempter) { in set_update_attempter() 260 UpdateAttempter* update_attempter_;
|
D | real_system_state.h | 103 inline UpdateAttempter* update_attempter() override { in update_attempter() 170 std::unique_ptr<UpdateAttempter> update_attempter_;
|
D | common_service.cc | 151 UpdateAttempter* update_attempter = system_state_->update_attempter(); in SetChannel() 227 UpdateAttempter* update_attempter = system_state_->update_attempter(); in SetUpdateOverCellularPermission() 267 UpdateAttempter* update_attempter = system_state_->update_attempter(); in GetUpdateOverCellularPermission()
|
D | update_attempter_unittest.cc | 80 class UpdateAttempterUnderTest : public UpdateAttempter { 85 : UpdateAttempter(system_state, nullptr, libcros_proxy, debugd_proxy) {} in UpdateAttempterUnderTest() 92 UpdateAttempter::ScheduleUpdates(); in ScheduleUpdates() 312 SetArgumentPointee<1>(UpdateAttempter::kMaxDeltaUpdateFailures - 1), in TEST_F() 318 SetArgumentPointee<1>(UpdateAttempter::kMaxDeltaUpdateFailures), in TEST_F() 333 SetArgumentPointee<1>(UpdateAttempter::kMaxDeltaUpdateFailures), in TEST_F() 340 UpdateAttempter::kMaxDeltaUpdateFailures + 1)); in TEST_F()
|