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

/dalvik/vm/native/
H A Djava_lang_System.cpp371 struct timeval tv; local
375 gettimeofday(&tv, (struct timezone *) NULL);
376 long long when = tv.tv_sec * 1000LL + tv.tv_usec / 1000;
/dalvik/vm/test/
H A DTestIndirectRefTable.cpp52 struct timeval tv;
53 gettimeofday(&tv, NULL);
54 return tv.tv_sec * 1000000LL + tv.tv_usec;
/dalvik/tools/dmtracedump/
H A DCreateTestTrace.c365 struct timeval tv; local
368 gettimeofday(&tv, &tz);
369 unsigned long long startTime = tv.tv_sec;
370 startTime = (startTime << 32) | tv.tv_usec;
/dalvik/vm/
H A DProfile.cpp109 struct timeval tv; local
111 gettimeofday(&tv, NULL);
112 return tv.tv_sec * 1000000LL + tv.tv_usec;
H A DSync.cpp557 struct timeval tv; local
558 gettimeofday(&tv, NULL);
559 ts->tv_sec = tv.tv_sec;
560 ts->tv_nsec = tv.tv_usec * 1000;
/dalvik/vm/jdwp/
H A DJdwpSocket.cpp281 struct timeval tv;
287 tv.tv_sec = 0;
288 tv.tv_usec = 0;
289 count = select(sock+1, &readfds, NULL, NULL, &tv);

Completed in 217 milliseconds