OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MutexImpl
(Results
1 - 3
of
3
) sorted by null
/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
...]
/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/clang/lib/Frontend/
ASTUnit.cpp
[
all
...]
Completed in 42 milliseconds