reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector.h
   67     CHECK_LT(n_all_locks_, ARRAY_SIZE(all_locks_with_contexts_));
   71     all_locks_with_contexts_[n_all_locks_++] = l;
   89         if (all_locks_with_contexts_[i].lock == static_cast<u32>(lock_id)) {
   90           Swap(all_locks_with_contexts_[i],
   91                all_locks_with_contexts_[n_all_locks_ - 1]);
  101       if (all_locks_with_contexts_[i].lock == static_cast<u32>(lock_id))
  102         return all_locks_with_contexts_[i].stk;
  112   uptr getLock(uptr idx) const { return all_locks_with_contexts_[idx].lock; }