Lines Matching refs:tout
201 PyObject *tout = Py_None; in select_select() local
211 &ifdlist, &ofdlist, &efdlist, &tout)) in select_select()
214 if (tout == Py_None) in select_select()
216 else if (!PyNumber_Check(tout)) { in select_select()
222 timeout = PyFloat_AsDouble(tout); in select_select()
507 PyObject *result_list = NULL, *tout = NULL; in poll_poll() local
511 if (!PyArg_UnpackTuple(args, "poll", 0, 1, &tout)) { in poll_poll()
516 if (tout == NULL || tout == Py_None) in poll_poll()
518 else if (!PyNumber_Check(tout)) { in poll_poll()
524 tout = PyNumber_Int(tout); in poll_poll()
525 if (!tout) in poll_poll()
527 timeout = _PyInt_AsInt(tout); in poll_poll()
528 Py_DECREF(tout); in poll_poll()