Lines Matching refs:time

1198     struct timespec time;  in convertMonotonic()  member
1201 struct timespec time, convert; in convertMonotonic() local
1259 e = readSeconds(e, &time); in convertMonotonic()
1266 suspended_diff = time; in convertMonotonic()
1277 cp = readSeconds(cp - 10, &time); in convertMonotonic()
1290 time.tv_sec = mktime(&tm); in convertMonotonic()
1299 list->time = time; in convertMonotonic()
1300 subTimespec(&list->convert, &time, &monotonic); in convertMonotonic()
1305 if (subTimespec(&time, subTimespec(&time, &list->time, &list->convert), in convertMonotonic()
1314 time = suspended_monotonic; in convertMonotonic()
1315 sumTimespec(&time, &convert); in convertMonotonic()
1319 list->time = time; in convertMonotonic()
1325 list->time = time; in convertMonotonic()
1326 sumTimespec(&list->time, &suspended_diff); in convertMonotonic()
1338 clock_gettime(CLOCK_REALTIME, &list->time); in convertMonotonic()
1340 clock_gettime(CLOCK_MONOTONIC, &time); in convertMonotonic()
1342 subTimespec(&time, &convert, subTimespec(&time, &time, &convert)); in convertMonotonic()
1344 subTimespec(&list->convert, &list->time, &time); in convertMonotonic()
1349 time = suspended_monotonic; in convertMonotonic()
1350 sumTimespec(&time, &convert); in convertMonotonic()
1354 list->time = time; in convertMonotonic()
1355 sumTimespec(&list->time, &suspended_diff); in convertMonotonic()
1362 list->time = time; in convertMonotonic()
1373 if (entry->tv_sec < next->time.tv_sec) { in convertMonotonic()
1375 } else if (entry->tv_sec == next->time.tv_sec) { in convertMonotonic()
1376 if (entry->tv_nsec < next->time.tv_nsec) { in convertMonotonic()
1388 total = nsecTimespec(subTimespec(&time, &next->time, &list->time)); in convertMonotonic()
1389 time.tv_sec = entry->tv_sec; in convertMonotonic()
1390 time.tv_nsec = entry->tv_nsec; in convertMonotonic()
1391 run = nsecTimespec(subTimespec(&time, &time, &list->time)); in convertMonotonic()
1395 float f = nsecTimespec(subTimespec(&time, &next->convert, &convert)); in convertMonotonic()
1467 struct timespec time; in android_log_formatLogLine() local
1468 convertMonotonic(&time, entry); in android_log_formatLogLine()
1469 now = time.tv_sec; in android_log_formatLogLine()
1470 nsec = time.tv_nsec; in android_log_formatLogLine()