Home
last modified time | relevance | path

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

/external/clang/test/SemaCXX/
Dwarn-thread-safety-analysis.cpp4528 class LOCKABLE BaseMutex { }; class
4529 class DerivedMutex : public BaseMutex { };
4531 void customLock(const BaseMutex *m) EXCLUSIVE_LOCK_FUNCTION(m);
4532 void customUnlock(const BaseMutex *m) UNLOCK_FUNCTION(m);
4539 customLock(reinterpret_cast<BaseMutex*>(&custMu)); // ignore casts in customTest()
4541 customUnlock(reinterpret_cast<BaseMutex*>(&custMu)); in customTest()