OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MutexGuard
(Results
1 - 15
of
15
) sorted by null
/external/llvm/include/llvm/Support/
MutexGuard.h
1
//===-- Support/
MutexGuard
.h - Acquire/Release Mutex In Scope ---*- C++ -*-===//
27
class
MutexGuard
{
29
MutexGuard
(const
MutexGuard
&) LLVM_DELETED_FUNCTION;
30
void operator=(const
MutexGuard
&) LLVM_DELETED_FUNCTION;
32
MutexGuard
(sys::Mutex &m) : M(m) { M.acquire(); }
33
~
MutexGuard
() { M.release(); }
/external/llvm/lib/Support/
ManagedStatic.cpp
18
#include "llvm/Support/
MutexGuard
.h"
36
MutexGuard
Lock(getManagedStaticMutex());
86
MutexGuard
Lock(getManagedStaticMutex());
ErrorHandling.cpp
24
#include "llvm/Support/
MutexGuard
.h"
48
llvm::
MutexGuard
Lock(ErrorHandlerMutex);
55
llvm::
MutexGuard
Lock(ErrorHandlerMutex);
78
llvm::
MutexGuard
Lock(ErrorHandlerMutex);
/external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp
34
#include "llvm/Support/
MutexGuard
.h"
102
MutexGuard
guard(Lock);
106
MutexGuard
guard(Lock);
110
MutexGuard
guard(Lock);
153
MutexGuard
locked(lock);
180
MutexGuard
locked(lock);
209
MutexGuard
locked(lock);
411
MutexGuard
locked(lock);
417
MutexGuard
locked(lock);
429
MutexGuard
locked(lock)
[
all
...]
JITEmitter.cpp
43
#include "llvm/Support/
MutexGuard
.h"
238
MutexGuard
guard(Lock);
243
MutexGuard
guard(Lock);
248
MutexGuard
guard(Lock);
261
MutexGuard
guard(Lock);
497
MutexGuard
locked(TheJIT->lock);
506
MutexGuard
locked(TheJIT->lock);
567
MutexGuard
locked(TheJIT->lock);
625
MutexGuard
locked(JR->TheJIT->lock);
657
MutexGuard
locked(JR->TheJIT->lock)
[
all
...]
/external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp
29
#include "llvm/Support/
MutexGuard
.h"
69
MutexGuard
locked(lock);
105
MutexGuard
locked(lock);
110
MutexGuard
locked(lock);
132
MutexGuard
locked(lock);
137
MutexGuard
locked(lock);
177
MutexGuard
locked(lock);
217
MutexGuard
locked(lock);
233
MutexGuard
locked(lock);
246
MutexGuard
locked(lock)
[
all
...]
/frameworks/compile/libbcc/lib/ExecutionEngine/
GDBJITRegistrar.cpp
39
#include <llvm/Support/
MutexGuard
.h>
115
llvm::
MutexGuard
locked(JITDebugLock);
135
llvm::
MutexGuard
locked(JITDebugLock);
204
llvm::
MutexGuard
locked(JITDebugLock);
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
GDBRegistrar.cpp
15
#include "llvm/Support/
MutexGuard
.h"
124
llvm::
MutexGuard
locked(JITDebugLock);
140
llvm::
MutexGuard
locked(JITDebugLock);
159
llvm::
MutexGuard
locked(JITDebugLock);
RuntimeDyld.cpp
22
#include "llvm/Support/
MutexGuard
.h"
45
MutexGuard
locked(lock);
66
MutexGuard
locked(lock);
105
MutexGuard
locked(lock);
/external/llvm/lib/Target/NVPTX/
NVPTXUtilities.cpp
27
#include "llvm/Support/
MutexGuard
.h"
39
MutexGuard
Guard(Lock);
44
MutexGuard
Guard(Lock);
70
MutexGuard
Guard(Lock);
103
MutexGuard
Guard(Lock);
117
MutexGuard
Guard(Lock);
/external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileWrapper.cpp
21
#include "llvm/Support/
MutexGuard
.h"
59
MutexGuard
Guard(OProfileInitializationMutex);
/external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp
32
#include "llvm/Support/
MutexGuard
.h"
169
MutexGuard
locked(lock);
187
MutexGuard
locked(lock);
194
MutexGuard
locked(lock);
204
MutexGuard
locked(lock);
231
MutexGuard
locked(lock);
239
MutexGuard
locked(lock);
559
MutexGuard
locked(lock);
[
all
...]
/external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h
45
class
MutexGuard
;
/external/clang/tools/libclang/
Indexing.cpp
33
#include "llvm/Support/
MutexGuard
.h"
159
llvm::
MutexGuard
MG(Mux);
164
llvm::
MutexGuard
MG(Mux);
[
all
...]
/external/clang/lib/Frontend/
ASTUnit.cpp
43
#include "llvm/Support/
MutexGuard
.h"
121
llvm::
MutexGuard
Guard(getOnDiskMutex());
133
llvm::
MutexGuard
Guard(getOnDiskMutex());
148
llvm::
MutexGuard
Guard(getOnDiskMutex());
[
all
...]
Completed in 285 milliseconds