Home
last modified time | relevance | path

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

/system/update_engine/
Dupdate_attempter.cc86 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 …]
Dmock_update_attempter.h28 class MockUpdateAttempter : public UpdateAttempter {
30 using UpdateAttempter::UpdateAttempter;
Dreal_system_state.cc135 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()
Dsystem_state.h53 class UpdateAttempter; variable
100 virtual UpdateAttempter* update_attempter() = 0;
Dupdate_attempter.h60 class UpdateAttempter : public ActionProcessorDelegate,
69 UpdateAttempter(SystemState* system_state,
73 ~UpdateAttempter() override;
516 DISALLOW_COPY_AND_ASSIGN(UpdateAttempter);
Dfake_system_state.h84 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_;
Dreal_system_state.h103 inline UpdateAttempter* update_attempter() override { in update_attempter()
170 std::unique_ptr<UpdateAttempter> update_attempter_;
Dcommon_service.cc151 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()
Dupdate_attempter_unittest.cc80 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()