OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MutexGuard
(Results
1 - 14
of
14
) 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(); }
UnicodeCharRanges.h
17
#include "llvm/Support/
MutexGuard
.h"
37
llvm::
MutexGuard
Guard(ValidationMutex);
65
llvm::
MutexGuard
Guard(ValidationMutex);
/external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp
33
#include "llvm/Support/
MutexGuard
.h"
235
MutexGuard
guard(Lock);
239
MutexGuard
guard(Lock);
243
MutexGuard
guard(Lock);
286
MutexGuard
locked(lock);
334
MutexGuard
locked(lock);
362
MutexGuard
locked(lock);
563
MutexGuard
locked(lock);
569
MutexGuard
locked(lock);
581
MutexGuard
locked(lock)
[
all
...]
JIT.h
42
FunctionPassManager &getPM(const
MutexGuard
&L) {
47
std::vector<AssertingVH<Function> > &getPendingFunctions(const
MutexGuard
&L){
205
getBasicBlockAddressMap(const
MutexGuard
&) {
213
void runJITOnFunctionUnlocked(Function *F, const
MutexGuard
&locked);
215
void jitTheFunction(Function *F, const
MutexGuard
&locked);
JITEmitter.cpp
43
#include "llvm/Support/
MutexGuard
.h"
124
const
MutexGuard
& locked) {
129
GlobalToIndirectSymMapTy& getGlobalToIndirectSymMap(const
MutexGuard
& lck) {
135
const
MutexGuard
&locked, void *CallSite) const {
149
void AddCallSite(const
MutexGuard
&locked, void *CallSite, Function *F) {
244
MutexGuard
guard(Lock);
249
MutexGuard
guard(Lock);
254
MutexGuard
guard(Lock);
267
MutexGuard
guard(Lock);
502
MutexGuard
locked(TheJIT->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"
101
llvm::
MutexGuard
locked(JITDebugLock);
169
llvm::
MutexGuard
locked(JITDebugLock);
205
llvm::
MutexGuard
locked(JITDebugLock);
/external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp
25
#include "llvm/Support/
MutexGuard
.h"
81
MutexGuard
locked(lock);
121
MutexGuard
locked(lock);
352
MutexGuard
locked(lock);
358
MutexGuard
locked(lock);
367
MutexGuard
locked(lock);
373
MutexGuard
locked(lock);
/external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h
46
class
MutexGuard
;
83
GlobalAddressMapTy &getGlobalAddressMap(const
MutexGuard
&) {
88
getGlobalAddressReverseMap(const
MutexGuard
&) {
95
void *RemoveMapping(const
MutexGuard
&, const GlobalValue *ToUnmap);
/external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileWrapper.cpp
23
#include "llvm/Support/
MutexGuard
.h"
60
MutexGuard
Guard(OProfileInitializationMutex);
/external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp
30
#include "llvm/Support/
MutexGuard
.h"
142
void *ExecutionEngineState::RemoveMapping(const
MutexGuard
&,
161
MutexGuard
locked(lock);
179
MutexGuard
locked(lock);
186
MutexGuard
locked(lock);
196
MutexGuard
locked(lock);
223
MutexGuard
locked(lock);
231
MutexGuard
locked(lock);
528
MutexGuard
locked(lock);
[
all
...]
/external/clang/lib/Lex/
UnicodeCharSets.h
17
#include "llvm/Support/
MutexGuard
.h"
43
llvm::
MutexGuard
Guard(ValidationMutex);
71
llvm::
MutexGuard
Guard(ValidationMutex);
/external/clang/tools/libclang/
Indexing.cpp
33
#include "llvm/Support/
MutexGuard
.h"
158
llvm::
MutexGuard
MG(Mux);
163
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 1649 milliseconds