/openbmc/u-boot/arch/microblaze/include/asm/ |
H A D | posix_types.h | 63 #define __FD_SET(fd, fd_set) \ argument 64 __set_bit (fd, (void *)&((__kernel_fd_set *)fd_set)->fds_bits) 66 #define __FD_CLR(fd, fd_set) \ argument 67 __clear_bit (fd, (void *)&((__kernel_fd_set *)fd_set)->fds_bits) 69 #define __FD_ISSET(fd, fd_set) \ argument 70 __test_bit (fd, (void *)&((__kernel_fd_set *)fd_set)->fds_bits) 72 #define __FD_ZERO(fd_set) \ argument 73 memset (fd_set, 0, sizeof (*(fd_set *)fd_set))
|
/openbmc/u-boot/arch/xtensa/include/asm/ |
H A D | posix_types.h | 57 (((fd_set *)fdsetp)->fds_bits[fd >> 5] |= (1<<(fd & 31))) 61 (((fd_set *)fdsetp)->fds_bits[fd >> 5] &= ~(1<<(fd & 31))) 65 ((((fd_set *)fdsetp)->fds_bits[fd >> 5] & (1<<(fd & 31))) != 0) 69 (memset(fdsetp, 0, sizeof(*(fd_set *)fdsetp)))
|
/openbmc/u-boot/arch/nds32/include/asm/ |
H A D | posix_types.h | 72 (((fd_set *)fdsetp)->fds_bits[fd >> 5] |= (1<<(fd & 31))) 76 (((fd_set *)fdsetp)->fds_bits[fd >> 5] &= ~(1<<(fd & 31))) 80 ((((fd_set *)fdsetp)->fds_bits[fd >> 5] & (1<<(fd & 31))) != 0) 84 (memset(fdsetp, 0, sizeof(*(fd_set *) fdsetp)))
|
/openbmc/u-boot/arch/arm/include/asm/ |
H A D | posix_types.h | 71 (((fd_set *)fdsetp)->fds_bits[fd >> 5] |= (1<<(fd & 31))) 75 (((fd_set *)fdsetp)->fds_bits[fd >> 5] &= ~(1<<(fd & 31))) 79 ((((fd_set *)fdsetp)->fds_bits[fd >> 5] & (1<<(fd & 31))) != 0) 83 (memset (fdsetp, 0, sizeof (*(fd_set *)fdsetp)))
|
/openbmc/openbmc-tools/pwmtachtool/src/ |
H A D | EINTR_wrappers.h | 65 int sigwrap_select(int nfds, fd_set *readfds, fd_set *writefds,fd_set *exceptfds, struct timeval *… 66 int sigwrap_pselect(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, const struct t…
|
H A D | EINTR_wrappers.c | 326 int sigwrap_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *… in sigwrap_select() 341 int sigwrap_pselect(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, const struct ti… in sigwrap_pselect()
|
/openbmc/openbmc-tools/adcapp/src/ |
H A D | EINTR_wrappers.h | 65 int sigwrap_select(int nfds, fd_set *readfds, fd_set *writefds,fd_set *exceptfds, struct timeval *… 66 int sigwrap_pselect(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, const struct t…
|
H A D | EINTR_wrappers.c | 383 int sigwrap_select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *… in sigwrap_select() 398 int sigwrap_pselect(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, const struct ti… in sigwrap_pselect()
|
/openbmc/u-boot/arch/riscv/include/asm/ |
H A D | posix_types.h | 74 (((fd_set *)fdsetp)->fds_bits[fd >> 5] |= (1 << (fd & 31))) 79 (((fd_set *)fdsetp)->fds_bits[fd >> 5] &= ~(1 << (fd & 31))) 84 ((((fd_set *)fdsetp)->fds_bits[fd >> 5] & (1 << (fd & 31))) != 0) 89 (memset(fdsetp, 0, sizeof(*(fd_set *)fdsetp)))
|
/openbmc/linux/tools/include/nolibc/ |
H A D | types.h | 124 } fd_set; typedef 127 fd_set *__set = (set); \ 135 fd_set *__set = (set); \ 143 fd_set *__set = (set); \ 153 fd_set *__set = (set); \
|
H A D | sys.h | 914 int sys_select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout) in sys_select() 919 fd_set *r, *w, *e; in sys_select() 942 int select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout) in select()
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/net-snmp/net-snmp/ |
H A D | 0001-Android-Fix-the-build.patch | 6 Include <sys/select.h> for the fd_set type. In the configure script, 7 check whether 'unsigned long' is the underlying type of fd_set. Use 47 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for the type of fd_set::fds_bits" >&5 48 printf %s "checking for the type of fd_set::fds_bits... " >&6; } 61 AC_MSG_CHECKING([for the type of fd_set::fds_bits])
|
H A D | 0012-Fix-configuration-of-NETSNMP_FD_MASK_TYPE.patch | 21 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for the type of fd_set::fds_bits" >&5 22 printf %s "checking for the type of fd_set::fds_bits... " >&6; } 35 AC_MSG_CHECKING([for the type of fd_set::fds_bits])
|
/openbmc/linux/fs/ |
H A D | select.c | 625 int core_sys_select(int n, fd_set __user *inp, fd_set __user *outp, in core_sys_select() 626 fd_set __user *exp, struct timespec64 *end_time) in core_sys_select() 704 static int kern_select(int n, fd_set __user *inp, fd_set __user *outp, in kern_select() 705 fd_set __user *exp, struct __kernel_old_timeval __user *tvp) in kern_select() 726 SYSCALL_DEFINE5(select, int, n, fd_set __user *, inp, fd_set __user *, outp, in SYSCALL_DEFINE5() 727 fd_set __user *, exp, struct __kernel_old_timeval __user *, tvp) in SYSCALL_DEFINE5() 732 static long do_pselect(int n, fd_set __user *inp, fd_set __user *outp, in do_pselect() 733 fd_set __user *exp, void __user *tsp, in do_pselect() 795 SYSCALL_DEFINE6(pselect6, int, n, fd_set __user *, inp, fd_set __user *, outp, in SYSCALL_DEFINE6() 796 fd_set __user *, exp, struct __kernel_timespec __user *, tsp, in SYSCALL_DEFINE6() [all …]
|
/openbmc/qemu/contrib/ivshmem-server/ |
H A D | ivshmem-server.h | 128 ivshmem_server_get_fds(const IvshmemServer *server, fd_set *fds, int *maxfd); 143 int ivshmem_server_handle_fds(IvshmemServer *server, fd_set *fds, int maxfd);
|
/openbmc/qemu/util/ |
H A D | main-loop.c | 410 static int pollfds_fill(GArray *pollfds, fd_set *rfds, fd_set *wfds, 411 fd_set *xfds) 436 static void pollfds_poll(GArray *pollfds, int nfds, fd_set *rfds, 437 fd_set *wfds, fd_set *xfds) 470 fd_set rfds, wfds, xfds;
|
/openbmc/qemu/contrib/ivshmem-client/ |
H A D | ivshmem-client.h | 133 void ivshmem_client_get_fds(const IvshmemClient *client, fd_set *fds, 150 int ivshmem_client_handle_fds(IvshmemClient *client, fd_set *fds, int maxfd);
|
/openbmc/linux/include/linux/ |
H A D | poll.h | 121 extern int core_sys_select(int n, fd_set __user *inp, fd_set __user *outp, 122 fd_set __user *exp, struct timespec64 *end_time);
|
/openbmc/linux/tools/testing/selftests/x86/ |
H A D | test_syscall_vdso.c | 172 fd_set rfds; 173 fd_set wfds; 174 fd_set efds;
|
/openbmc/linux/tools/lib/subcmd/ |
H A D | pager.c | 39 fd_set in; in pager_preexec() 40 fd_set exception; in pager_preexec()
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | func-select.rst | 24 .. c:function:: int select( int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct … 57 ``fd_set``. When the function timed out it returns
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/uml-utilities/uml-utilities-20040406/ |
H A D | 0001-include-required-system-header-files-for-fd_set-and-.patch | 4 Subject: [PATCH] include required system header files for fd_set and makedev 6 fd_set comes from sys/select.h
|
/openbmc/linux/tools/testing/selftests/rtc/ |
H A D | rtctest.c | 172 fd_set readfds; in TEST_F() 197 fd_set readfds; in TEST_F() 255 fd_set readfds; in TEST_F() 307 fd_set readfds; 365 fd_set readfds;
|
/openbmc/linux/tools/power/acpi/tools/acpidbg/ |
H A D | acpidbg.c | 115 static int acpi_aml_set_fd(int fd, int maxfd, fd_set *set) in acpi_aml_set_fd() 267 fd_set rfds; in acpi_aml_loop() 268 fd_set wfds; in acpi_aml_loop() 338 fd_set rfds; in acpi_aml_readable()
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/mdns/mdns/ |
H A D | 0005-Use-list-for-changed-interfaces.patch | 132 fd_set readFDs; 150 … while (0 < select(pChgRec->NotifySD + 1, &readFDs, (fd_set*) NULL, (fd_set*) NULL, &zeroTimeout));
|