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