Home
last modified time | relevance | path

Searched refs:total_time (Results 1 – 4 of 4) sorted by relevance

/system/extras/tests/pagingtest/
Dthrashing_test.c20 struct timeval begin_time, end_time, elapsed_time, total_time; in thrashing_test() local
25 timerclear(&total_time); in thrashing_test()
68 timeradd(&total_time, &elapsed_time, &total_time); in thrashing_test()
74 (1024 * 1024 * (total_time.tv_sec * USEC_PER_SEC + total_time.tv_usec))); in thrashing_test()
/system/extras/simpleperf/scripts/
Ddebug_unwind_reporter.py113 self.total_time = 0
118 self.total_time += used_time
274 print(' total time: %f ms' % (self.unwinding_times.total_time / 1e6))
278 self.unwinding_times.total_time / 1e3 / self.unwinding_times.count))
/system/core/bootstat/
Dbootstat.cpp1177 int32_t total_time = 0; in GetBootloaderTime() local
1179 total_time += timing.second; in GetBootloaderTime()
1182 return total_time; in GetBootloaderTime()
1189 int32_t total_time = 0; in RecordBootloaderTimings() local
1191 total_time += timing.second; in RecordBootloaderTimings()
1195 boot_event_store->AddBootEventWithValue("boottime.bootloader.total", total_time); in RecordBootloaderTimings()
/system/core/liblog/tests/
Dliblog_test.cpp1651 useconds_t total_time = 0; in TEST() local
1655 for (; total_time < max_time; total_time += rest) { in TEST()
1659 if (total_time > rest) { in TEST()
1661 (unsigned)(total_time / seconds), in TEST()
1662 (unsigned)(total_time % seconds)); in TEST()