HomeSort by relevance Sort by last modified time
    Searched refs:tout (Results 1 - 25 of 37) sorted by null

1 2

  /external/scapy/scapy/contrib/
ppi_cace.py 60 tout = scale * float(val)
61 return tout
69 tout = int((scale * val) + 0.5)
70 return tout
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_select.py 34 for tout in (0, 1, 2, 4, 8, 16) + (None,)*10:
36 print 'timeout =', tout
37 rfd, wfd, xfd = select.select([p], [], [], tout)
test_poll.py 122 for tout in (0, 1000, 2000, 4000, 8000, 16000) + (-1,)*10:
123 fdlist = pollster.poll(tout)
  /external/python/cpython2/Lib/test/
test_select.py 34 for tout in (0, 1, 2, 4, 8, 16) + (None,)*10:
36 print 'timeout =', tout
37 rfd, wfd, xfd = select.select([p], [], [], tout)
test_poll.py 130 for tout in (0, 1000, 2000, 4000, 8000, 16000) + (-1,)*10:
131 fdlist = pollster.poll(tout)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_select.py 34 for tout in (0, 1, 2, 4, 8, 16) + (None,)*10:
36 print 'timeout =', tout
37 rfd, wfd, xfd = select.select([p], [], [], tout)
test_poll.py 123 for tout in (0, 1000, 2000, 4000, 8000, 16000) + (-1,)*10:
124 fdlist = pollster.poll(tout)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_select.py 34 for tout in (0, 1, 2, 4, 8, 16) + (None,)*10:
36 print 'timeout =', tout
37 rfd, wfd, xfd = select.select([p], [], [], tout)
test_poll.py 123 for tout in (0, 1000, 2000, 4000, 8000, 16000) + (-1,)*10:
124 fdlist = pollster.poll(tout)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_select.py 34 for tout in (0, 1, 2, 4, 8, 16) + (None,)*10:
36 print 'timeout =', tout
37 rfd, wfd, xfd = select.select([p], [], [], tout)
test_poll.py 123 for tout in (0, 1000, 2000, 4000, 8000, 16000) + (-1,)*10:
124 fdlist = pollster.poll(tout)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_select.py 34 for tout in (0, 1, 2, 4, 8, 16) + (None,)*10:
36 print 'timeout =', tout
37 rfd, wfd, xfd = select.select([p], [], [], tout)
test_poll.py 123 for tout in (0, 1000, 2000, 4000, 8000, 16000) + (-1,)*10:
124 fdlist = pollster.poll(tout)
  /external/python/cpython3/Lib/test/
test_select.py 50 for tout in (0, 1, 2, 4, 8, 16) + (None,)*10:
52 print('timeout =', tout)
53 rfd, wfd, xfd = select.select([p], [], [], tout)
test_poll.py 133 for tout in (0, 1000, 2000, 4000, 8000, 16000) + (-1,)*10:
134 fdlist = pollster.poll(tout)
  /external/iputils/
clockdiff.c 135 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.tv_usec = 0
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
Synch.py 224 tout = 0.001
233 tout = 0.001
235 time.sleep(tout)
236 tout = tout*2
  /external/python/cpython2/Demo/metaclasses/
Synch.py 224 tout = 0.001
233 tout = 0.001
235 time.sleep(tout)
236 tout = tout*2
  /external/iproute2/misc/
lnstat_util.c 72 struct timeval *tout,
75 if (now->tv_sec > last->tv_sec + tout->tv_sec)
78 if (now->tv_sec == last->tv_sec + tout->tv_sec) {
79 if (now->tv_usec > last->tv_usec + tout->tv_usec)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
selectmodule.c 212 PyObject *tout = Py_None; local
222 &ifdlist, &ofdlist, &efdlist, &tout))
225 if (tout == Py_None)
227 else if (!PyNumber_Check(tout)) {
233 timeout = PyFloat_AsDouble(tout);
496 PyObject *result_list = NULL, *tout = NULL; local
500 if (!PyArg_UnpackTuple(args, "poll", 0, 1, &tout)) {
505 if (tout == NULL || tout == Py_None)
507 else if (!PyNumber_Check(tout)) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
selectmodule.c 212 PyObject *tout = Py_None; local
222 &ifdlist, &ofdlist, &efdlist, &tout))
225 if (tout == Py_None)
227 else if (!PyNumber_Check(tout)) {
233 timeout = PyFloat_AsDouble(tout);
518 PyObject *result_list = NULL, *tout = NULL; local
522 if (!PyArg_UnpackTuple(args, "poll", 0, 1, &tout)) {
527 if (tout == NULL || tout == Py_None)
529 else if (!PyNumber_Check(tout)) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
selectmodule.c 212 PyObject *tout = Py_None; local
222 &ifdlist, &ofdlist, &efdlist, &tout))
225 if (tout == Py_None)
227 else if (!PyNumber_Check(tout)) {
233 timeout = PyFloat_AsDouble(tout);
496 PyObject *result_list = NULL, *tout = NULL; local
500 if (!PyArg_UnpackTuple(args, "poll", 0, 1, &tout)) {
505 if (tout == NULL || tout == Py_None)
507 else if (!PyNumber_Check(tout)) {
    [all...]
  /external/python/cpython2/Modules/
selectmodule.c 201 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...]
  /external/python/cpython2/Demo/tkinter/guido/
ManPage.py 64 def avail(fp=fp, tout=0.0, select=select):
65 return select([fp], [], [], tout)[0]
  /system/bt/stack/gap/
gap_ble.cc 311 uint16_t min, max, latency, tout; local
337 STREAM_TO_UINT16(tout, pp);
339 BTM_BleSetPrefConnParams(p_clcb->bda, min, max, latency, tout);

Completed in 883 milliseconds

1 2