Home
last modified time | relevance | path

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

/art/runtime/base/
Dmutex.h187 bool ExclusiveTryLock(Thread* self) TRY_ACQUIRE(true);
188 bool TryLock(Thread* self) TRY_ACQUIRE(true) { return ExclusiveTryLock(self); } in TryLock()
Dmutex.cc567 bool Mutex::ExclusiveTryLock(Thread* self) { in ExclusiveTryLock() function in art::Mutex
614 if (ExclusiveTryLock(self)) { in ExclusiveTryLockWithSpinning()
624 return ExclusiveTryLock(self); in ExclusiveTryLockWithSpinning()
/art/runtime/
Dmonitor.cc430 : monitor_lock_.ExclusiveTryLock(self); in TryLock()
1008 if (!monitor->monitor_lock_.ExclusiveTryLock(self)) { in Deflate()