Home
last modified time | relevance | path

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

/external/libcups/cups/
Dsidechannel.c114 fd_set input_set; /* Input set for select() */ in cupsSideChannelRead() local
144 FD_ZERO(&input_set); in cupsSideChannelRead()
145 FD_SET(CUPS_SC_FD, &input_set); in cupsSideChannelRead()
150 while ((nfds = select(CUPS_SC_FD + 1, &input_set, NULL, NULL, in cupsSideChannelRead()
Dhttp-addrlist.c80 fd_set input_set, /* select() input set */ in httpAddrConnect2() local
287 FD_ZERO(&input_set); in httpAddrConnect2()
289 FD_SET(fds[i], &input_set); in httpAddrConnect2()
290 output_set = input_set; in httpAddrConnect2()
291 error_set = input_set; in httpAddrConnect2()
296 result = select(max_fd + 1, &input_set, &output_set, &error_set, &timeout); in httpAddrConnect2()
317 if (FD_ISSET(fds[i], &input_set) && !FD_ISSET(fds[i], &error_set)) in httpAddrConnect2()
Dsnmp.c385 fd_set input_set; /* select() input set */ in _cupsSNMPRead() local
390 FD_ZERO(&input_set); in _cupsSNMPRead()
391 FD_SET(fd, &input_set); in _cupsSNMPRead()
396 ready = select(fd + 1, &input_set, NULL, NULL, &stimeout); in _cupsSNMPRead()
Dhttp-support.c1780 fd_set input_set; /* Input set for select() */ in _httpResolveURI() local
1896 FD_ZERO(&input_set); in _httpResolveURI()
1897 FD_SET(DNSServiceRefSockFD(ref), &input_set); in _httpResolveURI()
1906 fds = select(DNSServiceRefSockFD(ref)+1, &input_set, NULL, NULL, in _httpResolveURI()
Dhttp-private.h307 fd_set *input_set; /* select() set for httpWait() (deprecated) */ member
Dhttp.c3052 fd_set input_set; /* select() input set */ in _httpWait()
3095 FD_ZERO(&input_set); in _httpWait()
3096 FD_SET(http->fd, &input_set); in _httpWait()
3105 nfds = select(http->fd + 1, &input_set, NULL, NULL, &timeout); in _httpWait()
3108 nfds = select(http->fd + 1, &input_set, NULL, NULL, NULL); in _httpWait()
/external/tensorflow/tensorflow/python/compiler/tensorrt/test/
Dtf_trt_integration_test_base.py396 input_set = expected_input_map[target_node_name]
407 input_set.add("^" + old_to_new_node_map[inp_name])
409 input_set.add(prefix + old_to_new_node_map[inp_name])
415 input_set = actual_input_map[name_str]
418 input_set.add(prefix + node_name)
/external/protobuf/src/google/protobuf/compiler/js/
Djs_generator.cc1309 set<const FileDescriptor*> input_set; in GenerateJspbFileOrder() local
1312 input_set.insert(input[i]); in GenerateJspbFileOrder()
1317 std::remove_if(ordered->begin(), ordered->end(), NotInSet(input_set)), in GenerateJspbFileOrder()