Lines Matching refs:CHECK_MUTEX_CALL
274 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
301 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
342 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
440 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
466 CHECK_MUTEX_CALL(pthread_rwlock_init, (&rwlock_, nullptr));
478 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
518 CHECK_MUTEX_CALL(pthread_rwlock_wrlock, (&rwlock_));
556 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
680 CHECK_MUTEX_CALL(pthread_condattr_init, (&cond_attrs));
683 CHECK_MUTEX_CALL(pthread_condattr_setclock(&cond_attrs, CLOCK_MONOTONIC));
685 CHECK_MUTEX_CALL(pthread_cond_init, (&cond_, &cond_attrs));
698 // We can't use CHECK_MUTEX_CALL here because on shutdown a suspended daemon thread
735 CHECK_MUTEX_CALL(pthread_cond_broadcast, (&cond_));
752 CHECK_MUTEX_CALL(pthread_cond_signal, (&cond_));
790 CHECK_MUTEX_CALL(pthread_cond_wait, (&cond_, &guard_.mutex_));