Searched refs:which_clock (Results 1 – 2 of 2) sorted by relevance
/external/compiler-rt/include/sanitizer/ |
D | linux_syscall_hooks.h | 189 #define __sanitizer_syscall_pre_timer_create(which_clock, timer_event_spec, \ argument 192 (long)(which_clock), (long)(timer_event_spec), (long)(created_timer_id)) 194 res, which_clock, timer_event_spec, created_timer_id) \ argument 195 __sanitizer_syscall_post_impl_timer_create(res, (long)(which_clock), \ 221 #define __sanitizer_syscall_pre_clock_settime(which_clock, tp) \ argument 222 __sanitizer_syscall_pre_impl_clock_settime((long)(which_clock), (long)(tp)) 223 #define __sanitizer_syscall_post_clock_settime(res, which_clock, tp) \ argument 224 __sanitizer_syscall_post_impl_clock_settime(res, (long)(which_clock), \ 226 #define __sanitizer_syscall_pre_clock_gettime(which_clock, tp) \ argument 227 __sanitizer_syscall_pre_impl_clock_gettime((long)(which_clock), (long)(tp)) [all …]
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_syscalls.inc | 445 PRE_SYSCALL(timer_create)(long which_clock, void *timer_event_spec, 448 POST_SYSCALL(timer_create)(long res, long which_clock, void *timer_event_spec, 484 PRE_SYSCALL(clock_settime)(long which_clock, const void *tp) { 488 POST_SYSCALL(clock_settime)(long res, long which_clock, const void *tp) {} 490 PRE_SYSCALL(clock_gettime)(long which_clock, void *tp) {} 492 POST_SYSCALL(clock_gettime)(long res, long which_clock, void *tp) { 499 PRE_SYSCALL(clock_adjtime)(long which_clock, void *tx) {} 501 POST_SYSCALL(clock_adjtime)(long res, long which_clock, void *tx) { 508 PRE_SYSCALL(clock_getres)(long which_clock, void *tp) {} 510 POST_SYSCALL(clock_getres)(long res, long which_clock, void *tp) { [all …]
|