Searched refs:output_set (Results 1 – 3 of 3) sorted by relevance
/external/libcups/cups/ |
D | sidechannel.c | 537 fd_set output_set; /* Output set for select() */ in cupsSideChannelWrite() local 567 FD_ZERO(&output_set); in cupsSideChannelWrite() 568 FD_SET(CUPS_SC_FD, &output_set); in cupsSideChannelWrite() 572 if (select(CUPS_SC_FD + 1, NULL, &output_set, NULL, NULL) < 1) in cupsSideChannelWrite() 580 if (select(CUPS_SC_FD + 1, NULL, &output_set, NULL, &stimeout) < 1) in cupsSideChannelWrite()
|
D | http-addrlist.c | 81 output_set, /* select() output set */ in httpAddrConnect2() local 290 output_set = input_set; in httpAddrConnect2() 296 result = select(max_fd + 1, &input_set, &output_set, &error_set, &timeout); in httpAddrConnect2()
|
D | http.c | 4727 fd_set output_set; /* Output ready for write? */ in http_write() 4745 FD_ZERO(&output_set); in http_write() 4746 FD_SET(http->fd, &output_set); in http_write() 4751 nfds = select(http->fd + 1, NULL, &output_set, NULL, &timeout); in http_write()
|