Home
last modified time | relevance | path

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

/system/update_engine/
Dupdate_attempter.cc87 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 …]
Dmock_update_attempter.h29 class MockUpdateAttempter : public UpdateAttempter {
31 using UpdateAttempter::UpdateAttempter;
Dsystem_state.h48 class UpdateAttempter; variable
94 virtual UpdateAttempter* update_attempter() = 0;
Dreal_system_state.cc153 new UpdateAttempter(this, certificate_checker_.get())); in Initialize()
225 base::Bind(&UpdateAttempter::BroadcastStatus, in StartUpdater()
231 base::Bind(&UpdateAttempter::UpdateEngineStarted, in StartUpdater()
Dupdate_attempter.h56 class UpdateAttempter : public ActionProcessorDelegate,
65 UpdateAttempter(SystemState* system_state, CertificateChecker* cert_checker);
66 ~UpdateAttempter() override;
521 DISALLOW_COPY_AND_ASSIGN(UpdateAttempter);
Dreal_system_state.h110 inline UpdateAttempter* update_attempter() override { in update_attempter()
181 std::unique_ptr<UpdateAttempter> update_attempter_;
Dfake_system_state.h85 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_;
Dconnection_manager.cc70 UpdateAttempter* update_attempter = system_state_->update_attempter(); in IsUpdateAllowedOver()
Dupdate_attempter_unittest.cc96 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()
Dcommon_service.cc176 UpdateAttempter* update_attempter = system_state_->update_attempter(); in SetChannel()