Home
last modified time | relevance | path

Searched refs:stored_value (Results 1 – 6 of 6) sorted by relevance

/system/update_engine/
Dpayload_state.cc790 int64_t stored_value; in GetPersistedValue() local
791 if (!prefs_->GetInt64(key, &stored_value)) in GetPersistedValue()
794 if (stored_value < 0) { in GetPersistedValue()
795 LOG(ERROR) << key << ": Invalid value (" << stored_value in GetPersistedValue()
800 return stored_value; in GetPersistedValue()
832 string stored_value; in LoadResponseSignature() local
834 prefs_->GetString(kPrefsCurrentResponseSignature, &stored_value)) { in LoadResponseSignature()
835 SetResponseSignature(stored_value); in LoadResponseSignature()
929 int64_t stored_value; in LoadBackoffExpiryTime() local
933 if (!prefs_->GetInt64(kPrefsBackoffExpiryTime, &stored_value)) in LoadBackoffExpiryTime()
[all …]
Dconnection_manager.cc116 bool stored_value; in IsUpdateAllowedOver() local
118 &stored_value)) { in IsUpdateAllowedOver()
122 if (!stored_value) { in IsUpdateAllowedOver()
Dmetrics_utils.cc268 int64_t stored_value; in WallclockDurationHelper() local
269 if (system_state->prefs()->GetInt64(state_variable_key, &stored_value)) { in WallclockDurationHelper()
270 Time stored_time = Time::FromInternalValue(stored_value); in WallclockDurationHelper()
Domaha_request_action.cc567 int64_t stored_value; in GetInstallDate() local
568 if (prefs->GetInt64(kPrefsInstallDateDays, &stored_value)) { in GetInstallDate()
570 int install_date_days = static_cast<int>(stored_value); in GetInstallDate()
Dupdate_attempter.cc192 int64_t stored_value; in CheckAndReportDailyMetrics() local
196 &stored_value)) { in CheckAndReportDailyMetrics()
197 Time last_reported_at = Time::FromInternalValue(stored_value); in CheckAndReportDailyMetrics()
/system/bt/btif/src/
Dbtif_config.c319 const char *stored_value = config_get_string(config, section, key, NULL); in btif_config_get_str() local
322 if (!stored_value) in btif_config_get_str()
325 strlcpy(value, stored_value, *size_bytes); in btif_config_get_str()