Lines Matching refs:follow_symlinks
34 os_stat_impl(PyObject *module, path_t *path, int dir_fd, int follow_symlinks);
46 int follow_symlinks = 1; in os_stat() local
66 follow_symlinks = PyObject_IsTrue(args[2]); in os_stat()
67 if (follow_symlinks < 0) { in os_stat()
71 return_value = os_stat_impl(module, &path, dir_fd, follow_symlinks); in os_stat()
166 int effective_ids, int follow_symlinks);
180 int follow_symlinks = 1; in os_access() local
219 follow_symlinks = PyObject_IsTrue(args[4]); in os_access()
220 if (follow_symlinks < 0) { in os_access()
224 _return_value = os_access_impl(module, &path, mode, dir_fd, effective_ids, follow_symlinks); in os_access()
412 int follow_symlinks);
425 int follow_symlinks = 1; in os_chmod() local
454 follow_symlinks = PyObject_IsTrue(args[3]); in os_chmod()
455 if (follow_symlinks < 0) { in os_chmod()
459 return_value = os_chmod_impl(module, &path, mode, dir_fd, follow_symlinks); in os_chmod()
597 int follow_symlinks);
609 int follow_symlinks = 1; in os_chflags() local
626 follow_symlinks = PyObject_IsTrue(args[2]); in os_chflags()
627 if (follow_symlinks < 0) { in os_chflags()
631 return_value = os_chflags_impl(module, &path, flags, follow_symlinks); in os_chflags()
868 int dir_fd, int follow_symlinks);
882 int follow_symlinks = 1; in os_chown() local
908 follow_symlinks = PyObject_IsTrue(args[4]); in os_chown()
909 if (follow_symlinks < 0) { in os_chown()
913 return_value = os_chown_impl(module, &path, uid, gid, dir_fd, follow_symlinks); in os_chown()
1090 int dst_dir_fd, int follow_symlinks);
1104 int follow_symlinks = 1; in os_link() local
1135 follow_symlinks = PyObject_IsTrue(args[4]); in os_link()
1136 if (follow_symlinks < 0) { in os_link()
1140 return_value = os_link_impl(module, &src, &dst, src_dir_fd, dst_dir_fd, follow_symlinks); in os_link()
2007 int dir_fd, int follow_symlinks);
2021 int follow_symlinks = 1; in os_utime() local
2057 follow_symlinks = PyObject_IsTrue(args[4]); in os_utime()
2058 if (follow_symlinks < 0) { in os_utime()
2062 return_value = os_utime_impl(module, &path, times, ns, dir_fd, follow_symlinks); in os_utime()
7690 int follow_symlinks);
7702 int follow_symlinks = 1; in os_getxattr() local
7717 follow_symlinks = PyObject_IsTrue(args[2]); in os_getxattr()
7718 if (follow_symlinks < 0) { in os_getxattr()
7722 return_value = os_getxattr_impl(module, &path, &attribute, follow_symlinks); in os_getxattr()
7754 Py_buffer *value, int flags, int follow_symlinks);
7768 int follow_symlinks = 1; in os_setxattr() local
7808 follow_symlinks = PyObject_IsTrue(args[4]); in os_setxattr()
7809 if (follow_symlinks < 0) { in os_setxattr()
7813 return_value = os_setxattr_impl(module, &path, &attribute, &value, flags, follow_symlinks); in os_setxattr()
7848 int follow_symlinks);
7860 int follow_symlinks = 1; in os_removexattr() local
7875 follow_symlinks = PyObject_IsTrue(args[2]); in os_removexattr()
7876 if (follow_symlinks < 0) { in os_removexattr()
7880 return_value = os_removexattr_impl(module, &path, &attribute, follow_symlinks); in os_removexattr()
7911 os_listxattr_impl(PyObject *module, path_t *path, int follow_symlinks);
7922 int follow_symlinks = 1; in os_listxattr() local
7943 follow_symlinks = PyObject_IsTrue(args[1]); in os_listxattr()
7944 if (follow_symlinks < 0) { in os_listxattr()
7948 return_value = os_listxattr_impl(module, &path, follow_symlinks); in os_listxattr()
8429 int follow_symlinks);
8437 int follow_symlinks = 1; in os_DirEntry_stat() local
8440 &follow_symlinks)) { in os_DirEntry_stat()
8443 return_value = os_DirEntry_stat_impl(self, defining_class, follow_symlinks); in os_DirEntry_stat()
8460 int follow_symlinks);
8468 int follow_symlinks = 1; in os_DirEntry_is_dir() local
8472 &follow_symlinks)) { in os_DirEntry_is_dir()
8475 _return_value = os_DirEntry_is_dir_impl(self, defining_class, follow_symlinks); in os_DirEntry_is_dir()
8496 int follow_symlinks);
8504 int follow_symlinks = 1; in os_DirEntry_is_file() local
8508 &follow_symlinks)) { in os_DirEntry_is_file()
8511 _return_value = os_DirEntry_is_file_impl(self, defining_class, follow_symlinks); in os_DirEntry_is_file()