Home
last modified time | relevance | path

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

/third_party/python/Modules/
Dresource.c139 py2rlimit(PyObject *limits, struct rlimit *rl_out) in py2rlimit() argument
155 rl_out->rlim_cur = PyLong_AsLong(curobj); in py2rlimit()
156 if (rl_out->rlim_cur == (rlim_t)-1 && PyErr_Occurred()) in py2rlimit()
158 rl_out->rlim_max = PyLong_AsLong(maxobj); in py2rlimit()
159 if (rl_out->rlim_max == (rlim_t)-1 && PyErr_Occurred()) in py2rlimit()
163 rl_out->rlim_cur = PyLong_AsLongLong(curobj); in py2rlimit()
164 if (rl_out->rlim_cur == (rlim_t)-1 && PyErr_Occurred()) in py2rlimit()
166 rl_out->rlim_max = PyLong_AsLongLong(maxobj); in py2rlimit()
167 if (rl_out->rlim_max == (rlim_t)-1 && PyErr_Occurred()) in py2rlimit()
172 rl_out->rlim_cur = rl_out->rlim_cur & RLIM_INFINITY; in py2rlimit()
[all …]