OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RWMutexImpl
(Results
1 - 6
of
6
) sorted by null
/external/llvm/lib/Support/
RWMutex.cpp
27
RWMutexImpl
::
RWMutexImpl
() { }
28
RWMutexImpl
::~
RWMutexImpl
() { }
29
bool
RWMutexImpl
::reader_acquire() { return true; }
30
bool
RWMutexImpl
::reader_release() { return true; }
31
bool
RWMutexImpl
::writer_acquire() { return true; }
32
bool
RWMutexImpl
::writer_release() { return true; }
46
RWMutexImpl
::
RWMutexImpl
()
[
all
...]
/external/swiftshader/third_party/LLVM/lib/Support/
RWMutex.cpp
27
RWMutexImpl
::
RWMutexImpl
() { }
28
RWMutexImpl
::~
RWMutexImpl
() { }
29
bool
RWMutexImpl
::reader_acquire() { return true; }
30
bool
RWMutexImpl
::reader_release() { return true; }
31
bool
RWMutexImpl
::writer_acquire() { return true; }
32
bool
RWMutexImpl
::writer_release() { return true; }
60
RWMutexImpl
::
RWMutexImpl
()
[
all
...]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
RWMutex.cpp
29
RWMutexImpl
::
RWMutexImpl
() = default;
30
RWMutexImpl
::~
RWMutexImpl
() = default;
32
bool
RWMutexImpl
::reader_acquire() { return true; }
33
bool
RWMutexImpl
::reader_release() { return true; }
34
bool
RWMutexImpl
::writer_acquire() { return true; }
35
bool
RWMutexImpl
::writer_release() { return true; }
49
RWMutexImpl
::
RWMutexImpl
()
[
all
...]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
RWMutex.h
25
class
RWMutexImpl
33
explicit
RWMutexImpl
();
37
~
RWMutexImpl
();
78
RWMutexImpl
(const
RWMutexImpl
& original);
79
void operator=(const
RWMutexImpl
&);
87
class SmartRWMutex : public
RWMutexImpl
{
90
explicit SmartRWMutex() :
RWMutexImpl
(), readers(0), writers(0) { }
94
return
RWMutexImpl
::reader_acquire();
104
return
RWMutexImpl
::reader_release()
[
all
...]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
RWMutex.h
25
class
RWMutexImpl
33
explicit
RWMutexImpl
();
38
RWMutexImpl
(const
RWMutexImpl
& original) = delete;
39
RWMutexImpl
&operator=(const
RWMutexImpl
&) = delete;
44
~
RWMutexImpl
();
89
RWMutexImpl
impl;
/external/llvm/include/llvm/Support/
RWMutex.h
26
class
RWMutexImpl
34
explicit
RWMutexImpl
();
38
~
RWMutexImpl
();
81
RWMutexImpl
(const
RWMutexImpl
& original) = delete;
82
void operator=(const
RWMutexImpl
&) = delete;
91
RWMutexImpl
impl;
Completed in 285 milliseconds