• Home
  • Raw
  • Download

Lines Matching refs:time

1291     struct timespec time;  in convertMonotonic()  member
1294 struct timespec time, convert; in convertMonotonic() local
1352 e = readSeconds(e, &time); in convertMonotonic()
1359 suspended_diff = time; in convertMonotonic()
1370 cp = readSeconds(cp - 10, &time); in convertMonotonic()
1383 time.tv_sec = mktime(&tm); in convertMonotonic()
1392 list->time = time; in convertMonotonic()
1393 subTimespec(&list->convert, &time, &monotonic); in convertMonotonic()
1398 if (subTimespec(&time, subTimespec(&time, &list->time, &list->convert), in convertMonotonic()
1407 time = suspended_monotonic; in convertMonotonic()
1408 sumTimespec(&time, &convert); in convertMonotonic()
1412 list->time = time; in convertMonotonic()
1418 list->time = time; in convertMonotonic()
1419 sumTimespec(&list->time, &suspended_diff); in convertMonotonic()
1431 clock_gettime(CLOCK_REALTIME, &list->time); in convertMonotonic()
1433 clock_gettime(CLOCK_MONOTONIC, &time); in convertMonotonic()
1435 subTimespec(&time, &convert, subTimespec(&time, &time, &convert)); in convertMonotonic()
1437 subTimespec(&list->convert, &list->time, &time); in convertMonotonic()
1442 time = suspended_monotonic; in convertMonotonic()
1443 sumTimespec(&time, &convert); in convertMonotonic()
1447 list->time = time; in convertMonotonic()
1448 sumTimespec(&list->time, &suspended_diff); in convertMonotonic()
1455 list->time = time; in convertMonotonic()
1466 if (entry->tv_sec < next->time.tv_sec) { in convertMonotonic()
1468 } else if (entry->tv_sec == next->time.tv_sec) { in convertMonotonic()
1469 if (entry->tv_nsec < next->time.tv_nsec) { in convertMonotonic()
1481 total = nsecTimespec(subTimespec(&time, &next->time, &list->time)); in convertMonotonic()
1482 time.tv_sec = entry->tv_sec; in convertMonotonic()
1483 time.tv_nsec = entry->tv_nsec; in convertMonotonic()
1484 run = nsecTimespec(subTimespec(&time, &time, &list->time)); in convertMonotonic()
1488 float f = nsecTimespec(subTimespec(&time, &next->convert, &convert)); in convertMonotonic()
1562 struct timespec time; in android_log_formatLogLine() local
1563 convertMonotonic(&time, entry); in android_log_formatLogLine()
1564 now = time.tv_sec; in android_log_formatLogLine()
1565 nsec = time.tv_nsec; in android_log_formatLogLine()