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

/external/llvm/lib/Support/
H A DMutex.cpp26 MutexImpl::MutexImpl( bool recursive) { } function in class:llvm::MutexImpl
27 MutexImpl::~MutexImpl() { }
28 bool MutexImpl::acquire() { return true; }
29 bool MutexImpl::release() { return true; }
30 bool MutexImpl::tryacquire() { return true; }
58 MutexImpl::MutexImpl( bool recursive)
98 MutexImpl
[all...]
/external/llvm/include/llvm/Support/
H A DMutex.h25 class MutexImpl class in namespace:llvm::sys
36 explicit MutexImpl(bool recursive = true);
40 ~MutexImpl();
78 MutexImpl(const MutexImpl & original);
79 void operator=(const MutexImpl &);
88 class SmartMutex : public MutexImpl {
93 MutexImpl(rec), acquired(0), recursive(rec) { }
97 return MutexImpl::acquire();
110 return MutexImpl
[all...]

Completed in 69 milliseconds