Home
last modified time | relevance | path

Searched refs:UpdateAttempter (Results 1 – 9 of 9) sorted by relevance

/system/update_engine/
Dupdate_attempter.cc84 const int UpdateAttempter::kMaxDeltaUpdateFailures = 3;
122 UpdateAttempter::UpdateAttempter( in UpdateAttempter() function in chromeos_update_engine::UpdateAttempter
137 UpdateAttempter::~UpdateAttempter() { in UpdateAttempter()
146 void UpdateAttempter::Init() { in UpdateAttempter()
164 void UpdateAttempter::ScheduleUpdates() { in UpdateAttempter()
172 &UpdateAttempter::OnUpdateScheduled, base::Unretained(this)); in UpdateAttempter()
179 void UpdateAttempter::CertificateChecked(ServerToCheck server_to_check, in UpdateAttempter()
186 bool UpdateAttempter::CheckAndReportDailyMetrics() { in UpdateAttempter()
222 void UpdateAttempter::ReportOSAge() { in UpdateAttempter()
247 void UpdateAttempter::Update(const string& app_version, in UpdateAttempter()
[all …]
Dmock_update_attempter.h28 class MockUpdateAttempter : public UpdateAttempter {
30 using UpdateAttempter::UpdateAttempter;
Dreal_system_state.cc159 update_attempter_.reset(new UpdateAttempter(this, certificate_checker_.get(), in Initialize()
197 base::Bind(&UpdateAttempter::UpdateBootFlags, in StartUpdater()
204 &UpdateAttempter::BroadcastStatus, in StartUpdater()
209 &UpdateAttempter::UpdateEngineStarted, in StartUpdater()
Dsystem_state.h48 class UpdateAttempter; variable
94 virtual UpdateAttempter* update_attempter() = 0;
Dupdate_attempter.h65 class UpdateAttempter : public ActionProcessorDelegate,
73 UpdateAttempter(SystemState* system_state,
77 ~UpdateAttempter() override;
503 DISALLOW_COPY_AND_ASSIGN(UpdateAttempter);
Dfake_system_state.h83 inline UpdateAttempter* update_attempter() override { in update_attempter()
142 inline void set_update_attempter(UpdateAttempter* update_attempter) { in set_update_attempter()
256 UpdateAttempter* update_attempter_;
Dreal_system_state.h109 inline UpdateAttempter* update_attempter() override { in update_attempter()
174 std::unique_ptr<UpdateAttempter> update_attempter_;
Dcommon_service.cc152 UpdateAttempter* update_attempter = system_state_->update_attempter(); in SetChannel()
257 UpdateAttempter* update_attempter = system_state_->update_attempter(); in SetUpdateOverCellularPermission()
297 UpdateAttempter* update_attempter = system_state_->update_attempter(); in GetUpdateOverCellularPermission()
Dupdate_attempter_unittest.cc85 class UpdateAttempterUnderTest : public UpdateAttempter {
90 : UpdateAttempter(system_state, nullptr, network_proxy_service_proxy) {} in UpdateAttempterUnderTest()
97 UpdateAttempter::ScheduleUpdates(); in ScheduleUpdates()
301 SetArgumentPointee<1>(UpdateAttempter::kMaxDeltaUpdateFailures - 1), in TEST_F()
307 SetArgumentPointee<1>(UpdateAttempter::kMaxDeltaUpdateFailures), in TEST_F()
322 SetArgumentPointee<1>(UpdateAttempter::kMaxDeltaUpdateFailures), in TEST_F()
329 UpdateAttempter::kMaxDeltaUpdateFailures + 1)); in TEST_F()