Searched refs:BaseMutex (Results 1 – 1 of 1) sorted by relevance
5166 class LOCKABLE BaseMutex { }; class5167 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()