Lines Matching refs:CHECK_MUTEX_CALL
304 CHECK_MUTEX_CALL(pthread_mutexattr_init, (&attributes));
305 CHECK_MUTEX_CALL(pthread_mutexattr_settype, (&attributes, PTHREAD_MUTEX_RECURSIVE));
306 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, &attributes));
307 CHECK_MUTEX_CALL(pthread_mutexattr_destroy, (&attributes));
309 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, NULL));
325 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
369 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
459 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
520 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, NULL));
531 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
572 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
602 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
762 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, NULL));
776 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
813 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
830 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
866 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));