Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DStatistics.h25 using StatsTimepoint = std::chrono::time_point<StatsClock>; variable
69 StatsTimepoint m_start_time;
143 llvm::Optional<StatsTimepoint> m_launch_or_attach_time;
144 llvm::Optional<StatsTimepoint> m_first_private_stop_time;
145 llvm::Optional<StatsTimepoint> m_first_public_stop_time;
/llvm-project-15.0.7/lldb/source/Target/
H A DStatistics.cpp36 static double elapsed(const StatsTimepoint &start, const StatsTimepoint &end) { in elapsed()