/art/libartbase/base/ |
D | time_utils.cc | 137 time_t now = time(nullptr); in GetIsoDate() local 138 localtime_s(&tmbuf, &now); in GetIsoDate() 142 timespec now; in GetIsoDate() local 143 clock_gettime(CLOCK_REALTIME, &now); in GetIsoDate() 144 tm* ptm = localtime_r(&now.tv_sec, &tmbuf); in GetIsoDate() 145 ns = now.tv_nsec; in GetIsoDate() 156 timespec now; in MilliTime() local 157 clock_gettime(CLOCK_MONOTONIC, &now); in MilliTime() 158 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000) + now.tv_nsec / UINT64_C(1000000); in MilliTime() 160 timeval now; in MilliTime() [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()
|
/art/test/1963-add-to-dex-classloader-in-memory/ |
D | expected.txt | 7 -- call TestClass again, now with NewClass refs 16 -- call TestClass again, now with NewClass refs
|
/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/1964-add-to-dex-classloader-file/ |
D | expected.txt | 7 -- call TestClass again, now with NewClass refs 20 -- call TestClass again, now with NewClass refs
|
/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 | 101 // Disable the compiler for CC (for 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/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/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/956-methodhandles/ |
D | expected.txt | 26 Don't expect Hi now
|
/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/libprofile/ |
D | Android.bp | 181 // For now many of these tests still use CommonRuntimeTest, almost universally because of
|
/art/runtime/hprof/ |
D | hprof.cc | 674 timeval now; in WriteFixedHeader() local 675 const uint64_t nowMs = (gettimeofday(&now, nullptr) < 0) ? 0 : in WriteFixedHeader() 676 (uint64_t)now.tv_sec * 1000 + now.tv_usec / 1000; in WriteFixedHeader()
|
/art/test/1975-hello-structural-transformation/ |
D | expected.txt | 98 CUR_CLASS is now (ID: 22) class art.Test1975
|
/art/tools/dexfuzz/ |
D | README | 72 DexFuzz now supports execution on your host machine.
|
/art/tools/ |
D | libcore_failures.txt | 65 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
|