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

/art/libartbase/base/
H A Dtime_utils.cc118 time_t now = time(nullptr); local
120 tm* ptm = localtime_r(&now, &tmbuf);
128 timespec now; local
129 clock_gettime(CLOCK_MONOTONIC, &now);
130 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000) + now.tv_nsec / UINT64_C(1000000);
132 timeval now;
133 gettimeofday(&now, nullptr);
134 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000) + now
140 timespec now; local
152 timespec now; local
164 timespec now; local
175 timespec now; local
[all...]
/art/openjdkjvmti/
H A Dti_phase.cc90 // TODO: Block events now.
104 jvmtiPhase now = PhaseUtil::current_phase_; local
105 DCHECK(now == JVMTI_PHASE_ONLOAD ||
106 now == JVMTI_PHASE_PRIMORDIAL ||
107 now == JVMTI_PHASE_START ||
108 now == JVMTI_PHASE_LIVE ||
109 now == JVMTI_PHASE_DEAD);
110 *phase_ptr = now;
115 jvmtiPhase now = PhaseUtil::current_phase_; local
116 DCHECK(now
[all...]
H A Dti_timers.cc79 struct timespec now; local
80 clock_gettime(CLOCK_MONOTONIC, &now);
81 *nanos_ptr = now.tv_sec * 1000000000LL + now.tv_nsec;
/art/runtime/
H A Dbarrier.cc83 uint64_t now = NanoTime();
84 int64_t time_left = abs_timeout - now;
H A Dthread.cc694 // pthread_create started the new thread. The child is now responsible for managing the
1187 timespec now; local
1188 clock_gettime(cpu_clock_id, &now);
1189 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000000) + now.tv_nsec / UINT64_C(1000);
1398 // Succeeded setting checkpoint flag, now insert the actual checkpoint.
2056 // The thread counts as started from now on. We need to add it to the ThreadGroup. For regular
3352 // now requires deoptimization. It may happen if a debugger is attached and requests
/art/runtime/interpreter/mterp/x86/
H A Dop_mul_long.S29 leal (%ecx,rIBASE), rIBASE # full result now in rIBASE:%eax
H A Dop_mul_long_2addr.S29 leal (%ecx,rIBASE), rIBASE # full result now in %edx:%eax
/art/test/1935-get-set-current-frame-jit/src/
H A DMain.java67 Instant osrDeadline = Instant.now().plusSeconds(expectOsr ? 600 : 3);
71 } while (hasJit() && !Main.isInOsrCode("run") && osrDeadline.compareTo(Instant.now()) > 0);
/art/tools/dexfuzz/src/dexfuzz/listeners/
H A DLogFileListener.java107 Date now = new Date(System.currentTimeMillis());
108 write("Time started: " + now.toString());
142 // is taking place, so flush the writer now.
/art/runtime/jdwp/
H A Djdwp_main.cc672 /* if we had threads suspended, resume them now */
740 /* now get the current time */
741 int64_t now = MilliTime(); local
742 CHECK_GE(now, last);
744 VLOG(jdwp) << "+++ debugger interval=" << (now - last);
745 return now - last;
/art/runtime/hprof/
H A Dhprof.cc674 timeval now; local
675 const uint64_t nowMs = (gettimeofday(&now, nullptr) < 0) ? 0 :
676 (uint64_t)now.tv_sec * 1000 + now.tv_usec / 1000;
/art/runtime/arch/mips64/
H A Dquick_entrypoints_mips64.S60 sd $t8, 136($sp) # t8 holds caller's gp, now save it to the stack.
117 sd $t8, 56($sp) # t8 holds caller's gp, now save it to the stack.
218 sd $t8, 184($sp) # t8 holds caller's gp, now save it to the stack.
650 sd $t8, 80($sp) # t8 holds caller's gp, now save it to the stack.
705 ld $t0, 88($sp) # save SP into t0 for now
737 // Use simple copy routine for now.
1432 # move $a0, \rRef # pass ref in a0 (no-op for now since parameter ref is unused)
2319 # $t2 now holds min(this.length(),anotherString.length())
/art/runtime/gc/
H A Dheap.cc557 // now. We don't create it earlier to make it clear that you can't use locks during heap
1595 // A GC was in progress and we blocked, retry allocation now that memory has been freed.
1646 // Most allocations should have succeeded by now, so the heap is really full, really fragmented,
2029 // Use the now empty main space mem map for the bump pointer temp space.
2373 // Remove the remembered set for the now zygote space (the old
2374 // non-moving space). Note now that we have compacted objects into
2556 // old_native_bytes_allocated_ now that GC has been triggered, resetting
2704 uint64_t now = NanoTime(); local
2705 DCHECK_GE(now, last_update_time_gc_count_rate_histograms_);
2706 uint64_t time_since_last_update = now
[all...]
/art/runtime/interpreter/mterp/out/
H A Dmterp_mips64.S2857 ADVANCE 2 # Past exception point - now advance rPC
2880 ADVANCE 2 # Past exception point - now advance rPC
2921 ADVANCE 2 # Past exception point - now advance rPC
2947 ADVANCE 2 # Past exception point - now advance rPC
2973 ADVANCE 2 # Past exception point - now advance rPC
2999 ADVANCE 2 # Past exception point - now advance rPC
12368 * On-stack replacement has happened, and now we've returned from the compiled method.
H A Dmterp_arm.S35 dex_pc_, method_ and number_of_vregs_ via negative offsets. For now, we'll continue
2878 ADVANCE 2 @ Past exception point - now advance rPC
2902 ADVANCE 2 @ Past exception point - now advance rPC
2943 ADVANCE 2 @ Past exception point - now advance rPC
2969 ADVANCE 2 @ Past exception point - now advance rPC
2995 ADVANCE 2 @ Past exception point - now advance rPC
3021 ADVANCE 2 @ Past exception point - now advance rPC
12180 * On-stack replacement has happened, and now we've returned from the compiled method.
H A Dmterp_x86.S35 dex_pc_, method_ and number_of_vregs_ via negative offsets. For now, we'll continue
4300 leal (%ecx,rIBASE), rIBASE # full result now in rIBASE:%eax
5027 leal (%ecx,rIBASE), rIBASE # full result now in %edx:%eax
12886 * On-stack replacement has happened, and now we've returned from the compiled method.
/art/runtime/arch/arm/
H A Dquick_entrypoints_arm.S867 @ mov r0, \rRef @ pass ref in r0 (no-op for now since parameter ref is unused)
/art/runtime/arch/mips/
H A Dquick_entrypoints_mips.S1492 # move $a0, \rRef # pass ref in a0 (no-op for now since parameter ref is unused)
2600 # $t2 now holds min(this.length(),anotherString.length())

Completed in 2301 milliseconds