Home
last modified time | relevance | path

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

/aosp12/system/extras/tests/pagingtest/
H A 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()
/aosp12/hardware/libhardware/modules/consumerir/
H A Dconsumerir.c43 int total_time = 0; in consumerir_transmit() local
47 total_time += pattern[i]; in consumerir_transmit()
50 ALOGD("transmit for %d uS at %d Hz", total_time, carrier_freq); in consumerir_transmit()
51 usleep(total_time); in consumerir_transmit()
/aosp12/art/runtime/base/
H A Dtiming_logger.cc179 DCHECK_EQ(ret.data_[open_idx].total_time, 0U); in CalculateTimingData()
180 ret.data_[open_idx].total_time += time; in CalculateTimingData()
215 uint64_t total_time = timing_data.GetTotalTime(i); in Dump() local
219 total_time -= total_time % mod_fraction; in Dump()
226 if (exclusive_time != total_time) { in Dump()
227 os << "/" << FormatDuration(total_time, tu, kFractionalDigits); in Dump()
H A Dtiming_logger.h143 return data_[idx].total_time; in GetTotalTime()
153 CalculatedDataPoint() : total_time(0), exclusive_time(0) {} in CalculatedDataPoint()
154 uint64_t total_time; member
/aosp12/frameworks/base/startop/scripts/app_startup/
H A Dparse_metrics176 total_time="-1"
184 total_time="$(echo "$input_line" | sed 's/TotalTime: \([[:digit:]]\+\)/\1/g')"
190 echo "TotalTime_ms=$total_time"
H A Drun_app_with_prefetch440total_time="$(timeout $timeout "$DIR/launch_application" "$package" "$activity" | "$DIR/parse_metr…
442total_time="$(timeout $timeout "$DIR/launch_application" "$package" "$activity" | "$DIR/parse_metr…
459 echo "Iteration $i. Total time was: $total_time"
461 timings_array+=("$total_time")
H A Drun_app_with_prefetch.py141 total_time = AppRunner.parse_total_time(am_start_output)
145 return 'TotalTime={}\nDisplayedTime={}'.format(total_time, displayed_time)
/aosp12/hardware/qcom/camera/msm8998/usbcamcore/src/
H A DQCameraMjpegDecode.cpp244 uint32_t total_time = 0; in decoder_test() local
496 total_time += diff; in decoder_test()
498 __func__, diff, i+1, total_time, total_time/(i+1)); in decoder_test()
510 … __func__, p_args->back_to_back_count, total_time, total_time/p_args->back_to_back_count); in decoder_test()
/aosp12/hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
H A Dmain.c737 double total_time; in main() local
886 total_time = (1.0 * inv_get_tick_count() - start_time) / 1000; in main()
887 if (total_time > 0) { in main()
889 sample_count, total_time , 1.0 * sample_count / total_time); in main()
/aosp12/frameworks/base/cmds/incident_helper/testdata/
H A Dkernel_wakeups.txt1 name active_count event_count wakeup_count expire_count active_since total_time max_time last_chan…
/aosp12/frameworks/base/core/java/android/os/
H A DEventLogTags.logtags5 230000 service_manager_stats (call_count|1),(total_time|1|3),(duration|1|3)
/aosp12/frameworks/base/startop/scripts/iorap/
H A Dcollector385 total_time="$(echo "$am_output" | grep 'TotalTime:' | sed 's/TotalTime: //g')"
386 verbose_print "total time: $total_time"
/aosp12/system/core/bootstat/
H A Dbootstat.cpp1178 int32_t total_time = 0; in GetBootloaderTime() local
1180 total_time += timing.second; in GetBootloaderTime()
1183 return total_time; in GetBootloaderTime()
1190 int32_t total_time = 0; in RecordBootloaderTimings() local
1192 total_time += timing.second; in RecordBootloaderTimings()
1196 boot_event_store->AddBootEventWithValue("boottime.bootloader.total", total_time); in RecordBootloaderTimings()
/aosp12/frameworks/base/core/proto/android/os/
H A Dkernelwake.proto44 optional int64 total_time = 7; field
H A Dcpu_usage.proto51 optional int32 total_time = 15; field
/aosp12/system/logging/liblog/tests/
H A 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()
/aosp12/hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/test/
H A Domx_vdec_test.cpp616 float total_time = 0; in fbd_thread() local
841 total_time = ((float) ((t_end.tv_sec - t_start.tv_sec) * 1e6 in fbd_thread()
845 printf("\nAvg decoding frame rate=%f\n", (fbd_cnt - 1)/total_time); in fbd_thread()
/aosp12/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/test/
H A Domx_vdec_test.cpp738 float total_time = 0; in fbd_thread() local
1044 total_time = ((float) ((t_end.tv_sec - t_start.tv_sec) * 1e6 in fbd_thread()
1048 printf("\nAvg decoding frame rate=%f\n", (fbd_cnt - 1)/total_time); in fbd_thread()
/aosp12/art/libprofile/profile/
H A Dprofile_compilation_info.cc1094 uint64_t total_time = NanoTime() - start; in Save() local
1099 VLOG(profiler) << "Time to save profile: " << std::to_string(total_time); in Save()