/art/libartbase/base/ |
D | time_utils.cc | 118 time_t now = time(nullptr); in GetIsoDate() local 120 tm* ptm = localtime_r(&now, &tmbuf); in GetIsoDate() 128 timespec now; in MilliTime() local 129 clock_gettime(CLOCK_MONOTONIC, &now); in MilliTime() 130 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000) + now.tv_nsec / UINT64_C(1000000); in MilliTime() 132 timeval now; in MilliTime() 133 gettimeofday(&now, nullptr); in MilliTime() 134 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000) + now.tv_usec / UINT64_C(1000); in MilliTime() 140 timespec now; in MicroTime() local 141 clock_gettime(CLOCK_MONOTONIC, &now); in MicroTime() [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/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/test/030-bad-finalizer/ |
D | expected.txt | 4 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/runtime/ |
D | barrier.cc | 83 uint64_t now = NanoTime(); in Increment() local 84 int64_t time_left = abs_timeout - now; in Increment()
|
D | runtime_options.def | 93 // Disable the compiler for CC (for now).
|
/art/test/956-methodhandles/ |
D | expected.txt | 25 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/1935-get-set-current-frame-jit/src/ |
D | Main.java | 67 Instant osrDeadline = Instant.now().plusSeconds(expectOsr ? 600 : 3); in run() 71 } while (hasJit() && !Main.isInOsrCode("run") && osrDeadline.compareTo(Instant.now()) > 0); in run()
|
/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/runtime/interpreter/mterp/x86/ |
D | op_mul_long.S | 29 leal (%ecx,rIBASE), rIBASE # full result now in rIBASE:%eax
|
D | op_mul_long_2addr.S | 29 leal (%ecx,rIBASE), rIBASE # full result now in %edx:%eax
|
/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/sigchainlib/ |
D | Android.bp | 43 // So disable sanitization for now. b/38456126
|
/art/libartbase/ |
D | Android.bp | 84 // 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/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/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 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/ |
D | heap.cc | 2704 uint64_t now = NanoTime(); in UpdateGcCountRateHistograms() local 2705 DCHECK_GE(now, last_update_time_gc_count_rate_histograms_); in UpdateGcCountRateHistograms() 2706 uint64_t time_since_last_update = now - last_update_time_gc_count_rate_histograms_; in UpdateGcCountRateHistograms() 2720 (now / kGcCountRateHistogramWindowDuration) * kGcCountRateHistogramWindowDuration; in UpdateGcCountRateHistograms()
|