Searched refs:wlist (Results 1 - 4 of 4) sorted by relevance
/third_party/python/Modules/clinic/ |
H A D | selectmodule.c.h | 6 "select($module, rlist, wlist, xlist, timeout=None, /)\n" 13 "wlist -- wait until ready for writing\n" 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()
|
/third_party/curl/scripts/ |
H A D | checksrc.pl | 39 my $wlist=""; 214 $wlist .= " $1 "; 269 if("$wlist" !~ / $file /) {
|
/third_party/python/Modules/ |
H A D | selectmodule.c | 226 wlist: object 235 wlist -- wait until ready for writing 256 select_select_impl(PyObject *module, PyObject *rlist, PyObject *wlist, in select_select_impl() argument 322 if ((omax = seq2set(wlist, &ofdset, wfd2obj)) < 0) in select_select_impl() 383 wlist = set2list(&ofdset, wfd2obj); in select_select_impl() 388 ret = PyTuple_Pack(3, rlist, wlist, xlist); in select_select_impl() 391 Py_XDECREF(wlist); in select_select_impl()
|
/third_party/python/Lib/tkinter/ |
H A D | __init__.py | 2043 def wm_colormapwindows(self, *wlist): 2047 if len(wlist) > 1: 2048 wlist = (wlist,) # Tk needs a list of windows here 2049 args = ('wm', 'colormapwindows', self._w) + wlist 2050 if wlist:
|
Completed in 13 milliseconds