Home
last modified time | relevance | path

Searched refs:fds_bits (Results 1 – 14 of 14) sorted by relevance

/openbmc/u-boot/arch/m68k/include/asm/
H A Dposix_types.h45 #define __FD_SET(d, set) ((set)->fds_bits[__FDELT(d)] |= __FDMASK(d))
46 #define __FD_CLR(d, set) ((set)->fds_bits[__FDELT(d)] &= ~__FDMASK(d))
47 #define __FD_ISSET(d, set) ((set)->fds_bits[__FDELT(d)] & __FDMASK(d))
62 fdsetp->fds_bits[_tmp] |= (1UL<<_rem); in __FD_SET()
70 fdsetp->fds_bits[_tmp] &= ~(1UL<<_rem); in __FD_CLR()
78 return (p->fds_bits[_tmp] & (1UL<<_rem)) != 0; in __FD_ISSET()
88 unsigned int *tmp = (unsigned int *)p->fds_bits; in __FD_ZERO()
/openbmc/u-boot/arch/powerpc/include/asm/
H A Dposix_types.h45 #define __FD_SET(d, set) ((set)->fds_bits[__FDELT(d)] |= __FDMASK(d))
46 #define __FD_CLR(d, set) ((set)->fds_bits[__FDELT(d)] &= ~__FDMASK(d))
47 #define __FD_ISSET(d, set) ((set)->fds_bits[__FDELT(d)] & __FDMASK(d))
62 fdsetp->fds_bits[_tmp] |= (1UL<<_rem); in __FD_SET()
70 fdsetp->fds_bits[_tmp] &= ~(1UL<<_rem); in __FD_CLR()
78 return (p->fds_bits[_tmp] & (1UL<<_rem)) != 0; in __FD_ISSET()
88 unsigned int *tmp = (unsigned int *)p->fds_bits; in __FD_ZERO()
/openbmc/u-boot/arch/sh/include/asm/
H A Dposix_types.h57 __fdsetp->fds_bits[__tmp] |= (1UL<<__rem); in __FD_SET()
65 __fdsetp->fds_bits[__tmp] &= ~(1UL<<__rem); in __FD_CLR()
74 return (__p->fds_bits[__tmp] & (1UL<<__rem)) != 0; in __FD_ISSET()
84 unsigned long *__tmp = __p->fds_bits; in __FD_ZERO()
/openbmc/u-boot/arch/mips/include/asm/
H A Dposix_types.h60 __fdsetp->fds_bits[__tmp] |= (1UL<<__rem); in __FD_SET()
68 __fdsetp->fds_bits[__tmp] &= ~(1UL<<__rem); in __FD_CLR()
76 return (__p->fds_bits[__tmp] & (1UL<<__rem)) != 0; in __FD_ISSET()
86 unsigned long *__tmp = __p->fds_bits; in __FD_ZERO()
/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)
/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)
/openbmc/u-boot/arch/microblaze/include/asm/
H A Dposix_types.h64 __set_bit (fd, (void *)&((__kernel_fd_set *)fd_set)->fds_bits)
67 __clear_bit (fd, (void *)&((__kernel_fd_set *)fd_set)->fds_bits)
70 __test_bit (fd, (void *)&((__kernel_fd_set *)fd_set)->fds_bits)
/openbmc/u-boot/arch/nios2/include/asm/
H A Dposix_types.h54 #define __FD_SET(d, set) ((set)->fds_bits[__FDELT(d)] |= __FDMASK(d))
57 #define __FD_CLR(d, set) ((set)->fds_bits[__FDELT(d)] &= ~__FDMASK(d))
60 #define __FD_ISSET(d, set) ((set)->fds_bits[__FDELT(d)] & __FDMASK(d))
/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)
/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)
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/net-snmp/net-snmp/
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])
H A D0001-Android-Fix-the-build.patch47 { 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])
/openbmc/linux/include/uapi/linux/
H A Dposix_types.h26 unsigned long fds_bits[__FD_SETSIZE / (8 * sizeof(long))]; member
/openbmc/u-boot/include/linux/
H A Dposix_types.h37 unsigned long fds_bits [__FDSET_LONGS]; member