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

/external/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp4528 class LOCKABLE BaseMutex { }; class in namespace:AttributeExpressionCornerCases::CustomMutex
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
4541 customUnlock(reinterpret_cast<BaseMutex*>(&custMu));

Completed in 290 milliseconds