Home
last modified time | relevance | path

Searched refs:new_root (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h670 #define __sanitizer_syscall_pre_pivot_root(new_root, put_old) \ argument
671 __sanitizer_syscall_pre_impl_pivot_root((long)(new_root), (long)(put_old))
672 #define __sanitizer_syscall_post_pivot_root(res, new_root, put_old) \ argument
673 __sanitizer_syscall_post_impl_pivot_root(res, (long)(new_root), \
2392 void __sanitizer_syscall_pre_impl_pivot_root(long new_root, long put_old);
2393 void __sanitizer_syscall_post_impl_pivot_root(long res, long new_root,
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_syscalls.inc1248 PRE_SYSCALL(pivot_root)(const void *new_root, const void *put_old) {
1249 if (new_root)
1250 PRE_READ(new_root,
1251 __sanitizer::internal_strlen((const char *)new_root) + 1);
1256 POST_SYSCALL(pivot_root)(long res, const void *new_root, const void *put_old) {}