Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lldb/include/lldb/Target/
H A DStatistics.h27 using StatsTimepoint = std::chrono::time_point<StatsClock>; variable
71 StatsTimepoint m_start_time;
194 std::optional<StatsTimepoint> m_launch_or_attach_time;
195 std::optional<StatsTimepoint> m_first_private_stop_time;
196 std::optional<StatsTimepoint> m_first_public_stop_time;
/src/contrib/llvm-project/lldb/source/Target/
H A DStatistics.cpp39 static double elapsed(const StatsTimepoint &start, const StatsTimepoint &end) { in elapsed()