Searched defs:tout (Results 1 - 4 of 4) sorted by relevance

/external/iproute2/misc/
H A Dlnstat_util.c71 struct timeval *tout,
74 if (now->tv_sec > last->tv_sec + tout->tv_sec)
77 if (now->tv_sec == last->tv_sec + tout->tv_sec) {
78 if (now->tv_usec > last->tv_usec + tout->tv_usec)
70 time_after(struct timeval *last, struct timeval *tout, struct timeval *now) argument
/external/iputils/
H A Dclockdiff.c135 struct timeval tv1, tout; local
150 tout.tv_sec = tout.tv_usec = 0;
152 if (select(FD_SETSIZE, &ready, (fd_set *)0, (fd_set *)0, &tout)) {
211 tout.tv_sec = tmo/1000;
212 tout.tv_usec = (tmo - (tmo/1000)*1000)*1000;
216 (fd_set *)0, &tout)) <= 0)
312 struct timeval tv1, tout; local
326 tout.tv_sec = tout
[all...]
/external/ppp/pppd/
H A Dtty.c991 struct timeval levelt, tout, *top; local
1096 tout.tv_sec = 0;
1097 tout.tv_usec = 10000;
1102 top = &tout;
1109 top = &tout;
/external/python/cpython2/Modules/
H A Dselectmodule.c201 PyObject *tout = Py_None; local
211 &ifdlist, &ofdlist, &efdlist, &tout))
214 if (tout == Py_None)
216 else if (!PyNumber_Check(tout)) {
222 timeout = PyFloat_AsDouble(tout);
507 PyObject *result_list = NULL, *tout = NULL; local
511 if (!PyArg_UnpackTuple(args, "poll", 0, 1, &tout)) {
516 if (tout == NULL || tout == Py_None)
518 else if (!PyNumber_Check(tout)) {
[all...]

Completed in 351 milliseconds