HomeSort by relevance Sort by last modified time
    Searched refs:PrettyDuration (Results 1 - 15 of 15) sorted by null

  /art/runtime/
utils_test.cc 161 TEST_F(UtilsTest, PrettyDuration) {
166 EXPECT_EQ("1s", PrettyDuration(1 * one_sec));
167 EXPECT_EQ("10s", PrettyDuration(10 * one_sec));
168 EXPECT_EQ("100s", PrettyDuration(100 * one_sec));
169 EXPECT_EQ("1.001s", PrettyDuration(1 * one_sec + one_ms));
170 EXPECT_EQ("1.000001s", PrettyDuration(1 * one_sec + one_us));
171 EXPECT_EQ("1.000000001s", PrettyDuration(1 * one_sec + 1));
173 EXPECT_EQ("1ms", PrettyDuration(1 * one_ms));
174 EXPECT_EQ("10ms", PrettyDuration(10 * one_ms));
175 EXPECT_EQ("100ms", PrettyDuration(100 * one_ms))
    [all...]
utils.h 234 std::string PrettyDuration(uint64_t nano_duration);
utils.cc 460 std::string PrettyDuration(uint64_t nano_duration) {
    [all...]
  /art/runtime/native/
dalvik_system_VMRuntime.cc 187 LOG(INFO) << "Heap trim of managed (duration=" << PrettyDuration(gc_heap_end_ns - start_ns)
189 << PrettyDuration(end_ns - gc_heap_end_ns) << ", advised=" << PrettySize(native_reclaimed)
  /art/runtime/base/
timing_logger.cc 226 LOG(INFO) << "End: " << label_ << " " << PrettyDuration(split_time);
265 LOG(INFO) << "End: " << label_ << " " << PrettyDuration(split_time) << "\n"
mutex.cc 244 << " times, average wait of contender " << PrettyDuration(wait_time / contention_count);
  /art/runtime/gc/
heap.cc 447 os << collector->GetName() << " total time: " << PrettyDuration(total_ns) << "\n"
448 << collector->GetName() << " paused time: " << PrettyDuration(total_pause_ns) << "\n"
462 os << "Total time spent in GC: " << PrettyDuration(total_duration) << "\n";
471 os << "Total time spent allocating: " << PrettyDuration(allocation_time) << "\n";
472 os << "Mean allocation time: " << PrettyDuration(allocation_time / total_objects_allocated)
475 os << "Total mutator paused time: " << PrettyDuration(total_paused_time) << "\n";
476 os << "Total time waiting for GC to complete: " << PrettyDuration(total_wait_time_) << "\n";
    [all...]
  /art/runtime/gc/space/
image_space.cc 241 LOG(INFO) << "ImageSpace::Init exiting (" << PrettyDuration(NanoTime() - start_time)
dlmalloc_space.cc 217 LOG(INFO) << "Space::CreateAllocSpace exiting (" << PrettyDuration(NanoTime() - start_time)
  /art/compiler/
image_writer.cc 182 LOG(INFO) << "RecordImageAllocations took " << PrettyDuration(NanoTime() - start_time);
  /art/dex2oat/
dex2oat.cc 170 VLOG(compiler) << "dex2oat took " << PrettyDuration(NanoTime() - start_ns_)
    [all...]
  /art/runtime/hprof/
hprof.cc 482 << ") in " << PrettyDuration(duration);
    [all...]
  /art/runtime/gc/collector/
mark_sweep.cc     [all...]
  /art/compiler/driver/
compiler_driver.cc     [all...]
  /art/runtime/verifier/
method_verifier.cc 264 << " took " << PrettyDuration(duration_ns);
    [all...]

Completed in 285 milliseconds