Searched refs:specialfile (Results 1 – 2 of 2) sorted by relevance
/external/compiler-rt/include/sanitizer/ |
D | linux_syscall_hooks.h | 1417 #define __sanitizer_syscall_pre_swapon(specialfile, swap_flags) \ argument 1418 __sanitizer_syscall_pre_impl_swapon((long)(specialfile), (long)(swap_flags)) 1419 #define __sanitizer_syscall_post_swapon(res, specialfile, swap_flags) \ argument 1420 __sanitizer_syscall_post_impl_swapon(res, (long)(specialfile), \ 1422 #define __sanitizer_syscall_pre_swapoff(specialfile) \ argument 1423 __sanitizer_syscall_pre_impl_swapoff((long)(specialfile)) 1424 #define __sanitizer_syscall_post_swapoff(res, specialfile) \ argument 1425 __sanitizer_syscall_post_impl_swapoff(res, (long)(specialfile)) 2806 void __sanitizer_syscall_pre_impl_swapon(long specialfile, long swap_flags); 2807 void __sanitizer_syscall_post_impl_swapon(long res, long specialfile, [all …]
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_syscalls.inc | 2237 PRE_SYSCALL(swapon)(const void *specialfile, long swap_flags) { 2238 if (specialfile) 2239 PRE_READ(specialfile, 2240 __sanitizer::internal_strlen((const char *)specialfile) + 1); 2243 POST_SYSCALL(swapon)(long res, const void *specialfile, long swap_flags) {} 2245 PRE_SYSCALL(swapoff)(const void *specialfile) { 2246 if (specialfile) 2247 PRE_READ(specialfile, 2248 __sanitizer::internal_strlen((const char *)specialfile) + 1); 2251 POST_SYSCALL(swapoff)(long res, const void *specialfile) {}
|