Searched refs:stored_value (Results 1 – 6 of 6) sorted by relevance
/system/update_engine/ |
D | payload_state.cc | 790 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 …]
|
D | connection_manager.cc | 116 bool stored_value; in IsUpdateAllowedOver() local 118 &stored_value)) { in IsUpdateAllowedOver() 122 if (!stored_value) { in IsUpdateAllowedOver()
|
D | metrics_utils.cc | 268 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()
|
D | omaha_request_action.cc | 567 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()
|
D | update_attempter.cc | 192 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/ |
D | btif_config.c | 319 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()
|