r_fds             132 lib/tevent/tevent_select.c 	fd_set r_fds, w_fds;
r_fds             141 lib/tevent/tevent_select.c 	FD_ZERO(&r_fds);
r_fds             147 lib/tevent/tevent_select.c 			FD_SET(fde->fd, &r_fds);
r_fds             159 lib/tevent/tevent_select.c 	selrtn = select(select_ev->maxfd+1, &r_fds, &w_fds, NULL, tvalp);
r_fds             192 lib/tevent/tevent_select.c 			if (FD_ISSET(fde->fd, &r_fds)) flags |= TEVENT_FD_READ;
r_fds             446 lib/tevent/tevent_standard.c 	fd_set r_fds, w_fds;
r_fds             455 lib/tevent/tevent_standard.c 	FD_ZERO(&r_fds);
r_fds             461 lib/tevent/tevent_standard.c 			FD_SET(fde->fd, &r_fds);
r_fds             473 lib/tevent/tevent_standard.c 	selrtn = select(std_ev->maxfd+1, &r_fds, &w_fds, NULL, tvalp);
r_fds             506 lib/tevent/tevent_standard.c 			if (FD_ISSET(fde->fd, &r_fds)) flags |= TEVENT_FD_READ;
r_fds             385 nsswitch/wb_common.c 		fd_set r_fds;
r_fds             390 nsswitch/wb_common.c 		FD_ZERO(&r_fds);
r_fds             391 nsswitch/wb_common.c 		FD_SET(winbindd_fd, &r_fds);
r_fds             394 nsswitch/wb_common.c 		if (select(winbindd_fd + 1, &r_fds, NULL, NULL, &tv) == -1) {
r_fds             401 nsswitch/wb_common.c 		if (!FD_ISSET(winbindd_fd, &r_fds)) {
r_fds             445 nsswitch/wb_common.c 		fd_set r_fds;
r_fds             450 nsswitch/wb_common.c 		FD_ZERO(&r_fds);
r_fds             451 nsswitch/wb_common.c 		FD_SET(winbindd_fd, &r_fds);
r_fds             456 nsswitch/wb_common.c 		if ((selret = select(winbindd_fd + 1, &r_fds, NULL, NULL, &tv)) == -1) {
r_fds             472 nsswitch/wb_common.c 		if (FD_ISSET(winbindd_fd, &r_fds)) {
r_fds             156 source3/lib/events.c 	fd_set r_fds, w_fds;
r_fds             160 source3/lib/events.c 	FD_ZERO(&r_fds);
r_fds             172 source3/lib/events.c 	if (!event_add_to_select_args(ev, &now, &r_fds, &w_fds, &to, &maxfd)) {
r_fds             176 source3/lib/events.c 	ret = sys_select(maxfd+1, &r_fds, &w_fds, NULL, &to);
r_fds             185 source3/lib/events.c 	run_events(ev, ret, &r_fds, &w_fds);
r_fds             107 source3/lib/packet.c 	fd_set r_fds;
r_fds             109 source3/lib/packet.c 	FD_ZERO(&r_fds);
r_fds             110 source3/lib/packet.c 	FD_SET(ctx->fd, &r_fds);
r_fds             112 source3/lib/packet.c 	res = sys_select(ctx->fd+1, &r_fds, NULL, NULL, NULL);
r_fds            1277 source3/lib/util_sock.c 	fd_set r_fds, wr_fds;
r_fds            1343 source3/lib/util_sock.c 	FD_ZERO(&r_fds);
r_fds            1349 source3/lib/util_sock.c 		FD_SET(sockets[i], &r_fds);
r_fds            1357 source3/lib/util_sock.c 	res = sys_select_intr(maxfd+1, &r_fds, &wr_fds, NULL, &tv);
r_fds            1374 source3/lib/util_sock.c 		if (FD_ISSET(sockets[i], &r_fds) &&
r_fds            1382 source3/lib/util_sock.c 		if (!FD_ISSET(sockets[i], &r_fds) &&
r_fds             121 source3/lib/wbclient.c 	fd_set r_fds;
r_fds             127 source3/lib/wbclient.c 	FD_ZERO(&r_fds);
r_fds             128 source3/lib/wbclient.c 	FD_SET(fd, &r_fds);
r_fds             131 source3/lib/wbclient.c 	if ((select(fd+1, &r_fds, NULL, NULL, &tv) == -1)
r_fds             132 source3/lib/wbclient.c 	    || FD_ISSET(fd, &r_fds)) {
r_fds             127 source3/libads/cldap.c 	fd_set r_fds;
r_fds             137 source3/libads/cldap.c 	FD_ZERO(&r_fds);
r_fds             138 source3/libads/cldap.c 	FD_SET(sock, &r_fds);
r_fds             146 source3/libads/cldap.c 	ret = sys_select(sock+1, &r_fds, NULL, NULL, &timeout);
r_fds            1749 source3/nmbd/nmbd_packets.c 	fd_set r_fds;
r_fds            1765 source3/nmbd/nmbd_packets.c 	memcpy((char *)&r_fds, (char *)listen_set, sizeof(fd_set));
r_fds            1771 source3/nmbd/nmbd_packets.c 		FD_SET(dns_fd, &r_fds);
r_fds            1794 source3/nmbd/nmbd_packets.c 					 &r_fds, &w_fds, &timeout, &maxfd);
r_fds            1797 source3/nmbd/nmbd_packets.c 	selrtn = sys_select(maxfd+1,&r_fds,&w_fds,NULL,&timeout);
r_fds            1799 source3/nmbd/nmbd_packets.c 	if (run_events(nmbd_event_context(), selrtn, &r_fds, &w_fds)) {
r_fds            1808 source3/nmbd/nmbd_packets.c 	if (dns_fd != -1 && FD_ISSET(dns_fd,&r_fds)) {
r_fds            1816 source3/nmbd/nmbd_packets.c 			if (FD_ISSET(sock_array[i],&r_fds)) {
r_fds            1843 source3/nmbd/nmbd_packets.c 				if (FD_ISSET(sock_array[i],&r_fds)) {
r_fds             776 source3/smbd/process.c 	fd_set r_fds, w_fds;
r_fds             788 source3/smbd/process.c 	FD_ZERO(&r_fds);
r_fds             801 source3/smbd/process.c 					 &r_fds, &w_fds, &to, &maxfd);
r_fds             813 source3/smbd/process.c 		selrtn = sys_select(maxfd+1,&r_fds,&w_fds,NULL,&to);
r_fds             820 source3/smbd/process.c 	if (run_events(smbd_event_context(), selrtn, &r_fds, &w_fds)) {
r_fds            1059 source3/winbindd/winbindd.c 	fd_set r_fds, w_fds;
r_fds            1069 source3/winbindd/winbindd.c 	FD_ZERO(&r_fds);
r_fds            1081 source3/winbindd/winbindd.c 					 &r_fds, &w_fds, &ev_timeout, &maxfd);
r_fds            1089 source3/winbindd/winbindd.c 			FD_SET(ev->fd, &r_fds);
r_fds            1100 source3/winbindd/winbindd.c 	selret = sys_select(maxfd + 1, &r_fds, &w_fds, NULL, &timeout);
r_fds            1119 source3/winbindd/winbindd.c 	if (run_events(winbind_event_context(), selret, &r_fds, &w_fds)) {
r_fds            1127 source3/winbindd/winbindd.c 		if (FD_ISSET(ev->fd, &r_fds))
r_fds            1142 source3/winbindd/winbindd.c 	run_events(winbind_event_context(), selret, &r_fds, &w_fds);
r_fds            1381 source3/winbindd/winbindd_dual.c 		fd_set r_fds;
r_fds            1404 source3/winbindd/winbindd_dual.c 		FD_ZERO(&r_fds);
r_fds            1406 source3/winbindd/winbindd_dual.c 		FD_SET(state.sock, &r_fds);
r_fds            1410 source3/winbindd/winbindd_dual.c 					 &r_fds, &w_fds, &t, &maxfd);
r_fds            1417 source3/winbindd/winbindd_dual.c 		ret = sys_select(maxfd + 1, &r_fds, &w_fds, NULL, tp);
r_fds            1419 source3/winbindd/winbindd_dual.c 		if (run_events(winbind_event_context(), ret, &r_fds, &w_fds)) {