Home
last modified time | relevance | path

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

/third_party/python/Modules/
Dselectmodule.c251 pylist *rfd2obj, *wfd2obj, *efd2obj; in select_select_impl() local
259 pylist rfd2obj[FD_SETSIZE + 1]; in select_select_impl()
293 rfd2obj = PyMem_NEW(pylist, FD_SETSIZE + 1); in select_select_impl()
296 if (rfd2obj == NULL || wfd2obj == NULL || efd2obj == NULL) { in select_select_impl()
297 if (rfd2obj) PyMem_Free(rfd2obj); in select_select_impl()
307 rfd2obj[0].sentinel = -1; in select_select_impl()
310 if ((imax = seq2set(rlist, &ifdset, rfd2obj)) < 0) in select_select_impl()
366 rlist = set2list(&ifdset, rfd2obj); in select_select_impl()
380 reap_obj(rfd2obj); in select_select_impl()
384 PyMem_Free(rfd2obj); in select_select_impl()