/third_party/node/test/cctest/ |
D | test_environment.cc | 12 using node::AtExit; 216 AtExit(*env, at_exit_callback1); in TEST_F() 226 AtExit(at_exit_callback1); // No Environment is passed to AtExit. in TEST_F() 237 AtExit(*env, at_exit_callback_ordered1); in TEST_F() 238 AtExit(*env, at_exit_callback_ordered2); in TEST_F() 250 AtExit(*env, at_exit_callback1, static_cast<void*>(&arg)); in TEST_F() 260 AtExit(*env, at_exit_js, static_cast<void*>(isolate_)); in TEST_F() 273 AtExit(*env1, at_exit_callback1); in TEST_F() 274 AtExit(*env2, at_exit_callback2); in TEST_F()
|
/third_party/node/src/api/ |
D | hooks.cc | 25 void AtExit(void (*cb)(void* arg), void* arg) { in AtExit() function 27 AtExit(env, cb, arg); in AtExit() 30 void AtExit(Environment* env, void (*cb)(void* arg), void* arg) { in AtExit() function 32 env->AtExit(cb, arg); in AtExit()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | ShadowStackGCLowering.cpp | 352 while (IRBuilder<> *AtExit = EE.Next()) { in runOnFunction() local 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/ |
D | WebAssemblyLowerGlobalDtors.cpp | 112 FunctionCallee AtExit = M.getOrInsertFunction( in runOnModule() local 167 Value *Res = CallInst::Create(AtExit, Args, "call", EntryBB); in runOnModule()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | ThreadSanitizer.cpp | 433 while (IRBuilder<> *AtExit = EE.Next()) { in InsertRuntimeIgnores() local 434 AtExit->CreateCall(TsanIgnoreEnd); in InsertRuntimeIgnores() 511 while (IRBuilder<> *AtExit = EE.Next()) { in sanitizeFunction() local 512 AtExit->CreateCall(TsanFuncExit, {}); in sanitizeFunction()
|
/third_party/node/src/ |
D | node.h | 889 NODE_EXTERN void AtExit(void (*cb)(void* arg), void* arg = nullptr)); 895 NODE_EXTERN void AtExit(Environment* env, 900 inline void AtExit(Environment* env, 902 AtExit(env, cb, nullptr);
|
D | inspector_agent.cc | 704 AtExit(parent_env_, [](void* env) { in Start()
|
D | env.cc | 702 void Environment::AtExit(void (*cb)(void* arg), void* arg) { in AtExit() function in node::Environment
|
D | env.h | 1145 void AtExit(void (*cb)(void* arg), void* arg);
|
/third_party/node/doc/guides/ |
D | writing-tests.md | 405 node::AtExit(env, at_exit_callback); 444 $ out/Release/cctest --gtest_filter=EnvironmentTest.AtExit\*
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V13.md | 1498 …* Deprecate one- and two-argument `AtExit()`. Use the three-argument variant of `AtExit()` or `Add… 1644 …6d6215cc)] - **(SEMVER-MINOR)** **src**: deprecate two- and one-argument AtExit() (Anna Henningsen… 1645 * [[`5f4535a97c`](https://github.com/nodejs/node/commit/5f4535a97c)] - **src**: make AtExit() callb… 1673 * [[`ab5bca379f`](https://github.com/nodejs/node/commit/ab5bca379f)] - **test**: remove AtExit() ad…
|
D | CHANGELOG_ARCHIVE.md | 1423 * addon: add AtExit() function (Ben Noordhuis)
|
D | CHANGELOG_V12.md | 1115 …ac18ccd7)] - **(SEMVER-MINOR)** **src**: deprecate two- and one-argument AtExit() (Anna Henningsen… 1180 * [[`71a3f485ba`](https://github.com/nodejs/node/commit/71a3f485ba)] - **test**: remove AtExit() ad… 1409 * [[`2e729f2dc9`](https://github.com/nodejs/node/commit/2e729f2dc9)] - **src**: make AtExit() callb…
|
D | CHANGELOG_V6.md | 1399 * [[`c0e47e4f22`](https://github.com/nodejs/node/commit/c0e47e4f22)] - **doc**: fix order of AtExit… 3739 …://github.com/nodejs/node/commit/0f2c619f55)] - **src**: avoid duplicate AtExit functions (Ali Ija… 4220 …hub.com/nodejs/node/commit/8d18aed59e)] - **doc**: fixing minor typo in `AtExit` hooks section (Da…
|
D | CHANGELOG_IOJS.md | 1055 …hub.com/nodejs/node/commit/98649fd31a)] - **doc**: add documentation for AtExit hook (Steve Sharp)…
|
D | CHANGELOG_V8.md | 3211 * [[`4e15a6b76a`](https://github.com/nodejs/node/commit/4e15a6b76a)] - **doc**: fix order of AtExit… 4522 …b.com/nodejs/node/commit/ec53921d2e)] - **(SEMVER-MINOR)** **src**: make AtExit callback's per Env…
|
D | CHANGELOG_V4.md | 1413 …thub.com/nodejs/node/commit/f8fe474825)] - **doc**: fixing minor typo in AtExit hooks section (Dan…
|