Home
last modified time | relevance | path

Searched refs:ExclusiveTryLock (Results 1 – 3 of 3) sorted by relevance

/art/runtime/base/
Dmutex.h191 bool ExclusiveTryLock(Thread* self) TRY_ACQUIRE(true);
192 bool TryLock(Thread* self) TRY_ACQUIRE(true) { return ExclusiveTryLock(self); } in TryLock()
Dmutex.cc592 bool Mutex::ExclusiveTryLock(Thread* self) { in ExclusiveTryLock() function in art::Mutex
633 template bool Mutex::ExclusiveTryLock<false>(Thread* self);
634 template bool Mutex::ExclusiveTryLock<true>(Thread* self);
642 if (ExclusiveTryLock(self)) { in ExclusiveTryLockWithSpinning()
652 return ExclusiveTryLock(self); in ExclusiveTryLockWithSpinning()
/art/runtime/
Dmonitor.cc430 : monitor_lock_.ExclusiveTryLock(self); in TryLock()
1010 if (!monitor->monitor_lock_.ExclusiveTryLock</* check= */ false>(self)) { in Deflate()