Home
last modified time | relevance | path

Searched refs:efdset (Results 1 – 5 of 5) sorted by relevance

/xnu-12377.61.12/tests/skywalk/ !
H A Dskt_oneslot.c56 fd_set rfdset, wfdset, efdset; in skt_oneslot_common() local
88 FD_ZERO(&efdset); in skt_oneslot_common()
91 FD_SET(channelfd, &efdset); in skt_oneslot_common()
92 error = select(channelfd + 1, &rfdset, &wfdset, &efdset, NULL); in skt_oneslot_common()
96 assert(!FD_ISSET(channelfd, &efdset)); in skt_oneslot_common()
153 FD_ZERO(&efdset); in skt_oneslot_common()
155 FD_SET(channelfd, &efdset); in skt_oneslot_common()
156 error = select(channelfd + 1, &rfdset, NULL, &efdset, NULL); in skt_oneslot_common()
158 assert(!FD_ISSET(channelfd, &efdset)); in skt_oneslot_common()
H A Dskt_badring.c50 fd_set rfdset, wfdset, efdset; in skt_badringtx_common() local
87 FD_ZERO(&efdset); in skt_badringtx_common()
88 FD_SET(channelfd, &efdset); in skt_badringtx_common()
89 error = select(channelfd + 1, &rfdset, &wfdset, &efdset, &timeout); in skt_badringtx_common()
100 assert(FD_ISSET(channelfd, &efdset)); in skt_badringtx_common()
169 fd_set rfdset, wfdset, efdset; in skt_badringrx_common() local
206 FD_ZERO(&efdset); in skt_badringrx_common()
207 FD_SET(channelfd, &efdset); in skt_badringrx_common()
208 error = select(channelfd + 1, &rfdset, &wfdset, &efdset, &timeout); in skt_badringrx_common()
219 assert(FD_ISSET(channelfd, &efdset)); in skt_badringrx_common()
H A Dskt_shutdown2.c66 fd_set rfdset, efdset; in skt_shutdown2_common() local
89 FD_ZERO(&efdset); in skt_shutdown2_common()
91 FD_SET(channelfd, &efdset); in skt_shutdown2_common()
92 error = select(channelfd + 1, &rfdset, NULL, &efdset, NULL); in skt_shutdown2_common()
96 assert(FD_ISSET(channelfd, &efdset)); in skt_shutdown2_common()
H A Dskt_nslots.c59 fd_set fdset, efdset; in skt_nslots_common() local
83 FD_ZERO(&efdset); in skt_nslots_common()
135 FD_SET(channelfd, &efdset); in skt_nslots_common()
136 error = select(channelfd + 1, NULL, &fdset, &efdset, NULL); in skt_nslots_common()
140 assert(!FD_ISSET(channelfd, &efdset)); in skt_nslots_common()
205 FD_SET(channelfd, &efdset); in skt_nslots_common()
206 error = select(channelfd + 1, &fdset, NULL, &efdset, NULL); in skt_nslots_common()
210 assert(!FD_ISSET(channelfd, &efdset)); in skt_nslots_common()
H A Dskt_shutdown.c58 fd_set rfdset, wfdset, efdset; in skt_shutdown_common() local
86 FD_ZERO(&efdset); in skt_shutdown_common()
89 FD_SET(channelfd, &efdset); in skt_shutdown_common()
90 error = select(channelfd + 1, &rfdset, &wfdset, &efdset, NULL); in skt_shutdown_common()
95 assert(FD_ISSET(channelfd, &efdset)); in skt_shutdown_common()
253 FD_ZERO(&efdset); in skt_shutdown_common()
256 FD_SET(channelfd, &efdset); in skt_shutdown_common()
257 error = select(channelfd + 1, &rfdset, &wfdset, &efdset, NULL); in skt_shutdown_common()
262 assert(FD_ISSET(channelfd, &efdset)); in skt_shutdown_common()