Home
last modified time | relevance | path

Searched refs:AtExit (Results 1 - 9 of 9) sorted by relevance

/third_party/node/test/cctest/
H A Dtest_environment.cc12 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 DShadowStackGCLowering.cpp352 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 DWebAssemblyLowerGlobalDtors.cpp112 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 Dhooks.cc25 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 DThreadSanitizer.cpp433 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 Dinspector_agent.cc725 AtExit(parent_env_, [](void* env) { in Start()
H A Denv.h778 void AtExit(void (*cb)(void* arg), void* arg);
H A Dnode.h718 // 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 Denv.cc1052 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