Home
last modified time | relevance | path

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

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_deadlock_detector.h69 CHECK_LT(n_all_locks_, ARRAY_SIZE(all_locks_with_contexts_)); in addLock()
73 all_locks_with_contexts_[n_all_locks_++] = l; in addLock()
92 if (all_locks_with_contexts_[i].lock == static_cast<u32>(lock_id)) { in removeLock()
93 Swap(all_locks_with_contexts_[i], in removeLock()
94 all_locks_with_contexts_[n_all_locks_ - 1]); in removeLock()
104 if (all_locks_with_contexts_[i].lock == static_cast<u32>(lock_id)) in findLockContext()
105 return all_locks_with_contexts_[i].stk; in findLockContext()
115 uptr getLock(uptr idx) const { return all_locks_with_contexts_[idx].lock; } in getLock()
126 LockWithContext all_locks_with_contexts_[64]; variable