Searched refs:fd_set (Results 1 – 9 of 9) sorted by relevance
/u-boot/arch/microblaze/include/asm/ |
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))
|
/u-boot/arch/xtensa/include/asm/ |
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)))
|
/u-boot/arch/arm/include/asm/ |
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)))
|
/u-boot/arch/nds32/include/asm/ |
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)))
|
/u-boot/arch/riscv/include/asm/ |
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)))
|
/u-boot/arch/nios2/include/asm/ |
A D | posix_types.h | 63 #define __FD_ZERO(fdsetp) (memset (fdsetp, 0, sizeof(*(fd_set *)fdsetp)))
|
/u-boot/tools/gdb/ |
A D | serial.c | 85 fd_set fds; in serialreadchar()
|
/u-boot/include/linux/ |
A D | types.h | 10 typedef __kernel_fd_set fd_set; typedef
|
/u-boot/tools/ |
A D | kwboot.c | 159 fd_set rfds; in kwboot_tty_recv() 539 fd_set rfds; in kwboot_terminal()
|
Completed in 11 milliseconds