Home
last modified time | relevance | path

Searched refs:GetTotalNs (Results 1 – 5 of 5) sorted by relevance

/art/runtime/base/
Dtiming_logger.h39 uint64_t GetTotalNs() const { in GetTotalNs() function
150 uint64_t GetTotalNs() const;
Dtiming_logger.cc149 uint64_t TimingLogger::GetTotalNs() const { in GetTotalNs() function in art::TimingLogger
232 os << name_ << ": end, " << PrettyDuration(GetTotalNs()) << "\n"; in Dump()
/art/runtime/gc/collector/
Dgarbage_collector.cc136 return (total_freed_bytes_ * 1000) / (NsToMs(GetCumulativeTimings().GetTotalNs()) + 1); in GetEstimatedMeanThroughput()
/art/dex2oat/
Ddex2oat.cc1484 if (dump_timing || (dump_slow_timing && timings.GetTotalNs() > MsToNs(1000))) { in dex2oat()
1533 if (dump_timing || (dump_slow_timing && timings.GetTotalNs() > MsToNs(1000))) { in dex2oat()
/art/runtime/gc/
Dheap.cc808 const uint64_t total_ns = logger.GetTotalNs(); in DumpGcPerformanceInfo()
810 double seconds = NsToMs(logger.GetTotalNs()) / 1000.0; in DumpGcPerformanceInfo()