Home
last modified time | relevance | path

Searched refs:input_set (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/print/libhttp-core/common/
H A Dhttp.c328 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 Dhttp.h325 fd_set *input_set; /* select() set for httpWait() */ member