/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_interceptors.cc | 1927 TSAN_INTERCEPTOR(int, epoll_ctl, int epfd, int op, int fd, void *ev) { in TSAN_INTERCEPTOR() argument 1928 SCOPED_TSAN_INTERCEPTOR(epoll_ctl, epfd, op, fd, ev); in TSAN_INTERCEPTOR() 1929 if (epfd >= 0) in TSAN_INTERCEPTOR() 1930 FdAccess(thr, pc, epfd); in TSAN_INTERCEPTOR() 1931 if (epfd >= 0 && fd >= 0) in TSAN_INTERCEPTOR() 1933 if (op == EPOLL_CTL_ADD && epfd >= 0) in TSAN_INTERCEPTOR() 1934 FdRelease(thr, pc, epfd); in TSAN_INTERCEPTOR() 1935 int res = REAL(epoll_ctl)(epfd, op, fd, ev); in TSAN_INTERCEPTOR() 1944 TSAN_INTERCEPTOR(int, epoll_wait, int epfd, void *ev, int cnt, int timeout) { in TSAN_INTERCEPTOR() argument 1945 SCOPED_TSAN_INTERCEPTOR(epoll_wait, epfd, ev, cnt, timeout); in TSAN_INTERCEPTOR() [all …]
|
/external/compiler-rt/include/sanitizer/ |
D | linux_syscall_hooks.h | 1207 #define __sanitizer_syscall_pre_epoll_ctl(epfd, op, fd, event) \ argument 1208 __sanitizer_syscall_pre_impl_epoll_ctl((long)(epfd), (long)(op), (long)(fd), \ 1210 #define __sanitizer_syscall_post_epoll_ctl(res, epfd, op, fd, event) \ argument 1211 __sanitizer_syscall_post_impl_epoll_ctl(res, (long)(epfd), (long)(op), \ 1213 #define __sanitizer_syscall_pre_epoll_wait(epfd, events, maxevents, timeout) \ argument 1214 __sanitizer_syscall_pre_impl_epoll_wait((long)(epfd), (long)(events), \ 1216 #define __sanitizer_syscall_post_epoll_wait(res, epfd, events, maxevents, \ argument 1218 __sanitizer_syscall_post_impl_epoll_wait(res, (long)(epfd), (long)(events), \ 1220 #define __sanitizer_syscall_pre_epoll_pwait(epfd, events, maxevents, timeout, \ argument 1223 (long)(epfd), (long)(events), (long)(maxevents), (long)(timeout), \ [all …]
|
/external/compiler-rt/lib/msan/ |
D | msan_interceptors.cc | 921 INTERCEPTOR(int, epoll_wait, int epfd, void *events, int maxevents, in INTERCEPTOR() argument 924 int res = REAL(epoll_wait)(epfd, events, maxevents, timeout); in INTERCEPTOR() 936 INTERCEPTOR(int, epoll_pwait, int epfd, void *events, int maxevents, in INTERCEPTOR() argument 939 int res = REAL(epoll_pwait)(epfd, events, maxevents, timeout, sigmask); in INTERCEPTOR()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_syscalls.inc | 1940 PRE_SYSCALL(epoll_ctl)(long epfd, long op, long fd, void *event) {} 1942 POST_SYSCALL(epoll_ctl)(long res, long epfd, long op, long fd, void *event) { 1948 PRE_SYSCALL(epoll_wait)(long epfd, void *events, long maxevents, long timeout) { 1951 POST_SYSCALL(epoll_wait)(long res, long epfd, void *events, long maxevents, 1958 PRE_SYSCALL(epoll_pwait)(long epfd, void *events, long maxevents, long timeout, 1963 POST_SYSCALL(epoll_pwait)(long res, long epfd, void *events, long maxevents,
|
/external/valgrind/coregrind/m_syswrap/ |
D | syswrap-linux.c | 1380 int, epfd, int, op, int, fd, struct vki_epoll_event *, event); in PRE() 1390 int, epfd, struct vki_epoll_event *, events, in PRE() 1406 int, epfd, struct vki_epoll_event *, events, in PRE()
|
/external/valgrind/memcheck/tests/x86-linux/ |
D | scalar.stderr.exp | 3539 Syscall param epoll_ctl(epfd) contains uninitialised byte(s) 3563 Syscall param epoll_wait(epfd) contains uninitialised byte(s)
|