Lines Matching refs:data_
58 data_ = rwlock; in RWMutexImpl()
64 pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_); in ~RWMutexImpl()
73 pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_); in lock_shared()
83 pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_); in unlock_shared()
93 pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_); in lock()
103 pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_); in unlock()
112 RWMutexImpl::RWMutexImpl() : data_(new MutexImpl(false)) { } in RWMutexImpl()
115 delete static_cast<MutexImpl *>(data_); in ~RWMutexImpl()
119 return static_cast<MutexImpl *>(data_)->acquire(); in lock_shared()
123 return static_cast<MutexImpl *>(data_)->release(); in unlock_shared()
127 return static_cast<MutexImpl *>(data_)->acquire(); in lock()
131 return static_cast<MutexImpl *>(data_)->release(); in unlock()