Lines Matching refs:mutex_
54 pthread_mutex_t mutex_; member
211 pthread_mutex_lock(&worker->impl_->mutex_); in ThreadLoop()
213 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_); in ThreadLoop()
223 pthread_mutex_unlock(&worker->impl_->mutex_); in ThreadLoop()
236 pthread_mutex_lock(&worker->impl_->mutex_); in ChangeState()
240 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_); in ChangeState()
248 pthread_mutex_unlock(&worker->impl_->mutex_); in ChangeState()
277 if (pthread_mutex_init(&worker->impl_->mutex_, NULL)) { in Reset()
281 pthread_mutex_destroy(&worker->impl_->mutex_); in Reset()
284 pthread_mutex_lock(&worker->impl_->mutex_); in Reset()
287 pthread_mutex_unlock(&worker->impl_->mutex_); in Reset()
289 pthread_mutex_destroy(&worker->impl_->mutex_); in Reset()
325 pthread_mutex_destroy(&worker->impl_->mutex_); in End()