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

/external/libcups/cups/
H A Dsidechannel.c114 fd_set input_set; /* Input set for select() */ local
144 FD_ZERO(&input_set);
145 FD_SET(CUPS_SC_FD, &input_set);
150 while ((nfds = select(CUPS_SC_FD + 1, &input_set, NULL, NULL,
H A Dhttp-addrlist.c80 fd_set input_set, /* select() input set */ local
285 FD_ZERO(&input_set);
287 FD_SET(fds[i], &input_set);
288 output_set = input_set;
289 error_set = input_set;
294 result = select(max_fd + 1, &input_set, &output_set, &error_set, &timeout);
315 if (FD_ISSET(fds[i], &input_set) && !FD_ISSET(fds[i], &error_set))
H A Dhttp-private.h308 fd_set *input_set; /* select() set for httpWait() (deprecated) */ member in struct:_http_s
H A Dsnmp.c385 fd_set input_set; /* select() input set */ local
390 FD_ZERO(&input_set);
391 FD_SET(fd, &input_set);
396 ready = select(fd + 1, &input_set, NULL, NULL, &stimeout);
H A Dhttp-support.c1637 fd_set input_set; /* Input set for select() */ local
1753 FD_ZERO(&input_set);
1754 FD_SET(DNSServiceRefSockFD(ref), &input_set); local
1763 fds = select(DNSServiceRefSockFD(ref)+1, &input_set, NULL, NULL,
H A Dhttp.c3131 fd_set input_set; /* select() input set */
3174 FD_ZERO(&input_set);
3175 FD_SET(http->fd, &input_set);
3184 nfds = select(http->fd + 1, &input_set, NULL, NULL, &timeout);
3187 nfds = select(http->fd + 1, &input_set, NULL, NULL, NULL);
/external/protobuf/src/google/protobuf/compiler/js/
H A Djs_generator.cc1309 set<const FileDescriptor*> input_set; local
1312 input_set.insert(input[i]);
1317 std::remove_if(ordered->begin(), ordered->end(), NotInSet(input_set)),

Completed in 223 milliseconds