/openbmc/linux/tools/testing/selftests/rtc/ |
H A D | rtctest.c | 172 fd_set readfds; in TEST_F() local 174 FD_ZERO(&readfds); in TEST_F() 175 FD_SET(self->fd, &readfds); in TEST_F() 177 rc = select(self->fd + 1, &readfds, NULL, NULL, &tv); in TEST_F() 197 fd_set readfds; in TEST_F() local 228 FD_ZERO(&readfds); in TEST_F() 229 FD_SET(self->fd, &readfds); in TEST_F() 231 rc = select(self->fd + 1, &readfds, NULL, NULL, &tv); in TEST_F() 255 fd_set readfds; in TEST_F() local 286 FD_ZERO(&readfds); in TEST_F() [all …]
|
/openbmc/qemu/tests/qtest/ |
H A D | ipmi-bt-test.c | 127 fd_set readfds; in read_emu_data() local 131 FD_ZERO(&readfds); in read_emu_data() 132 FD_SET(emu_fd, &readfds); in read_emu_data() 135 rv = select(emu_fd + 1, &readfds, NULL, NULL, &tv); in read_emu_data() 308 fd_set readfds; in test_connect() local 317 FD_ZERO(&readfds); in test_connect() 318 FD_SET(emu_lfd, &readfds); in test_connect() 321 rv = select(emu_lfd + 1, &readfds, NULL, NULL, &tv); in test_connect()
|
H A D | remote-i3c-test.c | 125 fd_set readfds; in setup_fd() local 127 FD_ZERO(&readfds); in setup_fd() 128 FD_SET(sock, &readfds); in setup_fd() 129 g_assert(select(sock + 1, &readfds, NULL, NULL, NULL) == 1); in setup_fd()
|
/openbmc/linux/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 … 32 ``readfds`` 62 function succeeds, setting the bit of the file descriptor in ``readfds`` 103 The ``readfds``, ``writefds``, ``exceptfds`` or ``timeout`` pointer
|
/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() argument 330 int Result = select(nfds, readfds, writefds, exceptfds, timeout); in sigwrap_select() 341 int sigwrap_pselect(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, const struct ti… in sigwrap_pselect() argument 354 int Result = pselect(nfds, readfds, writefds, exceptfds, timeout, sigmask); 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() argument 387 int Result = select(nfds, readfds, writefds, exceptfds, timeout); in sigwrap_select() 398 int sigwrap_pselect(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, const struct ti… in sigwrap_pselect() argument 411 int Result = pselect(nfds, readfds, writefds, exceptfds, timeout, sigmask); in sigwrap_pselect()
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/tipcutils/tipcutils/ |
H A D | 0001-test-ptts-Set-recv-buffer-size-too-max-to-receive-as.patch | 43 FD_ZERO(&readfds); 51 FD_SET(sd[i], &readfds);
|
/openbmc/linux/tools/power/x86/turbostat/ |
H A D | turbostat.c | 3363 fd_set readfds; in do_sleep() local 3366 FD_ZERO(&readfds); in do_sleep() 3367 FD_SET(0, &readfds); in do_sleep() 3375 retval = select(1, &readfds, NULL, NULL, &tout); in do_sleep()
|
/openbmc/qemu/linux-user/ |
H A D | syscall.c | 699 safe_syscall6(int, pselect6, int, nfds, fd_set *, readfds, fd_set *, writefds, \ in safe_syscall3()
|