Home
last modified time | relevance | path

Searched refs:fork_child (Results 1 – 14 of 14) sorted by relevance

/freebsd-src/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_chained_origin_depot.cpp24 void ChainedOriginDepotUnlockAfterFork(bool fork_child) { in ChainedOriginDepotUnlockAfterFork() argument
25 chainedOriginDepot.UnlockAfterFork(fork_child); in ChainedOriginDepotUnlockAfterFork()
H A Ddfsan_chained_origin_depot.h25 void ChainedOriginDepotUnlockAfterFork(bool fork_child);
H A Ddfsan_custom.cpp2863 static void AfterFork(bool fork_child) {
2864 ChainedOriginDepotUnlockAfterFork(fork_child);
2865 StackDepotUnlockAfterFork(fork_child);
2879 AfterFork(/* fork_child= */ pid == 0);
2793 AfterFork(bool fork_child) AfterFork() argument
/freebsd-src/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_chained_origin_depot.cpp36 void ChainedOriginDepotAfterFork(bool fork_child) { in ChainedOriginDepotAfterFork() argument
37 chainedOriginDepot.UnlockAfterFork(fork_child); in ChainedOriginDepotAfterFork()
H A Dmsan_linux.cpp311 static void AfterFork(bool fork_child) { in AfterFork()
312 ChainedOriginDepotAfterFork(fork_child); in AfterFork()
313 StackDepotUnlockAfterFork(fork_child); in AfterFork()
320 &BeforeFork, []() { AfterFork(/* fork_child= */ false); }, in InstallAtForkHandler()
321 []() { AfterFork(/* fork_child= */ true); });
309 AfterFork(bool fork_child) AfterFork() argument
H A Dmsan_chained_origin_depot.h34 void ChainedOriginDepotAfterFork(bool fork_child);
/freebsd-src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stackdepotbase.h56 void UnlockAfterFork(bool fork_child);
178 bool fork_child) { in UnlockAfterFork() argument
182 if (!fork_child) in UnlockAfterFork()
H A Dsanitizer_chained_origin_depot.cpp144 void ChainedOriginDepot::UnlockAfterFork(bool fork_child) { in UnlockAfterFork() argument
145 depot.UnlockAfterFork(fork_child); in UnlockAfterFork()
H A Dsanitizer_chained_origin_depot.h36 void UnlockAfterFork(bool fork_child);
H A Dsanitizer_stackdepot.h43 void StackDepotUnlockAfterFork(bool fork_child);
H A Dsanitizer_stackdepot.cpp224 void StackDepotUnlockAfterFork(bool fork_child) { in StackDepotUnlockAfterFork() argument
227 theDepot.UnlockAfterFork(fork_child); in StackDepotUnlockAfterFork()
/freebsd-src/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_posix.cpp110 static void AfterFork(bool fork_child) { in AfterFork() argument
111 StackDepotUnlockAfterFork(fork_child); in AfterFork()
/freebsd-src/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_posix.cpp162 static void AfterFork(bool fork_child) { in AfterFork() argument
163 StackDepotUnlockAfterFork(fork_child); in AfterFork()
/freebsd-src/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_linux.cpp545 static void AfterFork(bool fork_child) {
546 StackDepotUnlockAfterFork(fork_child); in HwasanInstallAtForkHandler()
558 &BeforeFork, []() { AfterFork(/* fork_child= */ false); }, in InstallAtExitCheckLeaks()
559 []() { AfterFork(/* fork_child= */ true); }); in InstallAtExitCheckLeaks()
535 AfterFork(bool fork_child) AfterFork() argument