Home
last modified time | relevance | path

Searched refs:fd_set (Results 1 – 25 of 56) sorted by relevance

123

/openbmc/u-boot/arch/microblaze/include/asm/
H A Dposix_types.h63 #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 Dposix_types.h57 (((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 Dposix_types.h72 (((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 Dposix_types.h71 (((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 Dposix_types.h74 (((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 DEINTR_wrappers.h65 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 DEINTR_wrappers.c326 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 DEINTR_wrappers.h65 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 DEINTR_wrappers.c383 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 D0001-Android-Fix-the-build.patch6 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 D0012-Fix-configuration-of-NETSNMP_FD_MASK_TYPE.patch21 { 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 Divshmem-server.h128 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 Divshmem-client.h133 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 Divshmem-client.c272 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 Dmain-loop.c410 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 D0001-include-required-system-header-files-for-fd_set-and-.patch4 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 D0001-include-sys-select-on-non-glibc-platforms.patch6 musl needs sys/select.h for defining fd_set
/openbmc/u-boot/arch/nios2/include/asm/
H A Dposix_types.h63 #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof(*(fd_set *)fdsetp)))
/openbmc/pldm/oem/ibm/libpldmresponder/
H A Dutils.cpp65 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 D0001-cimxml-Include-sys-select.h-for-fd_set.patch4 Subject: [PATCH] cimxml: Include sys/select.h for fd_set
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/uml-utilities/
H A Duml-utilities_20040406.bb9 file://0001-include-required-system-header-files-for-fd_set-and-.patch \
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/sblim-sfcc/
H A Dsblim-sfcc_2.2.8.bb6 file://0001-cimxml-Include-sys-select.h-for-fd_set.patch \
/openbmc/phosphor-debug-collector/
H A Ddump_offload.cpp46 fd_set writeFileDescriptor; in writeOnUnixSocket()
151 fd_set readFD; in requestOffload()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-bsp/ledmon/ledmon/
H A D0002-include-sys-select.h-and-sys-types.h.patch6 sys/select.h is needed to provide fd_set definition
/openbmc/u-boot/tools/gdb/
H A Dserial.c85 fd_set fds; in serialreadchar()

123