Home
last modified time | relevance | path

Searched refs:TryLock (Results 1 – 5 of 5) sorted by relevance

/art/runtime/base/
Dmutex_test.cc52 ASSERT_TRUE(mu.TryLock(Thread::Current())); in TryLockUnlockTest()
84 ASSERT_TRUE(mu.TryLock(Thread::Current())); in RecursiveTryLockUnlockTest()
86 ASSERT_TRUE(mu.TryLock(Thread::Current())); in RecursiveTryLockUnlockTest()
Dmutex.h259 bool TryLock(Thread* self) TRY_ACQUIRE(true) { return ExclusiveTryLock(self); } in TryLock() function
/art/runtime/
Dmonitor.h208 bool TryLock(Thread* self)
Dmonitor.cc390 bool Monitor::TryLock(Thread* self) { in TryLock() function in art::Monitor
1107 return mon->TryLock(self) ? h_obj.Get() : nullptr; in MonitorEnter()
Dthread.cc1207 Locks::thread_list_lock_->TryLock(self); in UnsafeLogFatalForSuspendCount()