Searched refs:tv (Results 1 - 3 of 3) sorted by relevance

/art/runtime/base/
H A Dtime_utils.cc183 timeval tv;
184 gettimeofday(&tv, nullptr);
185 ts->tv_sec = tv.tv_sec;
186 ts->tv_nsec = tv.tv_usec * 1000;
/art/tools/dmtracedump/
H A Dcreatetesttrace.cc339 struct timeval tv; local
342 gettimeofday(&tv, &tz);
343 uint64_t startTime = tv.tv_sec;
344 startTime = (startTime << 32) | tv.tv_usec;
/art/runtime/openjdkjvm/
H A DOpenjdkJvm.cc208 struct timeval tv; local
209 gettimeofday(&tv, (struct timezone *) NULL);
210 jlong when = tv.tv_sec * 1000LL + tv.tv_usec / 1000;

Completed in 292 milliseconds