Home | History | Annotate | Download | only in Modules

Lines Matching refs:src_dir_fd

3309     src_dir_fd : dir_fd = None
3315 If either src_dir_fd or dst_dir_fd is not None, it should be a file
3321 src_dir_fd, dst_dir_fd, and follow_symlinks may not be implemented on your
3327 os_link_impl(PyObject *module, path_t *src, path_t *dst, int src_dir_fd,
3338 if ((src_dir_fd != DEFAULT_DIR_FD) || (dst_dir_fd != DEFAULT_DIR_FD)) {
3339 argument_unavailable_error("link", "src_dir_fd and dst_dir_fd");
3362 if ((src_dir_fd != DEFAULT_DIR_FD) ||
3365 result = linkat(src_dir_fd, src->narrow,
3959 internal_rename(path_t *src, path_t *dst, int src_dir_fd, int dst_dir_fd, int is_replace)
3971 dir_fd_specified = (src_dir_fd != DEFAULT_DIR_FD) ||
3975 argument_unavailable_error(function_name, "src_dir_fd and dst_dir_fd");
3998 result = renameat(src_dir_fd, src->narrow, dst_dir_fd, dst->narrow);
4017 src_dir_fd : dir_fd = None
4022 If either src_dir_fd or dst_dir_fd is not None, it should be a file
4025 src_dir_fd and dst_dir_fd, may not be implemented on your platform.
4030 os_rename_impl(PyObject *module, path_t *src, path_t *dst, int src_dir_fd,
4034 return internal_rename(src, dst, src_dir_fd, dst_dir_fd, 0);
4043 If either src_dir_fd or dst_dir_fd is not None, it should be a file
4046 src_dir_fd and dst_dir_fd, may not be implemented on your platform.
4051 os_replace_impl(PyObject *module, path_t *src, path_t *dst, int src_dir_fd,
4055 return internal_rename(src, dst, src_dir_fd, dst_dir_fd, 1);