Home
last modified time | relevance | path

Searched refs:stimeout (Results 1 – 3 of 3) sorted by relevance

/external/libcups/cups/
Dsidechannel.c115 struct timeval stimeout; /* Timeout value for select() */ in cupsSideChannelRead() local
147 stimeout.tv_sec = (int)timeout; in cupsSideChannelRead()
148 stimeout.tv_usec = (int)(timeout * 1000000) % 1000000; in cupsSideChannelRead()
151 timeout < 0.0 ? NULL : &stimeout)) < 0 && in cupsSideChannelRead()
538 struct timeval stimeout; /* Timeout value for select() */ in cupsSideChannelWrite() local
577 stimeout.tv_sec = (int)timeout; in cupsSideChannelWrite()
578 stimeout.tv_usec = (int)(timeout * 1000000) % 1000000; in cupsSideChannelWrite()
580 if (select(CUPS_SC_FD + 1, NULL, &output_set, NULL, &stimeout) < 1) in cupsSideChannelWrite()
Dsnmp.c386 struct timeval stimeout; /* select() timeout */ in _cupsSNMPRead() local
393 stimeout.tv_sec = (int)timeout; in _cupsSNMPRead()
394 stimeout.tv_usec = (int)((timeout - stimeout.tv_sec) * 1000000); in _cupsSNMPRead()
396 ready = select(fd + 1, &input_set, NULL, NULL, &stimeout); in _cupsSNMPRead()
Dhttp-support.c1781 struct timeval stimeout; /* Timeout value for select() */ in _httpResolveURI() local
1900 stimeout.tv_sec = (long)timeout; in _httpResolveURI()
1902 stimeout.tv_sec = timeout; in _httpResolveURI()
1904 stimeout.tv_usec = 0; in _httpResolveURI()
1907 &stimeout); in _httpResolveURI()