Searched refs:tv_now (Results 1 – 4 of 4) sorted by relevance
82 timeval tv_now, tv_report; in getDebugData() local85 gettimeofday(&tv_now, NULL); in getDebugData()87 (tv_now.tv_sec - tv_report.tv_sec) + in getDebugData()88 (float)((tv_now.tv_usec - tv_report.tv_usec)) / 1000000; in getDebugData()
89 struct timespec tv_now; in getDebugData() local90 clock_gettime(CLOCK_MONOTONIC, &tv_now); in getDebugData()92 (tv_now.tv_sec - reports.mLocation.mUtcReported.tv_sec) + in getDebugData()93 (float)((tv_now.tv_nsec - reports.mLocation.mUtcReported.tv_nsec)) / 1000000000LL; in getDebugData()