Searched refs:LockName (Results 1 - 2 of 2) sorted by relevance

/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafety.h87 /// \param LockName -- A StringRef name for the lock expression, to be printed
90 virtual void handleUnmatchedUnlock(StringRef Kind, Name LockName, argument
96 /// \param LockName -- A StringRef name for the lock expression, to be printed
102 virtual void handleIncorrectUnlockKind(StringRef Kind, Name LockName, argument
108 /// \param LockName -- A StringRef name for the lock expression, to be printed
111 virtual void handleDoubleLock(StringRef Kind, Name LockName, argument
120 /// \param LockName -- A StringRef name for the lock expression, to be printed
127 virtual void handleMutexHeldEndOfScope(StringRef Kind, Name LockName, argument
136 /// \param LockName -- A StringRef name for the lock expression, to be printed
140 virtual void handleExclusiveAndShared(StringRef Kind, Name LockName, argument
163 handleMutexNotHeld(StringRef Kind, const NamedDecl *D, ProtectedOperationKind POK, Name LockName, LockKind LK, SourceLocation Loc, Name *PossibleMatch = nullptr) argument
175 handleNegativeNotHeld(StringRef Kind, Name LockName, Name Neg, SourceLocation Loc) argument
185 handleFunExcludesLock(StringRef Kind, Name FunName, Name LockName, SourceLocation Loc) argument
[all...]
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp1516 void warnLockMismatch(unsigned DiagID, StringRef Kind, Name LockName,
1522 PartialDiagnosticAt Warning(Loc, S.PDiag(DiagID) << Kind << LockName);
1552 void handleUnmatchedUnlock(StringRef Kind, Name LockName,
1554 warnLockMismatch(diag::warn_unlock_but_no_lock, Kind, LockName, Loc);
1557 void handleIncorrectUnlockKind(StringRef Kind, Name LockName,
1563 << Kind << LockName << Received
1568 void handleDoubleLock(StringRef Kind, Name LockName, SourceLocation Loc) override {
1569 warnLockMismatch(diag::warn_double_lock, Kind, LockName, Loc);
1572 void handleMutexHeldEndOfScope(StringRef Kind, Name LockName,
1595 << LockName);
[all...]

Completed in 133 milliseconds