Searched refs:now (Results 1 – 6 of 6) sorted by relevance
133 time_t now = time(NULL); in GetIsoDate() local135 tm* ptm = localtime_r(&now, &tmbuf); in GetIsoDate()143 timespec now; in MilliTime() local144 clock_gettime(CLOCK_MONOTONIC, &now); in MilliTime()145 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000) + now.tv_nsec / UINT64_C(1000000); in MilliTime()147 timeval now; in MilliTime()148 gettimeofday(&now, NULL); in MilliTime()149 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000) + now.tv_usec / UINT64_C(1000); in MilliTime()155 timespec now; in MicroTime() local156 clock_gettime(CLOCK_MONOTONIC, &now); in MicroTime()[all …]
600 timespec now; in GetCpuMicroTime() local601 clock_gettime(cpu_clock_id, &now); in GetCpuMicroTime()602 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000000) + now.tv_nsec / UINT64_C(1000); 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 4040488 cantTouchThis is now 8789 cantTouchThis is now 88
4 Finalizer sleeping forever now.
588 int64_t now = MilliTime(); in LastDebuggerActivity() local589 CHECK_GE(now, last); in LastDebuggerActivity()591 VLOG(jdwp) << "+++ debugger interval=" << (now - last); in LastDebuggerActivity()592 return now - last; in LastDebuggerActivity()
646 timeval now; in WriteFixedHeader() local648 if (gettimeofday(&now, NULL) < 0) { in WriteFixedHeader()651 nowMs = (uint64_t)now.tv_sec * 1000 + now.tv_usec / 1000; in WriteFixedHeader()