Lines Matching refs:src_dir_fd
834 "link($module, /, src, dst, *, src_dir_fd=None, dst_dir_fd=None,\n"
840 "If either src_dir_fd or dst_dir_fd is not None, it should be a file\n"
846 "src_dir_fd, dst_dir_fd, and follow_symlinks may not be implemented on your\n"
854 os_link_impl(PyObject *module, path_t *src, path_t *dst, int src_dir_fd,
861 static const char * const _keywords[] = {"src", "dst", "src_dir_fd", "dst_dir_fd", "follow_symlinks", NULL};
865 int src_dir_fd = DEFAULT_DIR_FD;
870 path_converter, &src, path_converter, &dst, dir_fd_converter, &src_dir_fd, dir_fd_converter, &dst_dir_fd, &follow_symlinks)) {
873 return_value = os_link_impl(module, &src, &dst, src_dir_fd, dst_dir_fd, follow_symlinks);
1207 "rename($module, /, src, dst, *, src_dir_fd=None, dst_dir_fd=None)\n"
1212 "If either src_dir_fd or dst_dir_fd is not None, it should be a file\n"
1215 "src_dir_fd and dst_dir_fd, may not be implemented on your platform.\n"
1222 os_rename_impl(PyObject *module, path_t *src, path_t *dst, int src_dir_fd,
1229 static const char * const _keywords[] = {"src", "dst", "src_dir_fd", "dst_dir_fd", NULL};
1233 int src_dir_fd = DEFAULT_DIR_FD;
1237 path_converter, &src, path_converter, &dst, dir_fd_converter, &src_dir_fd, dir_fd_converter, &dst_dir_fd)) {
1240 return_value = os_rename_impl(module, &src, &dst, src_dir_fd, dst_dir_fd);
1252 "replace($module, /, src, dst, *, src_dir_fd=None, dst_dir_fd=None)\n"
1257 "If either src_dir_fd or dst_dir_fd is not None, it should be a file\n"
1260 "src_dir_fd and dst_dir_fd, may not be implemented on your platform.\n"
1267 os_replace_impl(PyObject *module, path_t *src, path_t *dst, int src_dir_fd,
1274 static const char * const _keywords[] = {"src", "dst", "src_dir_fd", "dst_dir_fd", NULL};
1278 int src_dir_fd = DEFAULT_DIR_FD;
1282 path_converter, &src, path_converter, &dst, dir_fd_converter, &src_dir_fd, dir_fd_converter, &dst_dir_fd)) {
1285 return_value = os_replace_impl(module, &src, &dst, src_dir_fd, dst_dir_fd);