/system/update_engine/update_manager/ |
D | real_updater_provider.cc | 48 SystemState* system_state) in UpdaterVariableBase() argument 49 : Variable<T>(name, mode), system_state_(system_state) {} in UpdaterVariableBase() 53 inline SystemState* system_state() const { return system_state_; } in system_state() function in chromeos_update_manager::UpdaterVariableBase 62 GetStatusHelper(SystemState* system_state, string* errmsg) { in GetStatusHelper() argument 63 is_success_ = system_state->update_attempter()->GetStatus( in GetStatusHelper() 89 LastCheckedTimeVariable(const string& name, SystemState* system_state) in LastCheckedTimeVariable() argument 90 : UpdaterVariableBase<Time>(name, kVariableModePoll, system_state) {} in LastCheckedTimeVariable() 94 GetStatusHelper raw(system_state(), errmsg); in GetValue() 108 ProgressVariable(const string& name, SystemState* system_state) in ProgressVariable() argument 109 : UpdaterVariableBase<double>(name, kVariableModePoll, system_state) {} in ProgressVariable() [all …]
|
D | state_factory.cc | 41 chromeos_update_engine::SystemState* system_state) { in DefaultStateFactory() argument 42 chromeos_update_engine::ClockInterface* const clock = system_state->clock(); in DefaultStateFactory() 44 new RealConfigProvider(system_state->hardware())); in DefaultStateFactory() 51 new RealSystemProvider(system_state->hardware(), in DefaultStateFactory() 52 system_state->boot_control())); in DefaultStateFactory() 55 new RealUpdaterProvider(system_state)); in DefaultStateFactory()
|
D | state_factory.h | 37 chromeos_update_engine::SystemState* system_state);
|
/system/update_engine/ |
D | metrics.cc | 117 void ReportDailyMetrics(SystemState *system_state, in ReportDailyMetrics() argument 122 system_state->metrics_lib()->SendToUMA( in ReportDailyMetrics() 130 void ReportUpdateCheckMetrics(SystemState *system_state, in ReportUpdateCheckMetrics() argument 143 system_state->metrics_lib()->SendEnumToUMA(metric, value, max_value); in ReportUpdateCheckMetrics() 150 system_state->metrics_lib()->SendEnumToUMA(metric, value, max_value); in ReportUpdateCheckMetrics() 156 system_state->metrics_lib()->SendSparseToUMA(metric, value); in ReportUpdateCheckMetrics() 161 system_state, in ReportUpdateCheckMetrics() 167 system_state->metrics_lib()->SendToUMA( in ReportUpdateCheckMetrics() 177 if (metrics_utils::MonotonicDurationHelper(system_state, in ReportUpdateCheckMetrics() 183 system_state->metrics_lib()->SendToUMA( in ReportUpdateCheckMetrics() [all …]
|
D | image_properties_android.cc | 59 ImageProperties LoadImageProperties(SystemState* system_state) { in LoadImageProperties() argument 77 std::to_string(system_state->boot_control()->GetCurrentSlot()); in LoadImageProperties() 79 if (!system_state->prefs()->Exists(current_channel_key) || in LoadImageProperties() 80 !system_state->prefs()->GetString(current_channel_key, ¤t_channel)) in LoadImageProperties() 90 MutableImageProperties LoadMutableImageProperties(SystemState* system_state) { in LoadMutableImageProperties() argument 92 PrefsInterface* const prefs = system_state->prefs(); in LoadMutableImageProperties() 102 bool StoreMutableImageProperties(SystemState* system_state, in StoreMutableImageProperties() argument 104 PrefsInterface* const prefs = system_state->prefs(); in StoreMutableImageProperties()
|
D | metrics.h | 190 void ReportRollbackMetrics(SystemState *system_state, 197 void ReportDailyMetrics(SystemState *system_state, 223 void ReportUpdateCheckMetrics(SystemState *system_state, 257 SystemState *system_state, 274 void ReportAbnormallyTerminatedUpdateAttemptMetrics(SystemState *system_state); 297 SystemState *system_state, 313 void ReportCertificateCheckMetrics(SystemState* system_state,
|
D | image_properties.h | 65 ImageProperties LoadImageProperties(SystemState* system_state); 69 MutableImageProperties LoadMutableImageProperties(SystemState* system_state); 73 bool StoreMutableImageProperties(SystemState* system_state,
|
D | image_properties_chromeos.cc | 88 ImageProperties LoadImageProperties(SystemState* system_state) { in LoadImageProperties() argument 99 HardwareInterface* const hardware = system_state->hardware(); in LoadImageProperties() 122 MutableImageProperties LoadMutableImageProperties(SystemState* system_state) { in LoadMutableImageProperties() argument 135 bool StoreMutableImageProperties(SystemState* system_state, in StoreMutableImageProperties() argument
|
D | metrics_utils.h | 51 bool WallclockDurationHelper(SystemState* system_state, 64 bool MonotonicDurationHelper(SystemState* system_state,
|
D | metrics_utils.cc | 262 bool WallclockDurationHelper(SystemState* system_state, in WallclockDurationHelper() argument 267 Time now = system_state->clock()->GetWallclockTime(); in WallclockDurationHelper() 269 if (system_state->prefs()->GetInt64(state_variable_key, &stored_value)) { in WallclockDurationHelper() 280 if (!system_state->prefs()->SetInt64(state_variable_key, in WallclockDurationHelper() 288 bool MonotonicDurationHelper(SystemState* system_state, in MonotonicDurationHelper() argument 293 Time now = system_state->clock()->GetMonotonicTime(); in MonotonicDurationHelper()
|
D | omaha_response_handler_action.cc | 39 SystemState* system_state) in OmahaResponseHandlerAction() argument 40 : OmahaResponseHandlerAction(system_state, in OmahaResponseHandlerAction() 44 SystemState* system_state, const string& deadline_file) in OmahaResponseHandlerAction() argument 45 : system_state_(system_state), in OmahaResponseHandlerAction()
|
D | dbus_service.cc | 28 DBusUpdateEngineService::DBusUpdateEngineService(SystemState* system_state) in DBusUpdateEngineService() argument 29 : common_(new UpdateEngineService{system_state}) { in DBusUpdateEngineService() 140 UpdateEngineAdaptor::UpdateEngineAdaptor(SystemState* system_state, in UpdateEngineAdaptor() argument 144 dbus_service_(system_state), in UpdateEngineAdaptor()
|
D | omaha_request_action.cc | 208 SystemState* system_state) { in GetAppXml() argument 211 system_state->prefs()); in GetAppXml() 246 app_cohort_args += GetCohortArgXml(system_state->prefs(), in GetAppXml() 248 app_cohort_args += GetCohortArgXml(system_state->prefs(), in GetAppXml() 250 app_cohort_args += GetCohortArgXml(system_state->prefs(), in GetAppXml() 292 SystemState* system_state) { in GetRequestXml() argument 296 install_date_in_days, system_state); in GetRequestXml() 499 SystemState* system_state, in OmahaRequestAction() argument 503 : system_state_(system_state), in OmahaRequestAction() 509 params_ = system_state->request_params(); in OmahaRequestAction() [all …]
|
D | omaha_request_action.h | 147 OmahaRequestAction(SystemState* system_state, 195 static int GetInstallDate(SystemState* system_state); 206 static bool HasInstallDate(SystemState *system_state); 211 static bool PersistInstallDate(SystemState *system_state,
|
D | omaha_response_handler_action.h | 45 explicit OmahaResponseHandlerAction(SystemState* system_state); 86 OmahaResponseHandlerAction(SystemState* system_state,
|
D | mock_omaha_request_params.h | 30 explicit MockOmahaRequestParams(SystemState* system_state) in MockOmahaRequestParams() argument 31 : OmahaRequestParams(system_state) { in MockOmahaRequestParams()
|
D | omaha_request_params.h | 46 explicit OmahaRequestParams(SystemState* system_state) in OmahaRequestParams() argument 47 : system_state_(system_state), in OmahaRequestParams() 57 OmahaRequestParams(SystemState* system_state, in OmahaRequestParams() argument 73 : system_state_(system_state), in OmahaRequestParams()
|
D | binder_service_brillo.h | 39 explicit BinderUpdateEngineBrilloService(SystemState* system_state) in BinderUpdateEngineBrilloService() argument 40 : common_(new UpdateEngineService(system_state)) {} in BinderUpdateEngineBrilloService()
|
D | dbus_service.h | 38 explicit DBusUpdateEngineService(SystemState* system_state); 146 UpdateEngineAdaptor(SystemState* system_state,
|
D | connection_manager.h | 44 SystemState* system_state);
|
D | connection_manager.cc | 71 SystemState* system_state) in ConnectionManager() argument 72 : shill_proxy_(shill_proxy), system_state_(system_state) {} in ConnectionManager()
|
D | common_service.cc | 67 UpdateEngineService::UpdateEngineService(SystemState* system_state) in UpdateEngineService() argument 68 : system_state_(system_state) { in UpdateEngineService()
|
D | common_service.h | 44 explicit UpdateEngineService(SystemState* system_state);
|
D | mock_payload_state.h | 31 bool Initialize(SystemState* system_state) { in Initialize() argument
|
/system/update_engine/payload_consumer/ |
D | download_action.cc | 44 SystemState* system_state, in DownloadAction() argument 49 system_state_(system_state), in DownloadAction()
|