Home
last modified time | relevance | path

Searched refs:now (Results 1 – 25 of 27) sorted by relevance

12

/art/libartbase/base/
Dtime_utils.cc134 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/
Dti_phase.cc104 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 …]
Dti_timers.cc79 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()
Devents.cc449 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/
Dexpected.txt4 Finalizer sleeping forever now.
/art/test/1336-short-finalizer-timeout/
Dexpected.txt5 Finalizer sleeping forever now.
/art/test/451-regression-add-float/
Dinfo.txt2 could be now be a constant for floating point numbers.
/art/test/046-reflect/
Dexpected.txt42 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/
Dbarrier.cc84 uint64_t now = NanoTime(); in Increment() local
85 int64_t time_left = abs_timeout - now; in Increment()
Druntime_options.def95 // Disable the compiler for CC (for now).
/art/test/956-methodhandles/
Dexpected.txt26 Don't expect Hi now
/art/test/142-classloader2/smali/
DMyPathClassLoader.smali2 # We need to use smali right now to subclass a libcore class, see b/24304298.
/art/test/996-breakpoint-obsolete/
Dexpected.txt7 Setting breakpoint on now obsolete method to line 40
/art/test/800-smali/smali/
Db_22331663_fail.smali16 # be movable now, so ensure that we do not get a conflict (and then allow the move).
/art/tools/dexfuzz/src/dexfuzz/listeners/
DLogFileListener.java107 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/
DMain.java72 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/
Djdwp_main.cc741 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/
DAndroid.bp139 // For now many of these tests still use CommonRuntimeTest, almost universally because of
/art/test/924-threads/src/art/
DTest924.java226 Instant deadline = Instant.now().plusSeconds(60 * 5); in waitForState()
227 while ((state = getThreadState(t)) != desired && deadline.isAfter(Instant.now())) { in waitForState()
/art/runtime/hprof/
Dhprof.cc675 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/
DREADME74 DexFuzz now supports execution on your host machine.
/art/tools/
Dlibcore_failures.txt57 description: "Issue with incorrect device time (1970). Test assumes that DateTime.now()
/art/runtime/interpreter/mterp/x86/
Darithmetic.S591 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/
Dexpected.txt73 Controller3 now holds the lock the monitor wait will try to re-acquire
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S117 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())

12