maxfd 38 examples/libsmbclient/smbwrapper/select.c int sys_select(int maxfd, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *tval) maxfd 52 examples/libsmbclient/smbwrapper/select.c ret = select(maxfd,readfds2,writefds,errorfds,tval); maxfd 70 examples/libsmbclient/smbwrapper/select.c int sys_select_intr(int maxfd, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *tval) maxfd 111 examples/libsmbclient/smbwrapper/select.c ret = sys_select(maxfd, readfds2, writefds2, errorfds2, ptval); maxfd 37 lib/tevent/tevent_select.c int maxfd; maxfd 65 lib/tevent/tevent_select.c select_ev->maxfd = 0; maxfd 67 lib/tevent/tevent_select.c if (fde->fd > select_ev->maxfd) { maxfd 68 lib/tevent/tevent_select.c select_ev->maxfd = fde->fd; maxfd 91 lib/tevent/tevent_select.c if (select_ev->maxfd == fde->fd) { maxfd 92 lib/tevent/tevent_select.c select_ev->maxfd = EVENT_INVALID_MAXFD; maxfd 119 lib/tevent/tevent_select.c if (fde->fd > select_ev->maxfd) { maxfd 120 lib/tevent/tevent_select.c select_ev->maxfd = fde->fd; maxfd 137 lib/tevent/tevent_select.c if (select_ev->maxfd == EVENT_INVALID_MAXFD) { maxfd 159 lib/tevent/tevent_select.c selrtn = select(select_ev->maxfd+1, &r_fds, &w_fds, NULL, tvalp); maxfd 46 lib/tevent/tevent_standard.c int maxfd; maxfd 350 lib/tevent/tevent_standard.c std_ev->maxfd = 0; maxfd 352 lib/tevent/tevent_standard.c if (fde->fd > std_ev->maxfd) { maxfd 353 lib/tevent/tevent_standard.c std_ev->maxfd = fde->fd; maxfd 378 lib/tevent/tevent_standard.c if (std_ev->maxfd == fde->fd) { maxfd 379 lib/tevent/tevent_standard.c std_ev->maxfd = EVENT_INVALID_MAXFD; maxfd 410 lib/tevent/tevent_standard.c if ((std_ev->maxfd != EVENT_INVALID_MAXFD) maxfd 411 lib/tevent/tevent_standard.c && (fde->fd > std_ev->maxfd)) { maxfd 412 lib/tevent/tevent_standard.c std_ev->maxfd = fde->fd; maxfd 451 lib/tevent/tevent_standard.c if (std_ev->maxfd == EVENT_INVALID_MAXFD) { maxfd 473 lib/tevent/tevent_standard.c selrtn = select(std_ev->maxfd+1, &r_fds, &w_fds, NULL, tvalp); maxfd 36 source3/include/event.h struct timeval *timeout, int *maxfd); maxfd 700 source3/include/proto.h int sys_select(int maxfd, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *tval); maxfd 701 source3/include/proto.h int sys_select_intr(int maxfd, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *tval); maxfd 51 source3/lib/events.c struct timeval *timeout, int *maxfd) maxfd 68 source3/lib/events.c && (fde->fd > *maxfd)) { maxfd 69 source3/lib/events.c *maxfd = fde->fd; maxfd 157 source3/lib/events.c int maxfd = 0; maxfd 172 source3/lib/events.c if (!event_add_to_select_args(ev, &now, &r_fds, &w_fds, &to, &maxfd)) { maxfd 176 source3/lib/events.c ret = sys_select(maxfd+1, &r_fds, &w_fds, NULL, &to); maxfd 59 source3/lib/select.c int sys_select(int maxfd, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *tval) maxfd 95 source3/lib/select.c maxfd = MAX(select_pipe[0]+1, maxfd); maxfd 107 source3/lib/select.c ret = select(maxfd,readfds2,writefds,errorfds,tval); maxfd 147 source3/lib/select.c int sys_select_intr(int maxfd, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *tval) maxfd 195 source3/lib/select.c ret = select(maxfd, readfds2, writefds2, errorfds2, ptval); maxfd 1279 source3/lib/util_sock.c int maxfd; maxfd 1341 source3/lib/util_sock.c maxfd = 0; maxfd 1350 source3/lib/util_sock.c if (sockets[i]>maxfd) maxfd 1351 source3/lib/util_sock.c maxfd = sockets[i]; maxfd 1357 source3/lib/util_sock.c res = sys_select_intr(maxfd+1, &r_fds, &wr_fds, NULL, &tv); maxfd 1669 source3/nmbd/nmbd_packets.c static bool create_listen_fdset(fd_set **ppset, int **psock_array, int *listen_number, int *maxfd) maxfd 1704 source3/nmbd/nmbd_packets.c *maxfd = MAX( *maxfd, ClientNMB); maxfd 1710 source3/nmbd/nmbd_packets.c *maxfd = MAX( *maxfd, subrec->nmb_sock); maxfd 1716 source3/nmbd/nmbd_packets.c *maxfd = MAX( *maxfd, ClientDGRAM); maxfd 1722 source3/nmbd/nmbd_packets.c *maxfd = MAX( *maxfd, subrec->dgram_sock); maxfd 1747 source3/nmbd/nmbd_packets.c static int maxfd = 0; maxfd 1758 source3/nmbd/nmbd_packets.c if(create_listen_fdset(&listen_set, &sock_array, &listen_number, &maxfd)) { maxfd 1772 source3/nmbd/nmbd_packets.c maxfd = MAX( maxfd, dns_fd); maxfd 1794 source3/nmbd/nmbd_packets.c &r_fds, &w_fds, &timeout, &maxfd); maxfd 1797 source3/nmbd/nmbd_packets.c selrtn = sys_select(maxfd+1,&r_fds,&w_fds,NULL,&timeout); maxfd 779 source3/smbd/process.c int maxfd = 0; maxfd 801 source3/smbd/process.c &r_fds, &w_fds, &to, &maxfd); maxfd 813 source3/smbd/process.c selrtn = sys_select(maxfd+1,&r_fds,&w_fds,NULL,&to); maxfd 1060 source3/winbindd/winbindd.c int maxfd = 0, selret; maxfd 1081 source3/winbindd/winbindd.c &r_fds, &w_fds, &ev_timeout, &maxfd); maxfd 1090 source3/winbindd/winbindd.c maxfd = MAX(ev->fd, maxfd); maxfd 1094 source3/winbindd/winbindd.c maxfd = MAX(ev->fd, maxfd); maxfd 1100 source3/winbindd/winbindd.c selret = sys_select(maxfd + 1, &r_fds, &w_fds, NULL, &timeout); maxfd 1383 source3/winbindd/winbindd_dual.c int maxfd; maxfd 1407 source3/winbindd/winbindd_dual.c maxfd = state.sock; maxfd 1410 source3/winbindd/winbindd_dual.c &r_fds, &w_fds, &t, &maxfd); maxfd 1417 source3/winbindd/winbindd_dual.c ret = sys_select(maxfd + 1, &r_fds, &w_fds, NULL, tp); maxfd 32 source4/lib/smbreadline/smbreadline.c static int sys_select_intr(int maxfd, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *tval) maxfd 59 source4/lib/smbreadline/smbreadline.c ret = select(maxfd, readfds2, writefds2, errorfds2, ptval);