Home
last modified time | relevance | path

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

/art/runtime/
Dutils.cc123 time_t now = time(NULL); in GetIsoDate() local
125 tm* ptm = localtime_r(&now, &tmbuf); in GetIsoDate()
133 timespec now; in MilliTime() local
134 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() local
146 clock_gettime(CLOCK_MONOTONIC, &now); in MicroTime()
[all …]
Dthread.cc503 timespec now; in GetCpuMicroTime() local
504 clock_gettime(cpu_clock_id, &now); in GetCpuMicroTime()
505 return static_cast<uint64_t>(now.tv_sec) * 1000000LL + now.tv_nsec / 1000LL; 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
84 cantTouchThis is now 99
87 cantTouchThis is now 87
88 cantTouchThis is now 88
/art/test/030-bad-finalizer/
Dexpected.txt5 Finalizer sleeping forever now.
/art/runtime/jdwp/
Djdwp_main.cc593 int64_t now = MilliTime(); in LastDebuggerActivity() local
594 CHECK_GE(now, last); in LastDebuggerActivity()
596 VLOG(jdwp) << "+++ debugger interval=" << (now - last); in LastDebuggerActivity()
597 return now - last; in LastDebuggerActivity()
/art/jdwpspy/
DNet.cpp457 time_t now; in getCurrentTime() local
460 now = time(NULL); in getCurrentTime()
461 ptm = localtime(&now); in getCurrentTime()
/art/runtime/hprof/
Dhprof.cc629 timeval now; in WriteFixedHeader() local
631 if (gettimeofday(&now, NULL) < 0) { in WriteFixedHeader()
634 nowMs = (uint64_t)now.tv_sec * 1000 + now.tv_usec / 1000; in WriteFixedHeader()