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

  /external/compiler-rt/lib/tsan/rtl/
tsan_mutex.h 22 enum MutexType {
42 explicit Mutex(MutexType type, StatType stat_type);
56 MutexType type_;
72 void Lock(MutexType t);
73 void Unlock(MutexType t);
tsan_mutex.cc 29 const MutexType MutexTypeLeaf = (MutexType)-1;
30 static MutexType CanLockTab[MutexTypeCount][MutexTypeCount] = {
58 MutexType z = CanLockTab[i][j];
132 void InternalDeadlockDetector::Lock(MutexType t) {
159 void InternalDeadlockDetector::Unlock(MutexType t) {
208 Mutex::Mutex(MutexType type, StatType stat_type) {
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_mutex_test.cc 22 template<typename MutexType>
25 explicit TestData(MutexType *mtx)
57 typedef GenericScopedLock<MutexType> Lock;
60 MutexType *mtx_;
73 template<typename MutexType>
75 TestData<MutexType> *data = (TestData<MutexType>*)param;
83 template<typename MutexType>
85 TestData<MutexType> *data = (TestData<MutexType>*)param
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_mutex_test.cc 24 template<typename MutexType>
27 explicit TestData(MutexType *mtx)
62 typedef GenericScopedLock<MutexType> Lock;
65 MutexType *mtx_;
77 template<typename MutexType>
79 TestData<MutexType> *data = (TestData<MutexType>*)param;
87 template<typename MutexType>
89 TestData<MutexType> *data = (TestData<MutexType>*)param
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mutex.h 174 template<typename MutexType>
177 explicit GenericScopedLock(MutexType *mu)
187 MutexType *mu_;
193 template<typename MutexType>
196 explicit GenericScopedReadLock(MutexType *mu)
206 MutexType *mu_;
  /external/ceres-solver/internal/ceres/
mutex.h 101 typedef int MutexType; // to keep a lock-count
121 typedef CRITICAL_SECTION MutexType;
131 typedef pthread_rwlock_t MutexType;
134 typedef pthread_mutex_t MutexType;
176 MutexType mutex_;
  /external/regex-re2/util/
mutex.h 19 typedef int MutexType; // to keep a lock-count
30 typedef pthread_rwlock_t MutexType;
33 typedef pthread_mutex_t MutexType;
45 typedef CRITICAL_SECTION MutexType;
72 MutexType mutex_;

Completed in 612 milliseconds