Lines Matching refs:dir_fd

34 os_stat_impl(PyObject *module, path_t *path, int dir_fd, int follow_symlinks);
43 int dir_fd = DEFAULT_DIR_FD; in os_stat() local
47 path_converter, &path, FSTATAT_DIR_FD_CONVERTER, &dir_fd, &follow_symlinks)) { in os_stat()
50 return_value = os_stat_impl(module, &path, dir_fd, follow_symlinks); in os_stat()
72 os_lstat_impl(PyObject *module, path_t *path, int dir_fd);
81 int dir_fd = DEFAULT_DIR_FD; in os_lstat() local
84 path_converter, &path, FSTATAT_DIR_FD_CONVERTER, &dir_fd)) { in os_lstat()
87 return_value = os_lstat_impl(module, &path, dir_fd); in os_lstat()
132 os_access_impl(PyObject *module, path_t *path, int mode, int dir_fd,
143 int dir_fd = DEFAULT_DIR_FD; in os_access() local
149 …path_converter, &path, &mode, FACCESSAT_DIR_FD_CONVERTER, &dir_fd, &effective_ids, &follow_symlink… in os_access()
152 _return_value = os_access_impl(module, &path, mode, dir_fd, effective_ids, follow_symlinks); in os_access()
330 os_chmod_impl(PyObject *module, path_t *path, int mode, int dir_fd,
341 int dir_fd = DEFAULT_DIR_FD; in os_chmod() local
345 path_converter, &path, &mode, FCHMODAT_DIR_FD_CONVERTER, &dir_fd, &follow_symlinks)) { in os_chmod()
348 return_value = os_chmod_impl(module, &path, mode, dir_fd, follow_symlinks); in os_chmod()
686 int dir_fd, int follow_symlinks);
697 int dir_fd = DEFAULT_DIR_FD; in os_chown() local
701 …id_Converter, &uid, _Py_Gid_Converter, &gid, FCHOWNAT_DIR_FD_CONVERTER, &dir_fd, &follow_symlinks)… in os_chown()
704 return_value = os_chown_impl(module, &path, uid, gid, dir_fd, follow_symlinks); in os_chown()
1085 os_mkdir_impl(PyObject *module, path_t *path, int mode, int dir_fd);
1095 int dir_fd = DEFAULT_DIR_FD; in os_mkdir() local
1098 path_converter, &path, &mode, MKDIRAT_DIR_FD_CONVERTER, &dir_fd)) { in os_mkdir()
1101 return_value = os_mkdir_impl(module, &path, mode, dir_fd); in os_mkdir()
1317 os_rmdir_impl(PyObject *module, path_t *path, int dir_fd);
1326 int dir_fd = DEFAULT_DIR_FD; in os_rmdir() local
1329 path_converter, &path, UNLINKAT_DIR_FD_CONVERTER, &dir_fd)) { in os_rmdir()
1332 return_value = os_rmdir_impl(module, &path, dir_fd); in os_rmdir()
1464 os_unlink_impl(PyObject *module, path_t *path, int dir_fd);
1473 int dir_fd = DEFAULT_DIR_FD; in os_unlink() local
1476 path_converter, &path, UNLINKAT_DIR_FD_CONVERTER, &dir_fd)) { in os_unlink()
1479 return_value = os_unlink_impl(module, &path, dir_fd); in os_unlink()
1503 os_remove_impl(PyObject *module, path_t *path, int dir_fd);
1512 int dir_fd = DEFAULT_DIR_FD; in os_remove() local
1515 path_converter, &path, UNLINKAT_DIR_FD_CONVERTER, &dir_fd)) { in os_remove()
1518 return_value = os_remove_impl(module, &path, dir_fd); in os_remove()
1586 int dir_fd, int follow_symlinks);
1597 int dir_fd = DEFAULT_DIR_FD; in os_utime() local
1601 … path_converter, &path, &times, &ns, FUTIMENSAT_DIR_FD_CONVERTER, &dir_fd, &follow_symlinks)) { in os_utime()
1604 return_value = os_utime_impl(module, &path, times, ns, dir_fd, follow_symlinks); in os_utime()
3143 int target_is_directory, int dir_fd);
3154 int dir_fd = DEFAULT_DIR_FD; in os_symlink() local
3157 …onverter, &src, path_converter, &dst, &target_is_directory, SYMLINKAT_DIR_FD_CONVERTER, &dir_fd)) { in os_symlink()
3160 return_value = os_symlink_impl(module, &src, &dst, target_is_directory, dir_fd); in os_symlink()
3364 os_open_impl(PyObject *module, path_t *path, int flags, int mode, int dir_fd);
3375 int dir_fd = DEFAULT_DIR_FD; in os_open() local
3379 path_converter, &path, &flags, &mode, OPENAT_DIR_FD_CONVERTER, &dir_fd)) { in os_open()
3382 _return_value = os_open_impl(module, &path, flags, mode, dir_fd); in os_open()
4099 os_mkfifo_impl(PyObject *module, path_t *path, int mode, int dir_fd);
4109 int dir_fd = DEFAULT_DIR_FD; in os_mkfifo() local
4112 path_converter, &path, &mode, MKFIFOAT_DIR_FD_CONVERTER, &dir_fd)) { in os_mkfifo()
4115 return_value = os_mkfifo_impl(module, &path, mode, dir_fd); in os_mkfifo()
4151 int dir_fd);
4162 int dir_fd = DEFAULT_DIR_FD; in os_mknod() local
4165 … path_converter, &path, &mode, _Py_Dev_Converter, &device, MKNODAT_DIR_FD_CONVERTER, &dir_fd)) { in os_mknod()
4168 return_value = os_mknod_impl(module, &path, mode, device, dir_fd); in os_mknod()