Searched defs:SmartMutex (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/Support/
H A DMutex.h87 /// SmartMutex - A mutex with a compile time constant parameter that
91 class SmartMutex { class in namespace:llvm::sys
96 explicit SmartMutex(bool rec = true) : function in class:llvm::sys::SmartMutex
133 SmartMutex(const SmartMutex<mt_only> & original);
134 void operator=(const SmartMutex<mt_only> &);
138 typedef SmartMutex<false> Mutex;
142 SmartMutex<mt_only>& mtx;
145 SmartScopedLock(SmartMutex<mt_only>& m) : mtx(m) {
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DMutex.h84 /// SmartMutex - A mutex with a compile time constant parameter that
88 class SmartMutex : public MutexImpl { class in namespace:llvm::sys
92 explicit SmartMutex(bool rec = true) : function in class:llvm::sys::SmartMutex
129 SmartMutex(const SmartMutex<mt_only> & original);
130 void operator=(const SmartMutex<mt_only> &);
134 typedef SmartMutex<false> Mutex;
138 SmartMutex<mt_only>& mtx;
141 SmartScopedLock(SmartMutex<mt_only>& m) : mtx(m) {

Completed in 106 milliseconds