Searched refs:input_set (Results 1 – 2 of 2) sorted by relevance
/illumos-gate/usr/src/lib/print/libhttp-core/common/ |
H A D | http.c | 328 if (http->input_set) in httpClose() 329 free(http->input_set); in httpClose() 2131 if (!http->input_set) in http_wait() 2140 http->input_set = calloc(1, sizeof(fd_set)); in http_wait() 2153 http->input_set = calloc(1, set_size); in http_wait() 2156 if (!http->input_set) in http_wait() 2162 FD_SET(http->fd, http->input_set); in http_wait() 2169 nfds = select(http->fd + 1, http->input_set, NULL, NULL, &timeout); in http_wait() 2172 nfds = select(http->fd + 1, http->input_set, NULL, NULL, NULL); in http_wait() 2180 FD_CLR(http->fd, http->input_set); in http_wait()
|
H A D | http.h | 325 fd_set *input_set; /* select() set for httpWait() */ member
|