Lines Matching refs:m_pMutex
3734 m_pMutex(useMutex ? &mutex : VMA_NULL) in VMA_CLASS_NO_COPY()
3735 { if(m_pMutex) { m_pMutex->Lock(); } } in VMA_CLASS_NO_COPY()
3737 { if(m_pMutex) { m_pMutex->Unlock(); } } in ~VmaMutexLock()
3739 VMA_MUTEX* m_pMutex;
3748 m_pMutex(useMutex ? &mutex : VMA_NULL) in VMA_CLASS_NO_COPY()
3749 { if(m_pMutex) { m_pMutex->LockRead(); } } in VMA_CLASS_NO_COPY()
3750 ~VmaMutexLockRead() { if(m_pMutex) { m_pMutex->UnlockRead(); } } in ~VmaMutexLockRead()
3752 VMA_RW_MUTEX* m_pMutex;
3761 m_pMutex(useMutex ? &mutex : VMA_NULL) in VMA_CLASS_NO_COPY()
3762 { if(m_pMutex) { m_pMutex->LockWrite(); } } in VMA_CLASS_NO_COPY()
3763 ~VmaMutexLockWrite() { if(m_pMutex) { m_pMutex->UnlockWrite(); } } in ~VmaMutexLockWrite()
3765 VMA_RW_MUTEX* m_pMutex;