Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp5166 class LOCKABLE BaseMutex { }; class
5167 class DerivedMutex : public BaseMutex { };
5169 void customLock(const BaseMutex *m) EXCLUSIVE_LOCK_FUNCTION(m);
5170 void customUnlock(const BaseMutex *m) UNLOCK_FUNCTION(m);
5177 customLock(reinterpret_cast<BaseMutex*>(&custMu)); // ignore casts in customTest()
5179 customUnlock(reinterpret_cast<BaseMutex*>(&custMu)); in customTest()