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

/illumos-gate/usr/src/lib/print/libhttp-core/common/
H A Dhttp.c330 if (http->input_set)
331 free(http->input_set);
2133 if (!http->input_set)
2142 http->input_set = calloc(1, sizeof(fd_set));
2155 http->input_set = calloc(1, set_size);
2158 if (!http->input_set)
2164 FD_SET(http->fd, http->input_set);
2171 nfds = select(http->fd + 1, http->input_set, NULL, NULL, &timeout);
2174 nfds = select(http->fd + 1, http->input_set, NULL, NULL, NULL);
2182 FD_CLR(http->fd, http->input_set);
[all...]
H A Dhttp.h327 fd_set *input_set; /* select() set for httpWait() */ member in struct:__anon4296

Completed in 61 milliseconds