OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AtExitHandlers
(Results
1 - 6
of
6
) sorted by null
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
Intercept.cpp
24
//
AtExitHandlers
- List of functions to call when the program exits,
26
static std::vector<void (*)()>
AtExitHandlers
;
30
///
AtExitHandlers
.
33
while (!
AtExitHandlers
.empty()) {
34
void (*Fn)() =
AtExitHandlers
.back();
35
AtExitHandlers
.pop_back();
86
AtExitHandlers
.push_back(Fn); // Take note of atexit handler...
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/
Intercept.cpp
24
//
AtExitHandlers
- List of functions to call when the program exits,
26
static std::vector<void (*)()>
AtExitHandlers
;
30
///
AtExitHandlers
.
33
while (!
AtExitHandlers
.empty()) {
34
void (*Fn)() =
AtExitHandlers
.back();
35
AtExitHandlers
.pop_back();
89
AtExitHandlers
.push_back(Fn); // Take note of atexit handler...
/external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.cpp
68
while (!
AtExitHandlers
.empty()) {
69
callFunction(
AtExitHandlers
.back(), None);
70
AtExitHandlers
.pop_back();
Interpreter.h
103
//
AtExitHandlers
- List of functions to call when the program exits,
105
std::vector<Function*>
AtExitHandlers
;
112
/// atexit(3), which we intercept and store in
AtExitHandlers
.
199
AtExitHandlers
.push_back(F);
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
Interpreter.cpp
65
while (!
AtExitHandlers
.empty()) {
66
callFunction(
AtExitHandlers
.back(), std::vector<GenericValue>());
67
AtExitHandlers
.pop_back();
Interpreter.h
92
//
AtExitHandlers
- List of functions to call when the program exits,
94
std::vector<Function*>
AtExitHandlers
;
101
/// atexit(3), which we intercept and store in
AtExitHandlers
.
186
AtExitHandlers
.push_back(F);
Completed in 331 milliseconds