Searched refs:m_total (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | Progress.cpp | 33 : m_total(total.value_or(Progress::kNonDeterministicTotal)), in Progress() 58 m_completed = m_total; in ~Progress() 95 if (m_prev_completed >= m_total) in ReportProgress() 99 std::min(m_completed.load(std::memory_order_relaxed), m_total); in ReportProgress() 109 m_total, m_debugger_id, progress_category_bit); in ReportProgress()
|
| H A D | DebuggerEvents.cpp | 39 if (m_completed == 0 || m_completed == m_total) in Dump() 45 if (m_total != Progress::kNonDeterministicTotal) in Dump() 46 s->Printf(", progress = %" PRIu64 " of %" PRIu64, m_completed, m_total); in Dump()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | DebuggerEvents.h | 28 m_id(progress_id), m_completed(completed), m_total(total), in ProgressEventData() 43 bool IsFinite() const { return m_total != Progress::kNonDeterministicTotal; } in IsFinite() 45 uint64_t GetTotal() const { return m_total; } in GetTotal() 71 const uint64_t m_total; variable
|
| H A D | Progress.h | 128 const uint64_t m_total; variable
|