Searched refs:stored_value (Results 1 – 8 of 8) sorted by relevance
302 int64_t stored_value; in GetPersistedValue() local303 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() local362 if (stored_value == 0) in LoadAndReportTimeToReboot()365 Time system_updated_at = Time::FromInternalValue(stored_value); in LoadAndReportTimeToReboot()
882 string stored_value; in LoadResponseSignature() local885 SetResponseSignature(stored_value); in LoadResponseSignature()1003 int64_t stored_value; in LoadBackoffExpiryTime() local1010 Time stored_time = Time::FromInternalValue(stored_value); in LoadBackoffExpiryTime()1036 int64_t stored_value; in LoadUpdateTimestampStart() local1048 stored_time = Time::FromInternalValue(stored_value); in LoadUpdateTimestampStart()1083 int64_t stored_value; in LoadUpdateDurationUptime() local1093 stored_delta = TimeDelta::FromInternalValue(stored_value); in LoadUpdateDurationUptime()1380 int64_t stored_value = time.ToInternalValue(); in SetP2PFirstAttemptTimestamp() local1385 int64_t stored_value = in LoadP2PFirstAttemptTimestamp() local[all …]
558 int64_t stored_value; in WallclockDurationHelper() local560 &stored_value)) { in WallclockDurationHelper()561 Time stored_time = Time::FromInternalValue(stored_value); in WallclockDurationHelper()
218 int64_t stored_value; in CheckAndReportDailyMetrics() local222 &stored_value)) { in CheckAndReportDailyMetrics()223 Time last_reported_at = Time::FromInternalValue(stored_value); in CheckAndReportDailyMetrics()
412 int64_t stored_value; in GetInstallDate() local413 if (prefs->GetInt64(kPrefsInstallDateDays, &stored_value)) { in GetInstallDate()415 int install_date_days = static_cast<int>(stored_value); in GetInstallDate()
484 auto stored_value = btif_config_cache.GetString(section, key); in btif_config_get_str() local485 if (!stored_value) return false; in btif_config_get_str()486 strlcpy(value, stored_value->c_str(), *size_bytes); in btif_config_get_str()
1281 HInstruction* stored_value; member2497 HInstruction* stored_value = nullptr; in ProcessLoopPhiWithUnknownInput() local2501 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() local2850 if (store_record.old_value_record.value.Equals(stored_value)) { in FindStoresWritingOldValues()
563 void HInstructionBuilder::UpdateLocal(uint32_t reg_number, HInstruction* stored_value) { in UpdateLocal() argument564 DataType::Type stored_type = stored_value->GetType(); in UpdateLocal()586 (*current_locals_)[reg_number] = stored_value; in UpdateLocal()