Home
last modified time | relevance | path

Searched refs:StatsTimepoint (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DStatistics.h30 using StatsTimepoint = std::chrono::time_point<StatsClock>; variable
79 StatsTimepoint m_start_time;
313 std::optional<StatsTimepoint> m_launch_or_attach_time;
314 std::optional<StatsTimepoint> m_first_private_stop_time;
315 std::optional<StatsTimepoint> m_first_public_stop_time;
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStatistics.cpp40 static double elapsed(const StatsTimepoint &start, const StatsTimepoint &end) { in elapsed()