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

/system/update_engine/
H A Dpayload_state.cc792 int64_t stored_value;
793 if (!prefs_->GetInt64(key, &stored_value))
796 if (stored_value < 0) {
797 LOG(ERROR) << key << ": Invalid value (" << stored_value local
802 return stored_value;
834 string stored_value; local
836 prefs_->GetString(kPrefsCurrentResponseSignature, &stored_value)) {
837 SetResponseSignature(stored_value);
931 int64_t stored_value; local
935 if (!prefs_->GetInt64(kPrefsBackoffExpiryTime, &stored_value))
965 int64_t stored_value; local
1020 int64_t stored_value; local
1220 int64_t stored_value; local
1346 int64_t stored_value = time.ToInternalValue(); local
1351 int64_t stored_value = GetPersistedValue(kPrefsP2PFirstAttemptTimestamp); local
[all...]
H A Dconnection_manager.cc95 bool stored_value; local
97 &stored_value)) {
101 if (!stored_value) {
H A Dmetrics_utils.cc272 int64_t stored_value; local
273 if (system_state->prefs()->GetInt64(state_variable_key, &stored_value)) {
274 Time stored_time = Time::FromInternalValue(stored_value);
H A Domaha_request_action.cc589 int64_t stored_value;
590 if (prefs->GetInt64(kPrefsInstallDateDays, &stored_value)) {
592 int install_date_days = static_cast<int>(stored_value);
H A Dupdate_attempter.cc189 int64_t stored_value; local
193 &stored_value)) {
194 Time last_reported_at = Time::FromInternalValue(stored_value);
/system/bt/btif/src/
H A Dbtif_config.cc297 const char* stored_value = config_get_string(config, section, key, NULL); local
298 if (!stored_value) return false;
299 strlcpy(value, stored_value, *size_bytes);

Completed in 1254 milliseconds