Home
last modified time | relevance | path

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

/external/clang/include/clang/Analysis/Analyses/
DThreadSafety.h83 virtual void handleUnmatchedUnlock(Name LockName, SourceLocation Loc) {} in handleUnmatchedUnlock() argument
89 virtual void handleDoubleLock(Name LockName, SourceLocation Loc) {} in handleDoubleLock() argument
103 virtual void handleMutexHeldEndOfScope(Name LockName, in handleMutexHeldEndOfScope() argument
115 virtual void handleExclusiveAndShared(Name LockName, SourceLocation Loc1, in handleExclusiveAndShared() argument
135 ProtectedOperationKind POK, Name LockName,
145 virtual void handleFunExcludesLock(Name FunName, Name LockName, in handleFunExcludesLock() argument
/external/clang/lib/Sema/
DAnalysisBasedWarnings.cpp1269 void warnLockMismatch(unsigned DiagID, Name LockName, SourceLocation Loc) { in warnLockMismatch() argument
1274 PartialDiagnosticAt Warning(Loc, S.PDiag(DiagID) << LockName); in warnLockMismatch()
1302 void handleUnmatchedUnlock(Name LockName, SourceLocation Loc) { in handleUnmatchedUnlock() argument
1303 warnLockMismatch(diag::warn_unlock_but_no_lock, LockName, Loc); in handleUnmatchedUnlock()
1306 void handleDoubleLock(Name LockName, SourceLocation Loc) { in handleDoubleLock() argument
1307 warnLockMismatch(diag::warn_double_lock, LockName, Loc); in handleDoubleLock()
1310 void handleMutexHeldEndOfScope(Name LockName, SourceLocation LocLocked, in handleMutexHeldEndOfScope() argument
1331 PartialDiagnosticAt Warning(LocEndOfScope, S.PDiag(DiagID) << LockName); in handleMutexHeldEndOfScope()
1337 void handleExclusiveAndShared(Name LockName, SourceLocation Loc1, in handleExclusiveAndShared() argument
1340 Loc1, S.PDiag(diag::warn_lock_exclusive_and_shared) << LockName); in handleExclusiveAndShared()
[all …]