Home
last modified time | relevance | path

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

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