Searched refs:rfdset (Results 1 – 4 of 4) sorted by relevance
| /xnu-12377.81.4/tests/skywalk/ |
| H A D | skt_badring.c | 50 fd_set rfdset, wfdset, efdset; in skt_badringtx_common() local 83 FD_ZERO(&rfdset); in skt_badringtx_common() 84 FD_SET(channelfd, &rfdset); in skt_badringtx_common() 89 error = select(channelfd + 1, &rfdset, &wfdset, &efdset, &timeout); in skt_badringtx_common() 98 assert(!FD_ISSET(channelfd, &rfdset)); in skt_badringtx_common() 169 fd_set rfdset, wfdset, efdset; in skt_badringrx_common() local 202 FD_ZERO(&rfdset); in skt_badringrx_common() 203 FD_SET(channelfd, &rfdset); in skt_badringrx_common() 208 error = select(channelfd + 1, &rfdset, &wfdset, &efdset, &timeout); in skt_badringrx_common() 217 assert(!FD_ISSET(channelfd, &rfdset)); in skt_badringrx_common()
|
| H A D | skt_oneslot.c | 56 fd_set rfdset, wfdset, efdset; in skt_oneslot_common() local 86 FD_ZERO(&rfdset); in skt_oneslot_common() 89 FD_SET(channelfd, &rfdset); in skt_oneslot_common() 92 error = select(channelfd + 1, &rfdset, &wfdset, &efdset, NULL); in skt_oneslot_common() 94 assert(!FD_ISSET(channelfd, &rfdset)); in skt_oneslot_common() 152 FD_ZERO(&rfdset); in skt_oneslot_common() 154 FD_SET(channelfd, &rfdset); in skt_oneslot_common() 156 error = select(channelfd + 1, &rfdset, NULL, &efdset, NULL); in skt_oneslot_common()
|
| H A D | skt_shutdown2.c | 66 fd_set rfdset, efdset; in skt_shutdown2_common() local 88 FD_ZERO(&rfdset); in skt_shutdown2_common() 90 FD_SET(channelfd, &rfdset); in skt_shutdown2_common() 92 error = select(channelfd + 1, &rfdset, NULL, &efdset, NULL); in skt_shutdown2_common() 95 assert(!FD_ISSET(channelfd, &rfdset)); in skt_shutdown2_common()
|
| H A D | skt_shutdown.c | 58 fd_set rfdset, wfdset, efdset; in skt_shutdown_common() local 84 FD_ZERO(&rfdset); in skt_shutdown_common() 87 FD_SET(channelfd, &rfdset); in skt_shutdown_common() 90 error = select(channelfd + 1, &rfdset, &wfdset, &efdset, NULL); in skt_shutdown_common() 93 assert(!FD_ISSET(channelfd, &rfdset)); in skt_shutdown_common() 251 FD_ZERO(&rfdset); in skt_shutdown_common() 254 FD_SET(channelfd, &rfdset); in skt_shutdown_common() 257 error = select(channelfd + 1, &rfdset, &wfdset, &efdset, NULL); in skt_shutdown_common() 260 assert(!FD_ISSET(channelfd, &rfdset)); in skt_shutdown_common()
|