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

/external/libcups/cups/
H A Dsidechannel.c115 struct timeval stimeout; /* Timeout value for select() */ local
147 stimeout.tv_sec = (int)timeout;
148 stimeout.tv_usec = (int)(timeout * 1000000) % 1000000;
151 timeout < 0.0 ? NULL : &stimeout)) < 0 &&
538 struct timeval stimeout; /* Timeout value for select() */ local
577 stimeout.tv_sec = (int)timeout;
578 stimeout.tv_usec = (int)(timeout * 1000000) % 1000000;
580 if (select(CUPS_SC_FD + 1, NULL, &output_set, NULL, &stimeout) < 1)
H A Dsnmp.c386 struct timeval stimeout; /* select() timeout */ local
393 stimeout.tv_sec = (int)timeout;
394 stimeout.tv_usec = (int)((timeout - stimeout.tv_sec) * 1000000);
396 ready = select(fd + 1, &input_set, NULL, NULL, &stimeout);
H A Dhttp-support.c1634 struct timeval stimeout; /* Timeout value for select() */ local
1753 stimeout.tv_sec = (long)timeout;
1755 stimeout.tv_sec = timeout;
1757 stimeout.tv_usec = 0;
1760 &stimeout);

Completed in 120 milliseconds