Searched refs:now (Results 1 – 7 of 7) sorted by relevance
123 time_t now = time(NULL); in GetIsoDate() local125 tm* ptm = localtime_r(&now, &tmbuf); in GetIsoDate()133 timespec now; in MilliTime() local134 clock_gettime(CLOCK_MONOTONIC, &now); in MilliTime()135 return static_cast<uint64_t>(now.tv_sec) * 1000LL + now.tv_nsec / 1000000LL; in MilliTime()137 timeval now; in MilliTime()138 gettimeofday(&now, NULL); in MilliTime()139 return static_cast<uint64_t>(now.tv_sec) * 1000LL + now.tv_usec / 1000LL; in MilliTime()145 timespec now; in MicroTime() local146 clock_gettime(CLOCK_MONOTONIC, &now); in MicroTime()[all …]
503 timespec now; in GetCpuMicroTime() local504 clock_gettime(cpu_clock_id, &now); in GetCpuMicroTime()505 return static_cast<uint64_t>(now.tv_sec) * 1000000LL + now.tv_nsec / 1000LL; in GetCpuMicroTime()
42 string1 value is now 'a new string'55 superInt value is now 2020256 superInt value (from short) is now 3030357 superInt value is now 4040484 cantTouchThis is now 9987 cantTouchThis is now 8788 cantTouchThis is now 88
5 Finalizer sleeping forever now.
593 int64_t now = MilliTime(); in LastDebuggerActivity() local594 CHECK_GE(now, last); in LastDebuggerActivity()596 VLOG(jdwp) << "+++ debugger interval=" << (now - last); in LastDebuggerActivity()597 return now - last; in LastDebuggerActivity()
457 time_t now; in getCurrentTime() local460 now = time(NULL); in getCurrentTime()461 ptm = localtime(&now); in getCurrentTime()
629 timeval now; in WriteFixedHeader() local631 if (gettimeofday(&now, NULL) < 0) { in WriteFixedHeader()634 nowMs = (uint64_t)now.tv_sec * 1000 + now.tv_usec / 1000; in WriteFixedHeader()