HomeSort by relevance Sort by last modified time
    Searched refs:CHECK_MUTEX_CALL (Results 1 - 2 of 2) sorted by null

  /art/runtime/base/
mutex-inl.h 31 #define CHECK_MUTEX_CALL(call, args) CHECK_PTHREAD_CALL(call, args, name_)
156 CHECK_MUTEX_CALL(pthread_rwlock_rdlock, (&rwlock_));
184 CHECK_MUTEX_CALL(pthread_rwlock_unlock, (&rwlock_));
mutex.cc 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 threa
    [all...]

Completed in 2321 milliseconds