| /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/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/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/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/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/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);
|
| H A D | ivshmem-client.c | 272 ivshmem_client_get_fds(const IvshmemClient *client, fd_set *fds, int *maxfd) in ivshmem_client_get_fds() 293 ivshmem_client_handle_event(IvshmemClient *client, const fd_set *cur, int maxfd) in ivshmem_client_handle_event() 328 ivshmem_client_handle_fds(IvshmemClient *client, fd_set *fds, int maxfd) in ivshmem_client_handle_fds()
|
| /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/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/openbmc/meta-openembedded/meta-oe/recipes-graphics/fontforge/fontforge/ |
| H A D | 0001-include-sys-select-on-non-glibc-platforms.patch | 6 musl needs sys/select.h for defining fd_set
|
| /openbmc/u-boot/arch/nios2/include/asm/ |
| H A D | posix_types.h | 63 #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof(*(fd_set *)fdsetp)))
|
| /openbmc/pldm/oem/ibm/libpldmresponder/ |
| H A D | utils.cpp | 65 fd_set rfd; in setupUnixSocket() 108 fd_set wfd; in writeToUnixSocket()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/sblim-sfcc/sblim-sfcc/ |
| H A D | 0001-cimxml-Include-sys-select.h-for-fd_set.patch | 4 Subject: [PATCH] cimxml: Include sys/select.h for fd_set
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/uml-utilities/ |
| H A D | uml-utilities_20040406.bb | 9 file://0001-include-required-system-header-files-for-fd_set-and-.patch \
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/sblim-sfcc/ |
| H A D | sblim-sfcc_2.2.8.bb | 6 file://0001-cimxml-Include-sys-select.h-for-fd_set.patch \
|
| /openbmc/phosphor-debug-collector/ |
| H A D | dump_offload.cpp | 46 fd_set writeFileDescriptor; in writeOnUnixSocket() 151 fd_set readFD; in requestOffload()
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-bsp/ledmon/ledmon/ |
| H A D | 0002-include-sys-select.h-and-sys-types.h.patch | 6 sys/select.h is needed to provide fd_set definition
|
| /openbmc/u-boot/tools/gdb/ |
| H A D | serial.c | 85 fd_set fds; in serialreadchar()
|