Home
last modified time | relevance | path

Searched refs:timed_out (Results 1 – 16 of 16) sorted by relevance

/art/runtime/
Dbarrier.cc81 bool timed_out = false; in Increment() local
86 timed_out = condition_->TimedWait(self, timeout_ms, timeout_ns); in Increment()
87 if (timed_out || count_ == 0) return timed_out; in Increment()
96 return timed_out; in Increment()
Druntime_callbacks.h133 virtual void MonitorWaitFinished(Monitor* m, bool timed_out)
147 virtual void ThreadParkFinished(bool timed_out) REQUIRES_SHARED(Locks::mutator_lock_) = 0;
229 void MonitorWaitFinished(Monitor* m, bool timed_out)
236 void ThreadParkFinished(bool timed_out) REQUIRES_SHARED(Locks::mutator_lock_);
Dexec_utils.cc146 bool timed_out = false; in WaitChildWithTimeoutFallback() local
153 timed_out = true; in WaitChildWithTimeoutFallback()
168 if (timed_out) { in WaitChildWithTimeoutFallback()
Dthread_list.cc231 bool timed_out = barrier_.Increment(self, threads_running_checkpoint, kDumpWaitTimeout); in WaitForThreadsToRunThroughCheckpoint() local
232 if (timed_out) { in WaitForThreadsToRunThroughCheckpoint()
480 bool timed_out = barrier->Increment(self, barrier_count, kEmptyCheckpointPeriodicTimeoutMs); in RunEmptyCheckpoint() local
481 if (!timed_out) { in RunEmptyCheckpoint()
Dmonitor.cc869 bool timed_out = false; in Wait() local
910 timed_out = self->GetWaitConditionVariable()->TimedWait(self, ms, ns); in Wait()
944 Runtime::Current()->GetRuntimeCallbacks()->MonitorWaitFinished(this, timed_out); in Wait()
Druntime_callbacks_test.cc484 void MonitorWaitFinished(Monitor* m, [[maybe_unused]] bool timed_out) override in MonitorWaitFinished()
Dthread.cc322 bool timed_out = false; in Park() local
383 timed_out = true; in Park()
394 Runtime::Current()->GetRuntimeCallbacks()->ThreadParkFinished(timed_out); in Park()
/art/test/1931-monitor-events/
Dexpected-stdout.txt6 ParkThread monitor-waited NamedLock[Parking blocker object] timed_out: true
9 Locker thread 2 for NamedLock[Lock testWait] monitor-waited NamedLock[Lock testWait] timed_out: fal…
12 …d 4 for NamedLock[Lock testTimedWait] monitor-waited NamedLock[Lock testTimedWait] timed_out: false
16 …Lock[Lock testTimedWaitTimeout] monitor-waited NamedLock[Lock testTimedWaitTimeout] timed_out: true
29 …r NamedLock[Lock testInteruptWait] monitor-waited NamedLock[Lock testInteruptWait] timed_out: false
Dexpected-stdout.jvm.txt7 Locker thread 2 for NamedLock[Lock testWait] monitor-waited NamedLock[Lock testWait] timed_out: fal…
10 …d 4 for NamedLock[Lock testTimedWait] monitor-waited NamedLock[Lock testTimedWait] timed_out: false
14 …Lock[Lock testTimedWaitTimeout] monitor-waited NamedLock[Lock testTimedWaitTimeout] timed_out: true
27 …r NamedLock[Lock testInteruptWait] monitor-waited NamedLock[Lock testInteruptWait] timed_out: false
/art/test/1932-monitor-events-misc/
Dexpected-stdout.jvm.txt30 …d 8 for NamedLock[Lock testThrowWait] monitor-waited NamedLock[Lock testThrowWait] timed_out: false
42 …for NamedLock[Lock testThrowWaited] monitor-waited NamedLock[Lock testThrowWaited] timed_out: false
49 …[Lock testThrowWaitedTimeout] monitor-waited NamedLock[Lock testThrowWaitedTimeout] timed_out: true
56 … testThrowWaitedInterrupt] monitor-waited NamedLock[Lock testThrowWaitedInterrupt] timed_out: false
68 …ck testMonitorInfoInEvents] monitor-waited NamedLock[Lock testMonitorInfoInEvents] timed_out: false
72 …estWaitEnterInterleaving] monitor-waited NamedLock[test testWaitEnterInterleaving] timed_out: false
79 …ock[test testWaitMonitorEnter] monitor-waited NamedLock[test testWaitMonitorEnter] timed_out: false
82 …test testWaitedMonitorEnter] monitor-waited NamedLock[test testWaitedMonitorEnter] timed_out: false
Dexpected-stdout.txt41 …for NamedLock[Lock testThrowWaited] monitor-waited NamedLock[Lock testThrowWaited] timed_out: false
48 …[Lock testThrowWaitedTimeout] monitor-waited NamedLock[Lock testThrowWaitedTimeout] timed_out: true
55 … testThrowWaitedInterrupt] monitor-waited NamedLock[Lock testThrowWaitedInterrupt] timed_out: false
67 …ck testMonitorInfoInEvents] monitor-waited NamedLock[Lock testMonitorInfoInEvents] timed_out: false
71 …estWaitEnterInterleaving] monitor-waited NamedLock[test testWaitEnterInterleaving] timed_out: false
78 …ock[test testWaitMonitorEnter] monitor-waited NamedLock[test testWaitMonitorEnter] timed_out: false
81 …test testWaitedMonitorEnter] monitor-waited NamedLock[test testWaitedMonitorEnter] timed_out: false
/art/test/ti-agent/
Dmonitors_helper.cc128 jboolean timed_out) { in monitorWaitedCB() argument
137 jnienv->CallStaticVoidMethod(data->test_klass, data->monitor_waited, thr, obj, timed_out); in monitorWaitedCB()
/art/test/1931-monitor-events/src/art/
DTest1931.java70 public static void handleMonitorWaited(Thread thd, Object lock, boolean timed_out) { in handleMonitorWaited() argument
71 System.out.println(thd.getName() + " monitor-waited " + lock + " timed_out: " + timed_out); in handleMonitorWaited()
/art/test/1932-monitor-events-misc/src/art/
DTest1932.java29 public default void handleMonitorWaited(Thread thd, Object lock, boolean timed_out) {} in handleMonitorWaited() argument
650 public static void handleMonitorWaited(Thread thd, Object lock, boolean timed_out) { in handleMonitorWaited() argument
651 System.out.println(thd.getName() + " monitor-waited " + lock + " timed_out: " + timed_out); in handleMonitorWaited()
653 HANDLER.handleMonitorWaited(thd, lock, timed_out); in handleMonitorWaited()
/art/runtime/base/
Dmutex.cc1144 bool timed_out = false; in TimedWait() local
1160 timed_out = true; in TimedWait()
1191 timed_out = true; in TimedWait()
1199 return timed_out; in TimedWait()
/art/openjdkjvmti/include/
Djvmti.h865 jboolean timed_out);