| /OK3568_Linux_fs/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))
|
| /OK3568_Linux_fs/external/xserver/os/ |
| H A D | xserver_poll.c | 102 fd_set *pReadSet, in map_poll_spec() 103 fd_set *pWriteSet, in map_poll_spec() 104 fd_set *pExceptSet) in map_poll_spec() 205 fd_set *pReadSet, in map_select_results() 206 fd_set *pWriteSet, in map_select_results() 207 fd_set *pExceptSet) in map_select_results() 242 fd_set read_descs; /* input file descs */ in xserver_poll() 243 fd_set write_descs; /* output file descs */ in xserver_poll() 244 fd_set except_descs; /* exception descs */ in xserver_poll()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/sys/ |
| H A D | select.h | 70 } fd_set; typedef 101 extern int select (int __nfds, fd_set *__restrict __readfds, 102 fd_set *__restrict __writefds, 103 fd_set *__restrict __exceptfds, 113 extern int pselect (int __nfds, fd_set *__restrict __readfds, 114 fd_set *__restrict __writefds, 115 fd_set *__restrict __exceptfds,
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/sys/ |
| H A D | select.h | 70 } fd_set; typedef 101 extern int select (int __nfds, fd_set *__restrict __readfds, 102 fd_set *__restrict __writefds, 103 fd_set *__restrict __exceptfds, 113 extern int pselect (int __nfds, fd_set *__restrict __readfds, 114 fd_set *__restrict __writefds, 115 fd_set *__restrict __exceptfds,
|
| /OK3568_Linux_fs/kernel/arch/powerpc/kernel/ |
| H A D | syscalls.c | 82 ppc_select(int n, fd_set __user *inp, fd_set __user *outp, fd_set __user *exp, struct __kernel_old_… in ppc_select() 89 || __get_user(inp, ((fd_set __user * __user *)(buffer+1))) in ppc_select() 90 || __get_user(outp, ((fd_set __user * __user *)(buffer+2))) in ppc_select() 91 || __get_user(exp, ((fd_set __user * __user *)(buffer+3))) in ppc_select()
|
| /OK3568_Linux_fs/u-boot/arch/xtensa/include/asm/ |
| H A D | posix_types.h | 58 (((fd_set *)fdsetp)->fds_bits[fd >> 5] |= (1<<(fd & 31))) 62 (((fd_set *)fdsetp)->fds_bits[fd >> 5] &= ~(1<<(fd & 31))) 66 ((((fd_set *)fdsetp)->fds_bits[fd >> 5] & (1<<(fd & 31))) != 0) 70 (memset(fdsetp, 0, sizeof(*(fd_set *)fdsetp)))
|
| /OK3568_Linux_fs/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)))
|
| /OK3568_Linux_fs/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)))
|
| /OK3568_Linux_fs/buildroot/package/socketcand/ |
| H A D | 0001-Fix-GCC10-build-failure.patch | 53 -fd_set readfds; 62 + fd_set readfds; 82 -fd_set readfds; 90 + fd_set readfds; 102 -fd_set readfds; 110 + fd_set readfds;
|
| /OK3568_Linux_fs/buildroot/package/fbterm/ |
| H A D | 0001-fbio.cpp-improxy.cpp-fbterm.cpp-fix-musl-compile.patch | 11 fbio.cpp:33:8: error: ‘fd_set’ does not name a type 12 static fd_set fds; 14 improxy.cpp:439:3: error: ‘fd_set’ was not declared in this scope 38 static fd_set fds;
|
| /OK3568_Linux_fs/kernel/fs/ |
| H A D | select.c | 624 int core_sys_select(int n, fd_set __user *inp, fd_set __user *outp, in core_sys_select() 625 fd_set __user *exp, struct timespec64 *end_time) in core_sys_select() 703 static int kern_select(int n, fd_set __user *inp, fd_set __user *outp, in kern_select() 704 fd_set __user *exp, struct __kernel_old_timeval __user *tvp) in kern_select() 725 SYSCALL_DEFINE5(select, int, n, fd_set __user *, inp, fd_set __user *, outp, in SYSCALL_DEFINE5() 726 fd_set __user *, exp, struct __kernel_old_timeval __user *, tvp) in SYSCALL_DEFINE5() 731 static long do_pselect(int n, fd_set __user *inp, fd_set __user *outp, in do_pselect() 732 fd_set __user *exp, void __user *tsp, in do_pselect() 794 SYSCALL_DEFINE6(pselect6, int, n, fd_set __user *, inp, fd_set __user *, outp, in SYSCALL_DEFINE6() 795 fd_set __user *, exp, struct __kernel_timespec __user *, tsp, in SYSCALL_DEFINE6() [all …]
|
| /OK3568_Linux_fs/buildroot/package/bcusdk/ |
| H A D | 0001-fd_set-requires-inclusion-of-sys-select.h.patch | 4 Subject: [PATCH] fd_set requires inclusion of <sys/select.h> 6 According to POSIX.1-2001, the definition fd_set and related macros is 7 in <sys/select.h>, so it should be included in files using fd_set to
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/bits/ |
| H A D | select.h | 28 fd_set *__arr = (s); \ 29 for (__i = 0; __i < sizeof (fd_set) / sizeof (__fd_mask); ++__i) \
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/bits/ |
| H A D | select.h | 28 fd_set *__arr = (s); \ 29 for (__i = 0; __i < sizeof (fd_set) / sizeof (__fd_mask); ++__i) \
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/rtc/ |
| H A D | rtctest.c | 91 fd_set readfds; in TEST_F() 116 fd_set readfds; in TEST_F() 170 fd_set readfds; in TEST_F() 218 fd_set readfds; 272 fd_set readfds;
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | poll.h | 119 extern int core_sys_select(int n, fd_set __user *inp, fd_set __user *outp, 120 fd_set __user *exp, struct timespec64 *end_time);
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/x86/ |
| H A D | test_syscall_vdso.c | 172 fd_set rfds; 173 fd_set wfds; 174 fd_set efds;
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/libteam/libteam/ |
| H A D | 0001-include-sys-select.h-for-fd_set-definition.patch | 4 Subject: [PATCH 1/2] include sys/select.h for fd_set definition 7 teamnl.c:160:2: error: unknown type name 'fd_set'; did you mean 'fpos_t'?
|
| /OK3568_Linux_fs/kernel/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
|
| /OK3568_Linux_fs/kernel/arch/powerpc/include/asm/ |
| H A D | asm-prototypes.h | 96 ppc_select(int n, fd_set __user *inp, fd_set __user *outp, fd_set __user *exp,
|
| /OK3568_Linux_fs/kernel/tools/lib/subcmd/ |
| H A D | pager.c | 39 fd_set in; in pager_preexec() 40 fd_set exception; in pager_preexec()
|
| /OK3568_Linux_fs/buildroot/dl/unixbench/git/UnixBench/src/ |
| H A D | time-polling.c | 170 static void time_select (fd_set *input_fds, fd_set *output_fds, in time_select() 171 fd_set *exception_fds, int max_fd, int num_iter, in time_select() 184 fd_set i_fds, o_fds, e_fds; in time_select() 364 fd_set input_fds, output_fds, exception_fds;
|
| /OK3568_Linux_fs/yocto/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
|
| /OK3568_Linux_fs/external/rk_pcba_test/ |
| H A D | echo_rotary_test.c | 38 static int rotary_wait_event(int maxfd, fd_set *readfds, int time) in rotary_wait_event() 102 fd_set rdfds; in main()
|
| /OK3568_Linux_fs/kernel/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()
|