Searched refs:put_old (Results 1 – 3 of 3) sorted by relevance
/external/autotest/client/tests/ltp/patches/ |
D | sysctl.patch | 168 @@ -84,6 +83,36 @@ static inline int pivot_root(const char *new_root, const char *put_old)
|
/external/compiler-rt/include/sanitizer/ |
D | linux_syscall_hooks.h | 671 #define __sanitizer_syscall_pre_pivot_root(new_root, put_old) \ argument 672 __sanitizer_syscall_pre_impl_pivot_root((long)(new_root), (long)(put_old)) 673 #define __sanitizer_syscall_post_pivot_root(res, new_root, put_old) \ argument 675 (long)(put_old)) 2377 void __sanitizer_syscall_pre_impl_pivot_root(long new_root, long put_old); 2379 long put_old);
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_syscalls.inc | 1157 PRE_SYSCALL(pivot_root)(const void *new_root, const void *put_old) { 1161 if (put_old) 1162 PRE_READ(put_old, __sanitizer::internal_strlen((const char *)put_old) + 1); 1165 POST_SYSCALL(pivot_root)(long res, const void *new_root, const void *put_old) {}
|