Searched refs:AtExit (Results 1 - 9 of 9) sorted by relevance
/third_party/node/test/cctest/ |
H A D | test_environment.cc | 12 using node::AtExit; 218 AtExit(*env, at_exit_callback1, nullptr); in TEST_F() 229 AtExit(*env, at_exit_callback_ordered1, nullptr); in TEST_F() 230 AtExit(*env, at_exit_callback_ordered2, nullptr); in TEST_F() 242 AtExit(*env, at_exit_callback1, static_cast<void*>(&arg)); in TEST_F() 252 AtExit(*env, at_exit_js, static_cast<void*>(isolate_)); in TEST_F() 265 AtExit(*env1, at_exit_callback1, nullptr); in TEST_F() 266 AtExit(*env2, at_exit_callback2, nullptr); in TEST_F()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | ShadowStackGCLowering.cpp | 352 while (IRBuilder<> *AtExit = EE.Next()) { in runOnFunction() 356 CreateGEP(Context, *AtExit, ConcreteStackEntryTy, StackEntry, 0, 0, in runOnFunction() 358 Value *SavedHead = AtExit->CreateLoad(StackEntryTy->getPointerTo(), in runOnFunction() 360 AtExit->CreateStore(SavedHead, Head); in runOnFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyLowerGlobalDtors.cpp | 112 FunctionCallee AtExit = M.getOrInsertFunction( in runOnModule() local 167 Value *Res = CallInst::Create(AtExit, Args, "call", EntryBB); in runOnModule()
|
/third_party/node/src/api/ |
H A D | hooks.cc | 25 void AtExit(Environment* env, void (*cb)(void* arg), void* arg) { in AtExit() function 27 env->AtExit(cb, arg); in AtExit()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
H A D | ThreadSanitizer.cpp | 433 while (IRBuilder<> *AtExit = EE.Next()) { in InsertRuntimeIgnores() 434 AtExit->CreateCall(TsanIgnoreEnd); in InsertRuntimeIgnores() 511 while (IRBuilder<> *AtExit = EE.Next()) { in sanitizeFunction() 512 AtExit->CreateCall(TsanFuncExit, {}); in sanitizeFunction()
|
/third_party/node/src/ |
H A D | inspector_agent.cc | 725 AtExit(parent_env_, [](void* env) { in Start()
|
H A D | env.h | 778 void AtExit(void (*cb)(void* arg), void* arg);
|
H A D | node.h | 718 // Runs hooks added through `AtExit()`. This is part of `FreeEnvironment()`, 1111 NODE_EXTERN void AtExit(Environment* env, 1121 /* This is a lot like node::AtExit, except that the hooks added via this 1122 * function are run before the AtExit ones and will always be registered
|
H A D | env.cc | 1052 TRACE_EVENT0(TRACING_CATEGORY_NODE1(environment), "AtExit"); in RunAtExitCallbacks() 1059 void Environment::AtExit(void (*cb)(void* arg), void* arg) { in AtExit() function in node::Environment
|
Completed in 12 milliseconds