Searched refs:startobj (Results 1 - 2 of 2) sorted by relevance
/third_party/python/Modules/clinic/ |
H A D | fcntlmodule.c.h | 203 PyObject *startobj, int whence); 212 PyObject *startobj = NULL; in fcntl_lockf() local 232 startobj = args[3]; in fcntl_lockf() 241 return_value = fcntl_lockf_impl(module, fd, code, lenobj, startobj, whence); in fcntl_lockf()
|
/third_party/python/Modules/ |
H A D | fcntlmodule.c | 340 start as startobj: object(c_default='NULL') = 0 370 PyObject *startobj, int whence) in fcntl_lockf_impl() 377 startobj ? startobj : Py_None, whence) < 0) { in fcntl_lockf_impl() 401 if (startobj != NULL) { in fcntl_lockf_impl() 403 l.l_start = PyLong_AsLong(startobj); in fcntl_lockf_impl() 405 l.l_start = PyLong_Check(startobj) ? in fcntl_lockf_impl() 406 PyLong_AsLongLong(startobj) : in fcntl_lockf_impl() 407 PyLong_AsLong(startobj); in fcntl_lockf_impl() 369 fcntl_lockf_impl(PyObject *module, int fd, int code, PyObject *lenobj, PyObject *startobj, int whence) fcntl_lockf_impl() argument
|
Completed in 3 milliseconds