Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/clinic/
Dfcntlmodule.c.h168 PyObject *startobj, int whence);
177 PyObject *startobj = NULL; in fcntl_lockf() local
181 conv_descriptor, &fd, &code, &lenobj, &startobj, &whence)) { in fcntl_lockf()
184 return_value = fcntl_lockf_impl(module, fd, code, lenobj, startobj, whence); in fcntl_lockf()
/external/python/cpython2/Modules/
Dfcntlmodule.c313 PyObject *lenobj = NULL, *startobj = NULL; in fcntl_lockf() local
317 &lenobj, &startobj, &whence)) in fcntl_lockf()
345 if (startobj != NULL) { in fcntl_lockf()
347 l.l_start = PyInt_AsLong(startobj); in fcntl_lockf()
349 l.l_start = PyLong_Check(startobj) ? in fcntl_lockf()
350 PyLong_AsLongLong(startobj) : in fcntl_lockf()
351 PyInt_AsLong(startobj); in fcntl_lockf()
D_bsddb.c1849 PyObject *startobj = NULL, *stopobj = NULL; in DB_compact() local
1862 &txnobj, &startobj, &stopobj, &flags, in DB_compact()
1873 if (startobj && make_key_dbt(self, startobj, &start, NULL)) { in DB_compact()
1885 if (startobj) in DB_compact()
/external/python/cpython3/Modules/
Dfcntlmodule.c369 PyObject *startobj, int whence) in fcntl_lockf_impl() argument
395 if (startobj != NULL) { in fcntl_lockf_impl()
397 l.l_start = PyLong_AsLong(startobj); in fcntl_lockf_impl()
399 l.l_start = PyLong_Check(startobj) ? in fcntl_lockf_impl()
400 PyLong_AsLongLong(startobj) : in fcntl_lockf_impl()
401 PyLong_AsLong(startobj); in fcntl_lockf_impl()