/art/libartbase/base/ |
D | time_utils.cc | 134 time_t now = time(nullptr); in GetIsoDate() local 137 localtime_s(&tmbuf, &now); in GetIsoDate() 140 tm* ptm = localtime_r(&now, &tmbuf); in GetIsoDate() 149 timespec now; in MilliTime() local 150 clock_gettime(CLOCK_MONOTONIC, &now); in MilliTime() 151 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000) + now.tv_nsec / UINT64_C(1000000); in MilliTime() 153 timeval now; in MilliTime() 154 GetTimeOfDay(&now, nullptr); in MilliTime() 155 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000) + now.tv_usec / UINT64_C(1000); in MilliTime() 161 timespec now; in MicroTime() local [all …]
|
/art/openjdkjvmti/ |
D | ti_phase.cc | 104 jvmtiPhase now = PhaseUtil::current_phase_; in GetPhase() local 105 DCHECK(now == JVMTI_PHASE_ONLOAD || in GetPhase() 106 now == JVMTI_PHASE_PRIMORDIAL || in GetPhase() 107 now == JVMTI_PHASE_START || in GetPhase() 108 now == JVMTI_PHASE_LIVE || in GetPhase() 109 now == JVMTI_PHASE_DEAD); in GetPhase() 110 *phase_ptr = now; in GetPhase() 115 jvmtiPhase now = PhaseUtil::current_phase_; in IsLivePhase() local 116 DCHECK(now == JVMTI_PHASE_ONLOAD || in IsLivePhase() 117 now == JVMTI_PHASE_PRIMORDIAL || in IsLivePhase() [all …]
|
D | ti_timers.cc | 79 struct timespec now; in GetTime() local 80 clock_gettime(CLOCK_MONOTONIC, &now); in GetTime() 81 *nanos_ptr = now.tv_sec * 1000000000LL + now.tv_nsec; in GetTime()
|
D | events.cc | 449 int64_t now = tv.tv_sec * 1000LL + tv.tv_usec / 1000; in ThreadParkStart() local 450 if (now < timeout) { in ThreadParkStart() 451 timeout_ms = timeout - now; in ThreadParkStart()
|
/art/test/030-bad-finalizer/ |
D | expected.txt | 4 Finalizer sleeping forever now.
|
/art/test/1336-short-finalizer-timeout/ |
D | expected.txt | 5 Finalizer sleeping forever now.
|
/art/test/451-regression-add-float/ |
D | info.txt | 2 could be now be a constant for floating point numbers.
|
/art/test/046-reflect/ |
D | expected.txt | 42 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/runtime/ |
D | barrier.cc | 84 uint64_t now = NanoTime(); in Increment() local 85 int64_t time_left = abs_timeout - now; in Increment()
|
D | runtime_options.def | 95 // Disable the compiler for CC (for now).
|
/art/test/956-methodhandles/ |
D | expected.txt | 26 Don't expect Hi now
|
/art/test/142-classloader2/smali/ |
D | MyPathClassLoader.smali | 2 # We need to use smali right now to subclass a libcore class, see b/24304298.
|
/art/test/996-breakpoint-obsolete/ |
D | expected.txt | 7 Setting breakpoint on now obsolete method to line 40
|
/art/test/800-smali/smali/ |
D | b_22331663_fail.smali | 16 # be movable now, so ensure that we do not get a conflict (and then allow the move).
|
/art/tools/dexfuzz/src/dexfuzz/listeners/ |
D | LogFileListener.java | 107 Date now = new Date(System.currentTimeMillis()); in handleIterationStarted() local 108 write("Time started: " + now.toString()); in handleIterationStarted()
|
/art/test/1935-get-set-current-frame-jit/src/ |
D | Main.java | 72 Instant osrDeadline = Instant.now().plusSeconds(expectOsr ? 600 : 3); in run() 76 } while (normalJit && !Main.isInOsrCode("run") && osrDeadline.compareTo(Instant.now()) > 0); in run()
|
/art/runtime/jdwp/ |
D | jdwp_main.cc | 741 int64_t now = MilliTime(); in LastDebuggerActivity() local 742 CHECK_GE(now, last); in LastDebuggerActivity() 744 VLOG(jdwp) << "+++ debugger interval=" << (now - last); in LastDebuggerActivity() 745 return now - last; in LastDebuggerActivity()
|
/art/libprofile/ |
D | Android.bp | 139 // For now many of these tests still use CommonRuntimeTest, almost universally because of
|
/art/test/924-threads/src/art/ |
D | Test924.java | 226 Instant deadline = Instant.now().plusSeconds(60 * 5); in waitForState() 227 while ((state = getThreadState(t)) != desired && deadline.isAfter(Instant.now())) { in waitForState()
|
/art/runtime/hprof/ |
D | hprof.cc | 675 timeval now; in WriteFixedHeader() local 676 const uint64_t nowMs = (gettimeofday(&now, nullptr) < 0) ? 0 : in WriteFixedHeader() 677 (uint64_t)now.tv_sec * 1000 + now.tv_usec / 1000; in WriteFixedHeader()
|
/art/tools/dexfuzz/ |
D | README | 74 DexFuzz now supports execution on your host machine.
|
/art/tools/ |
D | libcore_failures.txt | 57 description: "Issue with incorrect device time (1970). Test assumes that DateTime.now()
|
/art/runtime/interpreter/mterp/x86/ |
D | arithmetic.S | 591 leal (%ecx,rIBASE), rIBASE # full result now in rIBASE:%eax 626 leal (%ecx,rIBASE), rIBASE # full result now in %edx:%eax
|
/art/test/1932-monitor-events-misc/ |
D | expected.txt | 73 Controller3 now holds the lock the monitor wait will try to re-acquire
|
/art/runtime/arch/mips64/ |
D | quick_entrypoints_mips64.S | 117 sd $t8, 56($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 1438 # move $a0, \rRef # pass ref in a0 (no-op for now since parameter ref is unused) 2342 # $t2 now holds min(this.length(),anotherString.length())
|