Home
last modified time | relevance | path

Searched refs:tv_now (Results 1 – 3 of 3) sorted by relevance

/external/autotest/client/tests/aiostress/
Daio-stress.c452 struct timeval *tv_now) { in finish_io() argument
455 calc_latency(&io->io_start_time, tv_now, &t->io_completion_latency); in finish_io()
547 struct timeval tv_now; local
550 gettimeofday(&tv_now, NULL);
551 finish_io(t, event_io, event.res, &tv_now);
726 struct timeval *tv_now) argument
734 io->io_start_time = *tv_now; /* set time of io_submit */
/external/valgrind/coregrind/
Dm_libcproc.c924 struct vki_timeval tv_now; in VG_() local
927 res = VG_(do_syscall2)(__NR_gettimeofday, (UWord)&tv_now, (UWord)NULL); in VG_()
929 now = tv_now.tv_sec * 1000000ULL + tv_now.tv_usec; in VG_()
939 struct vki_timeval tv_now = { 0, 0 }; in VG_() local
940 res = VG_(do_syscall2)(__NR_gettimeofday, (UWord)&tv_now, (UWord)NULL); in VG_()
/external/valgrind/callgrind/
Dmain.c1717 struct vki_timeval tv_now; in CLG_() local
1718 VG_(gettimeofday)(&tv_now, NULL); in CLG_()
1719 syscalltime[tid] = tv_now.tv_sec * 1000000ULL + tv_now.tv_usec; in CLG_()
1734 struct vki_timeval tv_now; in CLG_() local
1737 VG_(gettimeofday)(&tv_now, NULL); in CLG_()
1738 diff = (tv_now.tv_sec * 1000000ULL + tv_now.tv_usec) - syscalltime[tid]; in CLG_()