Searched refs:fdset (Results 1 – 2 of 2) sorted by relevance
1054 VOID NX_BSD_FD_SET(INT fd, nx_bsd_fd_set *fdset);1055 VOID NX_BSD_FD_CLR(INT fd, nx_bsd_fd_set *fdset);1056 INT NX_BSD_FD_ISSET(INT fd, nx_bsd_fd_set *fdset);1057 VOID NX_BSD_FD_ZERO(nx_bsd_fd_set *fdset);
8784 VOID NX_BSD_FD_SET(INT fd, nx_bsd_fd_set *fdset) in NX_BSD_FD_SET() argument8808 if ((fdset -> fd_array[index] & (((ULONG) 1) << fd)) == 0) in NX_BSD_FD_SET()8812 fdset -> fd_array[index] = fdset -> fd_array[index] | (((ULONG) 1) << fd); in NX_BSD_FD_SET()8815 fdset -> fd_count++; in NX_BSD_FD_SET()8864 VOID NX_BSD_FD_CLR(INT fd, nx_bsd_fd_set *fdset) in NX_BSD_FD_CLR() argument8878 if ((fd < NX_BSD_MAX_SOCKETS) && (fdset -> fd_count)) in NX_BSD_FD_CLR()8888 if (fdset -> fd_array[index] & (((ULONG) 1) << fd)) in NX_BSD_FD_CLR()8892 fdset -> fd_array[index] = fdset -> fd_array[index] & ~(((ULONG) 1) << fd); in NX_BSD_FD_CLR()8895 fdset -> fd_count--; in NX_BSD_FD_CLR()8943 INT NX_BSD_FD_ISSET(INT fd, nx_bsd_fd_set *fdset) in NX_BSD_FD_ISSET() argument[all …]