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; }
44 MutexImpl::MutexImpl( bool recursive)
75 MutexImpl
[all...]
/external/llvm/include/llvm/Support/
H A DMutex.h26 class MutexImpl class in namespace:llvm::sys
37 explicit MutexImpl(bool recursive = true);
41 ~MutexImpl();
79 MutexImpl(const MutexImpl &) LLVM_DELETED_FUNCTION;
80 void operator=(const MutexImpl &) LLVM_DELETED_FUNCTION;
89 class SmartMutex : public MutexImpl {
94 MutexImpl(rec), acquired(0), recursive(rec) { }
98 return MutexImpl::acquire();
111 return MutexImpl
[all...]

Completed in 78 milliseconds