Searched refs:wlist (Results 1 – 13 of 13) sorted by relevance
/external/toolchain-utils/debug_info_test/ |
D | allowlist.py | 57 wlist = {} 64 wlist[key] = prepare_allowlist(patterns) 65 return wlist
|
/external/autotest/client/deps/lansim/src/py/ |
D | simulator.py | 236 wlist = tuple() 238 wlist = iface_fd, 241 rlist, wlist, xlist = select.select(rlist, wlist, xlist, timeout) 253 if iface_fd in wlist:
|
D | simulator_unittest.py | 45 rlist, wlist, xlist = select.select([self._sock], [], [], 1.)
|
/external/llvm-project/lldb/third_party/Python/module/pexpect-4.6/pexpect/ |
D | fdpexpect.py | 138 wlist = [] 143 rlist, wlist, xlist = select_ignore_interrupts( 144 rlist, wlist, xlist, timeout
|
/external/skqp/infra/bots/recipes/ |
D | compile.py | 77 wlist = checkout_root.join( 79 api.file.copy('copy whitelist', wlist, dst)
|
/external/curl/lib/ |
D | checksrc.pl | 37 my $wlist=""; 201 $wlist .= " $1 "; 248 if("$wlist" !~ / $file /) {
|
/external/python/cpython3/Modules/clinic/ |
D | selectmodule.c.h | 36 select_select_impl(PyObject *module, PyObject *rlist, PyObject *wlist, 44 PyObject *wlist; in select_select() local 52 wlist = args[1]; in select_select() 59 return_value = select_select_impl(module, rlist, wlist, xlist, timeout_obj); in select_select()
|
/external/python/cpython3/Modules/ |
D | selectmodule.c | 265 select_select_impl(PyObject *module, PyObject *rlist, PyObject *wlist, in select_select_impl() argument 331 if ((omax = seq2set(wlist, &ofdset, wfd2obj)) < 0) in select_select_impl() 386 wlist = set2list(&ofdset, wfd2obj); in select_select_impl() 391 ret = PyTuple_Pack(3, rlist, wlist, xlist); in select_select_impl() 394 Py_XDECREF(wlist); in select_select_impl()
|
/external/python/cpython2/Doc/library/ |
D | select.rst | 61 .. function:: select(rlist, wlist, xlist[, timeout]) 69 * *wlist*: wait until ready for writing
|
/external/python/cpython2/Lib/ |
D | subprocess.py | 1227 rlist, wlist, xlist = select.select(read_set, write_set, []) 1233 if self.stdin in wlist:
|
/external/python/cpython2/Lib/lib-tk/ |
D | Tkinter.py | 1638 def wm_colormapwindows(self, *wlist): argument 1642 if len(wlist) > 1: 1643 wlist = (wlist,) # Tk needs a list of windows here 1644 args = ('wm', 'colormapwindows', self._w) + wlist 1645 if wlist:
|
/external/python/cpython3/Lib/tkinter/ |
D | __init__.py | 1979 def wm_colormapwindows(self, *wlist): argument 1983 if len(wlist) > 1: 1984 wlist = (wlist,) # Tk needs a list of windows here 1985 args = ('wm', 'colormapwindows', self._w) + wlist 1986 if wlist:
|
/external/python/cpython3/Doc/library/ |
D | select.rst | 117 .. function:: select(rlist, wlist, xlist[, timeout]) 125 * *wlist*: wait until ready for writing
|