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

  /external/llvm/lib/Support/
Mutex.cpp 26 MutexImpl::MutexImpl( bool recursive) { }
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)
82 MutexImpl::~MutexImpl(
    [all...]
  /external/llvm/include/llvm/Support/
Mutex.h 26 class MutexImpl
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::release()
    [all...]

Completed in 33 milliseconds