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; }
58 MutexImpl::MutexImpl( bool recursive)
98 MutexImpl::~MutexImpl(
    [all...]
  /external/llvm/include/llvm/Support/
Mutex.h 25 class MutexImpl
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::release()
    [all...]

Completed in 68 milliseconds