Searched defs:now (Results 1 - 5 of 5) sorted by path

/art/runtime/base/
H A Dtime_utils.cc115 time_t now = time(nullptr); local
117 tm* ptm = localtime_r(&now, &tmbuf);
125 timespec now; local
126 clock_gettime(CLOCK_MONOTONIC, &now);
127 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000) + now.tv_nsec / UINT64_C(1000000);
129 timeval now;
130 gettimeofday(&now, nullptr);
131 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000) + now
137 timespec now; local
149 timespec now; local
161 timespec now; local
[all...]
/art/runtime/gc/
H A Dheap.cc560 // now. We don't create it earlier to make it clear that you can't use locks during heap
1709 // A GC was in progress and we blocked, retry allocation now that memory has been freed.
1760 // Most allocations should have succeeded by now, so the heap is really full, really fragmented,
2156 // Use the now empty main space mem map for the bump pointer temp space.
2513 // Remove the remembered set for the now zygote space (the old
2514 // non-moving space). Note now that we have compacted objects into
2807 uint64_t now = NanoTime(); local
2808 DCHECK_GE(now, last_update_time_gc_count_rate_histograms_);
2809 uint64_t time_since_last_update = now - last_update_time_gc_count_rate_histograms_;
2823 (now / kGcCountRateHistogramWindowDuratio
[all...]
/art/runtime/hprof/
H A Dhprof.cc652 timeval now; local
653 const uint64_t nowMs = (gettimeofday(&now, nullptr) < 0) ? 0 :
654 (uint64_t)now.tv_sec * 1000 + now.tv_usec / 1000;
/art/runtime/jdwp/
H A Djdwp_main.cc552 /* if we had threads suspended, resume them now */
620 /* now get the current time */
621 int64_t now = MilliTime(); local
622 CHECK_GE(now, last);
624 VLOG(jdwp) << "+++ debugger interval=" << (now - last);
625 return now - last;
/art/runtime/
H A Dthread.cc552 // this is normally done once in the zygote on startup, ignore for now.
654 // pthread_create started the new thread. The child is now responsible for managing the
974 timespec now; local
975 clock_gettime(cpu_clock_id, &now);
976 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000000) + now.tv_nsec / UINT64_C(1000);
1166 // Checkpoint function installed now install flag bit.
2598 // now requires deoptimization. It may happen if a debugger is attached and requests

Completed in 104 milliseconds