Searched refs:m_locked (Results 1 – 3 of 3) sorted by relevance
59 bool m_locked; member in CcAutoTryLock61 CcAutoTryLock(CcOsLock& lock):m_lock(lock) { m_locked = m_lock.trylock(); } in CcAutoTryLock()62 ~CcAutoTryLock() { if (m_locked) m_lock.unlock(); m_locked = false; } in ~CcAutoTryLock()63 bool IsLocked() const { return m_locked; } in IsLocked()
21 : m_fd(fd), m_locked(false), m_start(0), m_len(0) {} in LockFileBase()23 bool LockFileBase::IsLocked() const { return m_locked; } in IsLocked()55 m_locked = false; in Unlock()74 m_locked = true; in DoLock()
50 bool m_locked; variable