Lines Matching refs:offset_dst
5711 " offset_dst=None)\n"
5724 " offset_dst\n"
5728 "respectively for offset_dst.");
5735 PyObject *offset_src, PyObject *offset_dst);
5741 static const char * const _keywords[] = {"src", "dst", "count", "offset_src", "offset_dst", NULL};
5749 PyObject *offset_dst = Py_None;
5784 offset_dst = args[4];
5786 return_value = os_copy_file_range_impl(module, src, dst, count, offset_src, offset_dst);
5797 "splice($module, /, src, dst, count, offset_src=None, offset_dst=None,\n"
5811 " offset_dst\n"
5817 "respectively for offset_dst. The offset associated to the file\n"
5825 PyObject *offset_src, PyObject *offset_dst,
5832 static const char * const _keywords[] = {"src", "dst", "count", "offset_src", "offset_dst", "flags", NULL};
5840 PyObject *offset_dst = Py_None;
5877 offset_dst = args[4];
5886 return_value = os_splice_impl(module, src, dst, count, offset_src, offset_dst, flags);