Home
last modified time | relevance | path

Searched refs:now (Results 1 – 6 of 6) sorted by relevance

/art/runtime/
Dutils.cc133 time_t now = time(NULL); in GetIsoDate() local
135 tm* ptm = localtime_r(&now, &tmbuf); in GetIsoDate()
143 timespec now; in MilliTime() local
144 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() local
156 clock_gettime(CLOCK_MONOTONIC, &now); in MicroTime()
[all …]
Dthread.cc600 timespec now; in GetCpuMicroTime() local
601 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()
/art/test/046-reflect/
Dexpected.txt42 string1 value is now 'a new string'
55 superInt value is now 20202
56 superInt value (from short) is now 30303
57 superInt value is now 40404
88 cantTouchThis is now 87
89 cantTouchThis is now 88
/art/test/030-bad-finalizer/
Dexpected.txt4 Finalizer sleeping forever now.
/art/runtime/jdwp/
Djdwp_main.cc588 int64_t now = MilliTime(); in LastDebuggerActivity() local
589 CHECK_GE(now, last); in LastDebuggerActivity()
591 VLOG(jdwp) << "+++ debugger interval=" << (now - last); in LastDebuggerActivity()
592 return now - last; in LastDebuggerActivity()
/art/runtime/hprof/
Dhprof.cc646 timeval now; in WriteFixedHeader() local
648 if (gettimeofday(&now, NULL) < 0) { in WriteFixedHeader()
651 nowMs = (uint64_t)now.tv_sec * 1000 + now.tv_usec / 1000; in WriteFixedHeader()