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
   43     n_all_locks_ = 0;
   53     n_all_locks_ = 0;
   67     CHECK_LT(n_all_locks_, ARRAY_SIZE(all_locks_with_contexts_));
   71     all_locks_with_contexts_[n_all_locks_++] = l;
   87     if (n_all_locks_) {
   88       for (sptr i = n_all_locks_ - 1; i >= 0; i--) {
   91                all_locks_with_contexts_[n_all_locks_ - 1]);
   92           n_all_locks_--;
  100     for (uptr i = 0; i < n_all_locks_; i++)
  111   uptr getNumLocks() const { return n_all_locks_; }