Searched refs:UpdateAttempter (Results 1 – 10 of 10) sorted by relevance
/system/update_engine/ |
D | update_attempter.cc | 87 const int UpdateAttempter::kMaxDeltaUpdateFailures = 3; 120 UpdateAttempter::UpdateAttempter(SystemState* system_state, in UpdateAttempter() function in chromeos_update_engine::UpdateAttempter 127 UpdateAttempter::~UpdateAttempter() { in ~UpdateAttempter() 136 void UpdateAttempter::Init() { in Init() 154 bool UpdateAttempter::ScheduleUpdates() { in ScheduleUpdates() 162 Bind(&UpdateAttempter::OnUpdateScheduled, base::Unretained(this)); in ScheduleUpdates() 170 void UpdateAttempter::CertificateChecked(ServerToCheck server_to_check, in CertificateChecked() 176 bool UpdateAttempter::CheckAndReportDailyMetrics() { in CheckAndReportDailyMetrics() 212 void UpdateAttempter::ReportOSAge() { in ReportOSAge() 237 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 | 153 new UpdateAttempter(this, certificate_checker_.get())); in Initialize() 225 base::Bind(&UpdateAttempter::BroadcastStatus, in StartUpdater() 231 base::Bind(&UpdateAttempter::UpdateEngineStarted, in StartUpdater()
|
D | update_attempter.h | 56 class UpdateAttempter : public ActionProcessorDelegate, 65 UpdateAttempter(SystemState* system_state, CertificateChecker* cert_checker); 66 ~UpdateAttempter() override; 521 DISALLOW_COPY_AND_ASSIGN(UpdateAttempter);
|
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 | connection_manager.cc | 70 UpdateAttempter* update_attempter = system_state_->update_attempter(); in IsUpdateAllowedOver()
|
D | update_attempter_unittest.cc | 96 class UpdateAttempterUnderTest : public UpdateAttempter { 99 : UpdateAttempter(system_state, nullptr) {} in UpdateAttempterUnderTest() 106 UpdateAttempter::ScheduleUpdates(); in ScheduleUpdates() 400 DoAll(SetArgPointee<1>(UpdateAttempter::kMaxDeltaUpdateFailures - 1), in TEST_F() 406 DoAll(SetArgPointee<1>(UpdateAttempter::kMaxDeltaUpdateFailures), in TEST_F() 421 DoAll(SetArgPointee<1>(UpdateAttempter::kMaxDeltaUpdateFailures), in TEST_F() 429 UpdateAttempter::kMaxDeltaUpdateFailures + 1)); in TEST_F()
|
D | common_service.cc | 176 UpdateAttempter* update_attempter = system_state_->update_attempter(); in SetChannel()
|