Lines Matching defs:set
77 ** Override PR_MAX_SELECT_DESC if you need more space in the select set.
105 ** with its own maximum number of elements in the set.
108 ** A set describing the io descriptors for which ready for reading
112 ** A set describing the io descriptors for which ready for writing
116 ** A set describing the io descriptors for which exception pending
129 ** A set describing the io descriptors which are ready for reading.
132 ** A set describing the io descriptors which are ready for writing.
135 ** A set describing the io descriptors which have pending exception.
153 ** PR_FD_ZERO(&fdset) initializes a descriptor set fdset to the null set.
166 NSPR_API(void) PR_FD_ZERO(PR_fd_set *set);
167 NSPR_API(void) PR_FD_SET(PRFileDesc *fd, PR_fd_set *set);
168 NSPR_API(void) PR_FD_CLR(PRFileDesc *fd, PR_fd_set *set);
169 NSPR_API(PRInt32) PR_FD_ISSET(PRFileDesc *fd, PR_fd_set *set);
170 NSPR_API(void) PR_FD_NSET(PRInt32 osfd, PR_fd_set *set);
171 NSPR_API(void) PR_FD_NCLR(PRInt32 osfd, PR_fd_set *set);
172 NSPR_API(PRInt32) PR_FD_NISSET(PRInt32 osfd, PR_fd_set *set);