Lines Matching defs:args

304                  PyObject *args)
310 if (!PyArg_ParseTuple(args, "|O&:read", _Py_convert_optional_to_ssize_t, &num_bytes))
325 PyObject *args,
333 if (!PyArg_ParseTuple(args, reverse ? "y*|nn:rfind" : "y*|nn:find",
371 PyObject *args)
373 return mmap_gfind(self, args, 0);
378 PyObject *args)
380 return mmap_gfind(self, args, 1);
411 PyObject *args)
416 if (!PyArg_ParseTuple(args, "y*:write", &data))
439 PyObject *args)
444 if (!PyArg_ParseTuple(args, "b:write_byte", &value))
513 PyObject *args)
517 if (!PyArg_ParseTuple(args, "n:resize", &new_size) ||
667 mmap_flush_method(mmap_object *self, PyObject *args)
672 if (!PyArg_ParseTuple(args, "|nn:flush", &offset, &size))
702 mmap_seek_method(mmap_object *self, PyObject *args)
707 if (!PyArg_ParseTuple(args, "n|i:seek", &dist, &how))
741 mmap_move_method(mmap_object *self, PyObject *args)
745 if (!PyArg_ParseTuple(args, "nnn:move", &dest, &src, &cnt) ||
778 mmap__enter__method(mmap_object *self, PyObject *args)
787 mmap__exit__method(PyObject *self, PyObject *args)
852 mmap_madvise_method(mmap_object *self, PyObject *args)
860 if (!PyArg_ParseTuple(args, "i|nn:madvise", &option, &start, &length)) {
1144 new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict);
1214 new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict)
1228 if (!PyArg_ParseTupleAndKeywords(args, kwdict, "in|iii" _Py_PARSE_OFF_T, keywords,
1387 new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict)
1406 if (!PyArg_ParseTupleAndKeywords(args, kwdict, "in|ziL", keywords,