Lines Matching refs:tv_nsec
504 entry->tv_nsec = buf->nsec; in android_log_processLogBuffer()
983 entry->tv_nsec = buf->nsec; in android_log_processBinaryLogBuffer()
1161 t->tv_nsec = 0; in readSeconds()
1164 t->tv_nsec += (*p - '0') * multiplier; in readSeconds()
1170 left->tv_nsec += right->tv_nsec; in sumTimespec()
1172 if (left->tv_nsec >= (long)NS_PER_SEC) { in sumTimespec()
1173 left->tv_nsec -= NS_PER_SEC; in sumTimespec()
1181 result->tv_nsec = left->tv_nsec - right->tv_nsec; in subTimespec()
1183 if (result->tv_nsec < 0) { in subTimespec()
1184 result->tv_nsec += NS_PER_SEC; in subTimespec()
1191 return (long long)now->tv_sec * NS_PER_SEC + now->tv_nsec; in nsecTimespec()
1376 if (entry->tv_nsec < next->time.tv_nsec) { in convertMonotonic()
1390 time.tv_nsec = entry->tv_nsec; in convertMonotonic()
1401 convert.tv_nsec -= (-crun) % NS_PER_SEC; in convertMonotonic()
1402 if (convert.tv_nsec < 0) { in convertMonotonic()
1403 convert.tv_nsec += NS_PER_SEC; in convertMonotonic()
1407 convert.tv_nsec += crun % NS_PER_SEC; in convertMonotonic()
1408 if (convert.tv_nsec >= (long)NS_PER_SEC) { in convertMonotonic()
1409 convert.tv_nsec -= NS_PER_SEC; in convertMonotonic()
1418 result->tv_nsec = entry->tv_nsec; in convertMonotonic()
1464 nsec = entry->tv_nsec; in android_log_formatLogLine()
1470 nsec = time.tv_nsec; in android_log_formatLogLine()