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

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafety.h108 /// \param LockName -- A StringRef name for the lock expression, to be printed
111 virtual void handleUnmatchedUnlock(StringRef Kind, Name LockName, argument
117 /// \param LockName -- A StringRef name for the lock expression, to be printed
124 virtual void handleIncorrectUnlockKind(StringRef Kind, Name LockName, argument
131 /// \param LockName -- A StringRef name for the lock expression, to be printed
135 virtual void handleDoubleLock(StringRef Kind, Name LockName, argument
145 /// \param LockName -- A StringRef name for the lock expression, to be printed
152 virtual void handleMutexHeldEndOfScope(StringRef Kind, Name LockName, argument
161 /// \param LockName -- A StringRef name for the lock expression, to be printed
165 virtual void handleExclusiveAndShared(StringRef Kind, Name LockName, argument
188 handleMutexNotHeld(StringRef Kind, const NamedDecl *D, ProtectedOperationKind POK, Name LockName, LockKind LK, SourceLocation Loc, Name *PossibleMatch = nullptr) argument
200 handleNegativeNotHeld(StringRef Kind, Name LockName, Name Neg, SourceLocation Loc) argument
210 handleFunExcludesLock(StringRef Kind, Name FunName, Name LockName, SourceLocation Loc) argument
[all...]
/freebsd-11-stable/contrib/sendmail/mail.local/
H A Dmail.local.c1489 char LockName[MAXPATHLEN]; local
1500 if (strlen(path) + 6 > sizeof LockName)
1502 (void) sm_snprintf(LockName, sizeof LockName, "%s.lock", path);
1517 fd = open(LockName, O_WRONLY|O_EXCL|O_CREAT, LOCKFILE_PMODE);
1526 if (stat(LockName, &st) < 0)
1541 if (unlink(LockName) < 0)
1551 (void) unlink(LockName);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp1688 void handleUnmatchedUnlock(StringRef Kind, Name LockName,
1693 << Kind << LockName);
1697 void handleIncorrectUnlockKind(StringRef Kind, Name LockName,
1705 << Kind << LockName << Received << Expected);
1710 void handleDoubleLock(StringRef Kind, Name LockName, SourceLocation LocLocked,
1715 << Kind << LockName);
1720 void handleMutexHeldEndOfScope(StringRef Kind, Name LockName,
1743 << LockName);
1748 void handleExclusiveAndShared(StringRef Kind, Name LockName,
1753 << Kind << LockName);
[all...]

Completed in 83 milliseconds