Searched refs:FormatTimeDelta (Results 1 – 7 of 7) sorted by relevance
/aosp12/system/update_engine/common/ |
H A D | utils_unittest.cc | 202 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromMilliseconds(100)), in TEST() 204 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(0)), "0s"); in TEST() 210 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(1205)), in TEST() 212 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(3600)), in TEST() 214 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(3601)), in TEST() 216 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(3661)), in TEST() 218 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(7261)), in TEST() 220 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(86400)), in TEST() 222 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(86401)), in TEST() 224 EXPECT_EQ(utils::FormatTimeDelta(base::TimeDelta::FromSeconds(200000)), in TEST() [all …]
|
H A D | utils.h | 268 std::string FormatTimeDelta(base::TimeDelta delta);
|
H A D | utils.cc | 719 return FormatTimeDelta(TimeDelta::FromSeconds(secs)); in FormatSecs() 722 string FormatTimeDelta(TimeDelta delta) { in FormatTimeDelta() function
|
/aosp12/system/update_engine/cros/ |
H A D | payload_state.cc | 569 << utils::FormatTimeDelta(next_backoff_interval); in UpdateBackoffExpiryTime() 1059 << utils::FormatTimeDelta(duration_according_to_stored_time) in LoadUpdateTimestampStart() 1102 << utils::FormatTimeDelta(stored_delta) in LoadUpdateDurationUptime() 1103 << ") in persisted state is " << utils::FormatTimeDelta(diff) in LoadUpdateDurationUptime() 1155 << utils::FormatTimeDelta(update_duration_uptime_); in SetUpdateDurationUptimeExtended() 1419 << utils::FormatTimeDelta(time_spent_attempting_p2p) in P2PAttemptAllowed() 1421 << utils::FormatTimeDelta( in P2PAttemptAllowed()
|
H A D | update_attempter.cc | 227 << utils::FormatTimeDelta(time_reported_since) << " ago " in CheckAndReportDailyMetrics() 235 << utils::FormatTimeDelta(time_reported_since) << " ago."; in CheckAndReportDailyMetrics() 239 << utils::FormatTimeDelta(time_reported_since) << " ago, " in CheckAndReportDailyMetrics() 265 LOG(ERROR) << "The OS age (" << utils::FormatTimeDelta(age) in ReportOSAge()
|
/aosp12/system/update_engine/update_manager/ |
H A D | boxed_value.cc | 97 return chromeos_update_engine::utils::FormatTimeDelta(*val);
|
H A D | evaluation_context.cc | 220 << chromeos_update_engine::utils::FormatTimeDelta(timeout); in RunOnValueChangeOrTimeout()
|