Searched refs:now (Results 1 - 5 of 5) sorted by relevance

/art/runtime/
H A Dbarrier.cc70 uint64_t now = NanoTime();
71 int64_t time_left = abs_timeout - now;
H A Dutils.cc133 time_t now = time(NULL); local
135 tm* ptm = localtime_r(&now, &tmbuf);
143 timespec now; local
144 clock_gettime(CLOCK_MONOTONIC, &now);
145 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000) + now.tv_nsec / UINT64_C(1000000);
147 timeval now;
148 gettimeofday(&now, NULL);
149 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000) + now
155 timespec now; local
167 timespec now; local
179 timespec now; local
[all...]
H A Dthread.cc612 timespec now; local
613 clock_gettime(cpu_clock_id, &now);
614 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000000) + now.tv_nsec / UINT64_C(1000);
720 // Checkpoint function installed now install flag bit.
1475 // Set the Object*s and assert that no thread suspension is now possible.
/art/runtime/jdwp/
H A Djdwp_main.cc380 * We processed this request and sent its reply. Notify other threads waiting for us they can now
519 /* if we had threads suspended, resume them now */
587 /* now get the current time */
588 int64_t now = MilliTime(); local
589 CHECK_GE(now, last);
591 VLOG(jdwp) << "+++ debugger interval=" << (now - last);
592 return now - last;
/art/runtime/hprof/
H A Dhprof.cc652 timeval now; local
654 if (gettimeofday(&now, NULL) < 0) {
657 nowMs = (uint64_t)now.tv_sec * 1000 + now.tv_usec / 1000;

Completed in 907 milliseconds