Home
last modified time | relevance | path

Searched refs:wlist (Results 1 – 13 of 13) sorted by relevance

/external/toolchain-utils/debug_info_test/
Dallowlist.py57 wlist = {}
64 wlist[key] = prepare_allowlist(patterns)
65 return wlist
/external/autotest/client/deps/lansim/src/py/
Dsimulator.py236 wlist = tuple()
238 wlist = iface_fd,
241 rlist, wlist, xlist = select.select(rlist, wlist, xlist, timeout)
253 if iface_fd in wlist:
Dsimulator_unittest.py45 rlist, wlist, xlist = select.select([self._sock], [], [], 1.)
/external/llvm-project/lldb/third_party/Python/module/pexpect-4.6/pexpect/
Dfdpexpect.py138 wlist = []
143 rlist, wlist, xlist = select_ignore_interrupts(
144 rlist, wlist, xlist, timeout
/external/skqp/infra/bots/recipes/
Dcompile.py77 wlist = checkout_root.join(
79 api.file.copy('copy whitelist', wlist, dst)
/external/curl/lib/
Dchecksrc.pl37 my $wlist="";
201 $wlist .= " $1 ";
248 if("$wlist" !~ / $file /) {
/external/python/cpython3/Modules/clinic/
Dselectmodule.c.h36 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/
Dselectmodule.c265 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/
Dselect.rst61 .. function:: select(rlist, wlist, xlist[, timeout])
69 * *wlist*: wait until ready for writing
/external/python/cpython2/Lib/
Dsubprocess.py1227 rlist, wlist, xlist = select.select(read_set, write_set, [])
1233 if self.stdin in wlist:
/external/python/cpython2/Lib/lib-tk/
DTkinter.py1638 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__.py1979 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/
Dselect.rst117 .. function:: select(rlist, wlist, xlist[, timeout])
125 * *wlist*: wait until ready for writing