Home
last modified time | relevance | path

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

/aosp12/system/update_engine/
H A Dmetrics_utils.cc302 int64_t stored_value; in GetPersistedValue() local
303 if (!prefs->GetInt64(key, &stored_value)) in GetPersistedValue()
306 if (stored_value < 0) { in GetPersistedValue()
307 LOG(ERROR) << key << ": Invalid value (" << stored_value in GetPersistedValue()
312 return stored_value; in GetPersistedValue()
361 int64_t stored_value = GetPersistedValue(kPrefsSystemUpdatedMarker, prefs); in LoadAndReportTimeToReboot() local
362 if (stored_value == 0) in LoadAndReportTimeToReboot()
365 Time system_updated_at = Time::FromInternalValue(stored_value); in LoadAndReportTimeToReboot()
/aosp12/system/update_engine/cros/
H A Dpayload_state.cc882 string stored_value; in LoadResponseSignature() local
885 SetResponseSignature(stored_value); in LoadResponseSignature()
1003 int64_t stored_value; in LoadBackoffExpiryTime() local
1010 Time stored_time = Time::FromInternalValue(stored_value); in LoadBackoffExpiryTime()
1036 int64_t stored_value; in LoadUpdateTimestampStart() local
1048 stored_time = Time::FromInternalValue(stored_value); in LoadUpdateTimestampStart()
1083 int64_t stored_value; in LoadUpdateDurationUptime() local
1093 stored_delta = TimeDelta::FromInternalValue(stored_value); in LoadUpdateDurationUptime()
1380 int64_t stored_value = time.ToInternalValue(); in SetP2PFirstAttemptTimestamp() local
1385 int64_t stored_value = in LoadP2PFirstAttemptTimestamp() local
[all …]
H A Dmetrics_reporter_omaha.cc558 int64_t stored_value; in WallclockDurationHelper() local
560 &stored_value)) { in WallclockDurationHelper()
561 Time stored_time = Time::FromInternalValue(stored_value); in WallclockDurationHelper()
H A Dupdate_attempter.cc218 int64_t stored_value; in CheckAndReportDailyMetrics() local
222 &stored_value)) { in CheckAndReportDailyMetrics()
223 Time last_reported_at = Time::FromInternalValue(stored_value); in CheckAndReportDailyMetrics()
H A Domaha_request_action.cc412 int64_t stored_value; in GetInstallDate() local
413 if (prefs->GetInt64(kPrefsInstallDateDays, &stored_value)) { in GetInstallDate()
415 int install_date_days = static_cast<int>(stored_value); in GetInstallDate()
/aosp12/system/bt/btif/src/
H A Dbtif_config.cc484 auto stored_value = btif_config_cache.GetString(section, key); in btif_config_get_str() local
485 if (!stored_value) return false; in btif_config_get_str()
486 strlcpy(value, stored_value->c_str(), *size_bytes); in btif_config_get_str()
/aosp12/art/compiler/optimizing/
H A Dload_store_elimination.cc1281 HInstruction* stored_value; member
2497 HInstruction* stored_value = nullptr; in ProcessLoopPhiWithUnknownInput() local
2501 stored_value = it->second.stored_value; in ProcessLoopPhiWithUnknownInput()
2504 stored_value != nullptr ? stored_value : load_or_store); in ProcessLoopPhiWithUnknownInput()
2521 replacement.IsUnknown() ? stored_value : replacement.GetInstruction()); in ProcessLoopPhiWithUnknownInput()
2844 DataType::Type type = store_record.stored_value->GetType(); in FindStoresWritingOldValues()
2849 HInstruction* stored_value = FindSubstitute(store_record.stored_value); in FindStoresWritingOldValues() local
2850 if (store_record.old_value_record.value.Equals(stored_value)) { in FindStoresWritingOldValues()
H A Dinstruction_builder.cc563 void HInstructionBuilder::UpdateLocal(uint32_t reg_number, HInstruction* stored_value) { in UpdateLocal() argument
564 DataType::Type stored_type = stored_value->GetType(); in UpdateLocal()
586 (*current_locals_)[reg_number] = stored_value; in UpdateLocal()