Searched refs:stored_value (Results 1 - 6 of 6) sorted by relevance
/system/update_engine/ |
H A D | payload_state.cc | 790 int64_t stored_value; 791 if (!prefs_->GetInt64(key, &stored_value)) 794 if (stored_value < 0) { 795 LOG(ERROR) << key << ": Invalid value (" << stored_value local 800 return stored_value; 832 string stored_value; local 834 prefs_->GetString(kPrefsCurrentResponseSignature, &stored_value)) { 835 SetResponseSignature(stored_value); 929 int64_t stored_value; local 933 if (!prefs_->GetInt64(kPrefsBackoffExpiryTime, &stored_value)) 963 int64_t stored_value; local 1018 int64_t stored_value; local 1218 int64_t stored_value; local 1344 int64_t stored_value = time.ToInternalValue(); local 1349 int64_t stored_value = GetPersistedValue(kPrefsP2PFirstAttemptTimestamp); local [all...] |
H A D | connection_manager.cc | 116 bool stored_value; local 118 &stored_value)) { 122 if (!stored_value) {
|
H A D | metrics_utils.cc | 268 int64_t stored_value; local 269 if (system_state->prefs()->GetInt64(state_variable_key, &stored_value)) { 270 Time stored_time = Time::FromInternalValue(stored_value);
|
H A D | omaha_request_action.cc | 567 int64_t stored_value; 568 if (prefs->GetInt64(kPrefsInstallDateDays, &stored_value)) { 570 int install_date_days = static_cast<int>(stored_value);
|
H A D | update_attempter.cc | 192 int64_t stored_value; local 196 &stored_value)) { 197 Time last_reported_at = Time::FromInternalValue(stored_value);
|
/system/bt/btif/src/ |
H A D | btif_config.c | 315 const char *stored_value = config_get_string(config, section, key, NULL); local 318 if (!stored_value) 321 strlcpy(value, stored_value, *size_bytes);
|
Completed in 167 milliseconds