OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MutexImpl
(Results
1 - 5
of
5
) sorted by null
/external/swiftshader/third_party/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
...]
/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)
75
MutexImpl
::~MutexImpl(
[
all
...]
/external/swiftshader/third_party/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
26
class
MutexImpl
37
explicit
MutexImpl
(bool recursive = true);
41
~
MutexImpl
();
81
MutexImpl
(const
MutexImpl
&) = delete;
82
void operator=(const
MutexImpl
&) = delete;
92
MutexImpl
impl;
/external/clang/lib/Frontend/
ASTUnit.cpp
[
all
...]
Completed in 112 milliseconds