| /freebsd/contrib/llvm-project/compiler-rt/include/sanitizer/ |
| H A D | linux_syscall_hooks.h | 1713 #define __sanitizer_syscall_pre_signalfd(ufd, user_mask, sizemask) \ argument 1714 __sanitizer_syscall_pre_impl_signalfd((long)(ufd), (long)(user_mask), \ 1716 #define __sanitizer_syscall_post_signalfd(res, ufd, user_mask, sizemask) \ argument 1717 __sanitizer_syscall_post_impl_signalfd(res, (long)(ufd), (long)(user_mask), \ 1719 #define __sanitizer_syscall_pre_signalfd4(ufd, user_mask, sizemask, flags) \ argument 1720 __sanitizer_syscall_pre_impl_signalfd4((long)(ufd), (long)(user_mask), \ 1722 #define __sanitizer_syscall_post_signalfd4(res, ufd, user_mask, sizemask, \ argument 1724 __sanitizer_syscall_post_impl_signalfd4(res, (long)(ufd), (long)(user_mask), \ 1731 #define __sanitizer_syscall_pre_timerfd_settime(ufd, flags, utmr, otmr) \ argument 1732 __sanitizer_syscall_pre_impl_timerfd_settime((long)(ufd), (long)(flags), \ [all …]
|
| /freebsd/sys/dev/usb/net/ |
| H A D | if_cdce.c | 336 struct usb_ncm_func_descriptor *ufd; in cdce_ncm_init() local 340 ufd = usbd_find_descriptor(sc->sc_ue.ue_udev, NULL, in cdce_ncm_init() 345 if (ufd != NULL) { in cdce_ncm_init() 346 if (ufd->bLength < sizeof(*ufd)) in cdce_ncm_init() 347 ufd = NULL; in cdce_ncm_init() 460 if (ufd != NULL && in cdce_ncm_init() 461 (ufd->bmNetworkCapabilities & UCDC_NCM_CAP_MAX_DGRAM)) { in cdce_ncm_init()
|
| /freebsd/cddl/contrib/opensolaris/tools/ctf/dump/ |
| H A D | dump.c | 899 int c, fd, ufd; in main() local 1104 if ((ufd = open(ufile, O_WRONLY|O_CREAT|O_TRUNC, 0666)) < 0 || in main() 1105 write(ufd, &h, sizeof (h)) != sizeof (h) || in main() 1106 write(ufd, cd.cd_ctfdata, cd.cd_ctflen) != (int) cd.cd_ctflen) { in main() 1111 (void) close(ufd); in main()
|
| /freebsd/usr.sbin/moused/msconvd/ |
| H A D | msconvd.c | 364 int ufd; /* /dev/uinput file descriptor */ member 379 .ufd = -1, 631 if (rodent.ufd != -1) in main() 632 close(rodent.ufd); in main() 633 rodent.mfd = rodent.ufd = -1; in main() 652 if ((rodent.ufd = r_uinput_register()) == -1) in msconvd() 714 if (r_uinput_report(rodent.ufd, &action) == -1) { in msconvd()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_common_syscalls.inc | 2958 PRE_SYSCALL(signalfd)(long ufd, void *user_mask, long sizemask) {} 2961 (long res, long ufd, kernel_sigset_t *user_mask, long sizemask) { 2968 PRE_SYSCALL(signalfd4)(long ufd, void *user_mask, long sizemask, long flags) {} 2971 (long res, long ufd, kernel_sigset_t *user_mask, long sizemask, long flags) { 2983 (long ufd, long flags, const void *utmr, void *otmr) { 2989 (long res, long ufd, long flags, const void *utmr, void *otmr) { 2996 PRE_SYSCALL(timerfd_gettime)(long ufd, void *otmr) {} 2998 POST_SYSCALL(timerfd_gettime)(long res, long ufd, void *otmr) {
|