Lines Matching refs:tv_nsec
501 entry->tv_nsec = buf->nsec; in android_log_processLogBuffer()
1008 entry->tv_nsec = buf->nsec; in android_log_processBinaryLogBuffer()
1253 t->tv_nsec = 0; in readSeconds()
1256 t->tv_nsec += (*p - '0') * multiplier; in readSeconds()
1262 left->tv_nsec += right->tv_nsec; in sumTimespec()
1264 if (left->tv_nsec >= (long)NS_PER_SEC) { in sumTimespec()
1265 left->tv_nsec -= NS_PER_SEC; in sumTimespec()
1273 result->tv_nsec = left->tv_nsec - right->tv_nsec; in subTimespec()
1275 if (result->tv_nsec < 0) { in subTimespec()
1276 result->tv_nsec += NS_PER_SEC; in subTimespec()
1283 return (long long)now->tv_sec * NS_PER_SEC + now->tv_nsec; in nsecTimespec()
1469 if (entry->tv_nsec < next->time.tv_nsec) { in convertMonotonic()
1483 time.tv_nsec = entry->tv_nsec; in convertMonotonic()
1494 convert.tv_nsec -= (-crun) % NS_PER_SEC; in convertMonotonic()
1495 if (convert.tv_nsec < 0) { in convertMonotonic()
1496 convert.tv_nsec += NS_PER_SEC; in convertMonotonic()
1500 convert.tv_nsec += crun % NS_PER_SEC; in convertMonotonic()
1501 if (convert.tv_nsec >= (long)NS_PER_SEC) { in convertMonotonic()
1502 convert.tv_nsec -= NS_PER_SEC; in convertMonotonic()
1511 result->tv_nsec = entry->tv_nsec; in convertMonotonic()
1557 nsec = entry->tv_nsec; in android_log_formatLogLine()
1565 nsec = time.tv_nsec; in android_log_formatLogLine()