Home | History | Annotate | Download | only in obsolete

Lines Matching refs:set

61 ** Override PR_MAX_SELECT_DESC if you need more space in the select set.
89 ** with its own maximum number of elements in the set.
92 ** A set describing the io descriptors for which ready for reading
96 ** A set describing the io descriptors for which ready for writing
100 ** A set describing the io descriptors for which exception pending
113 ** A set describing the io descriptors which are ready for reading.
116 ** A set describing the io descriptors which are ready for writing.
119 ** A set describing the io descriptors which have pending exception.
137 ** PR_FD_ZERO(&fdset) initializes a descriptor set fdset to the null set.
150 NSPR_API(void) PR_FD_ZERO(PR_fd_set *set);
151 NSPR_API(void) PR_FD_SET(PRFileDesc *fd, PR_fd_set *set);
152 NSPR_API(void) PR_FD_CLR(PRFileDesc *fd, PR_fd_set *set);
153 NSPR_API(PRInt32) PR_FD_ISSET(PRFileDesc *fd, PR_fd_set *set);
154 NSPR_API(void) PR_FD_NSET(PRInt32 osfd, PR_fd_set *set);
155 NSPR_API(void) PR_FD_NCLR(PRInt32 osfd, PR_fd_set *set);
156 NSPR_API(PRInt32) PR_FD_NISSET(PRInt32 osfd, PR_fd_set *set);