Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DStatistics.h27 using StatsTimepoint = std::chrono::time_point<StatsClock>; variable
71 StatsTimepoint m_start_time;
149 std::optional<StatsTimepoint> m_launch_or_attach_time;
150 std::optional<StatsTimepoint> m_first_private_stop_time;
151 std::optional<StatsTimepoint> m_first_public_stop_time;
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DStatistics.cpp36 static double elapsed(const StatsTimepoint &start, const StatsTimepoint &end) { in elapsed()