Home
last modified time | relevance | path

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

/system/update_engine/
Dupdate_attempter.cc96 const int UpdateAttempter::kMaxDeltaUpdateFailures = 3;
129 UpdateAttempter::UpdateAttempter(SystemState* system_state, in UpdateAttempter() function in chromeos_update_engine::UpdateAttempter
136 UpdateAttempter::~UpdateAttempter() { in ~UpdateAttempter()
145 void UpdateAttempter::Init() { in Init()
163 bool UpdateAttempter::ScheduleUpdates() { in ScheduleUpdates()
171 Bind(&UpdateAttempter::OnUpdateScheduled, base::Unretained(this)); in ScheduleUpdates()
180 void UpdateAttempter::CertificateChecked(ServerToCheck server_to_check, in CertificateChecked()
186 bool UpdateAttempter::CheckAndReportDailyMetrics() { in CheckAndReportDailyMetrics()
222 void UpdateAttempter::ReportOSAge() { in ReportOSAge()
247 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.cc151 new UpdateAttempter(this, certificate_checker_.get())); in Initialize()
222 base::Bind(&UpdateAttempter::BroadcastStatus, in StartUpdater()
228 base::Bind(&UpdateAttempter::UpdateEngineStarted, in StartUpdater()
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_;
Dupdate_attempter.h59 class UpdateAttempter : public ActionProcessorDelegate,
68 UpdateAttempter(SystemState* system_state, CertificateChecker* cert_checker);
69 ~UpdateAttempter() override;
581 DISALLOW_COPY_AND_ASSIGN(UpdateAttempter);
Dconnection_manager.cc72 UpdateAttempter* update_attempter = system_state_->update_attempter(); in IsUpdateAllowedOver()
Dupdate_attempter_unittest.cc169 class UpdateAttempterUnderTest : public UpdateAttempter {
172 : UpdateAttempter(system_state, nullptr) {} in UpdateAttempterUnderTest()
185 UpdateAttempter::Update(app_version, in Update()
209 return UpdateAttempter::ScheduleUpdates(); in ScheduleUpdates()
690 DoAll(SetArgPointee<1>(UpdateAttempter::kMaxDeltaUpdateFailures - 1), in TEST_F()
696 DoAll(SetArgPointee<1>(UpdateAttempter::kMaxDeltaUpdateFailures), in TEST_F()
711 DoAll(SetArgPointee<1>(UpdateAttempter::kMaxDeltaUpdateFailures), in TEST_F()
719 UpdateAttempter::kMaxDeltaUpdateFailures + 1)); in TEST_F()
Dcommon_service.cc182 UpdateAttempter* update_attempter = system_state_->update_attempter(); in SetChannel()