Home
last modified time | relevance | path

Searched refs:lchmod (Results 1 – 25 of 27) sorted by relevance

12

/external/python/cpython2/Misc/NEWS.d/next/Library/
D2018-09-12-14-46-51.bpo-34652.Rt1m1b.rst1 Ensure :func:`os.lchmod` is never defined on Linux.
/external/python/parse_type/tasks/_vendor/
Dpathlib.py366 lchmod = _wrap_strfunc(os.lchmod) variable in _NormalAccessor
368 def lchmod(self, pathobj, mode): member in _NormalAccessor
1119 def lchmod(self, mode): member in Path
1124 self._accessor.lchmod(self, mode)
/external/python/cpython3/Lib/
Dpathlib.py413 lchmod = os.lchmod variable in _NormalAccessor
415 def lchmod(self, pathobj, mode): member in _NormalAccessor
1330 def lchmod(self, mode): member in Path
1335 self._accessor.lchmod(self, mode)
Dshutil.py301 stat_func, chmod_func = os.lstat, os.lchmod
/external/python/pyfakefs/pyfakefs/
Dfake_pathlib.py109 lchmod = _wrap_strfunc(lambda fs, path, mode: FakeFilesystem.chmod( variable in _FakeAccessor
112 def lchmod(self, pathobj, mode): member in _FakeAccessor
Dfake_filesystem.py4190 def lchmod(self, path, mode): member in FakeOsModule
/external/python/cpython3/Lib/test/
Dtest_shutil.py499 os.lchmod(src_link, stat.S_IRWXU | stat.S_IRWXO)
834 os.lchmod(src_link, stat.S_IRWXO|stat.S_IRWXG)
836 os.lchmod(dst_link, stat.S_IRWXO)
842 os.lchmod(dst_link, stat.S_IRWXO)
846 os.lchmod(dst_link, stat.S_IRWXO)
882 os.lchmod(src_link, stat.S_IRWXO)
1054 os.lchmod(src_link, stat.S_IRWXU | stat.S_IRWXO)
1096 os.lchmod(src_link, stat.S_IRWXU | stat.S_IRWXO)
Dtest_os.py3599 funcs.append((self.filenames, os.lchmod, 0o777))
/external/python/pyfakefs/pyfakefs/tests/
Dfake_pathlib_test.py385 self.path(self.file_link_path).lchmod, 0o444)
387 self.path(self.file_link_path).lchmod(0o444)
Dfake_os_test.py1955 self.os.lchmod(link_path, 0o6543)
/external/python/cpython3/Doc/library/
Dpathlib.rst898 .. method:: Path.lchmod(mode)
Dos.rst1785 .. function:: lchmod(path, mode)
1792 .. audit-event:: os.chmod path,mode,dir_fd os.lchmod
/external/python/cpython2/
Dconfigure.ac3137 # Force lchmod off for Linux. Linux disallows changing the mode of symbolic
3138 # links. Some libc implementations have a stub lchmod implementation that always
3141 AC_CHECK_FUNC(lchmod)
Dconfigure10635 ac_fn_c_check_func "$LINENO" "lchmod" "ac_cv_func_lchmod"
/external/python/cpython3/
Dpyconfig.h.in580 /* Define to 1 if you have the `lchmod' function. */
Dconfigure.ac3707 # Force lchmod off for Linux. Linux disallows changing the mode of symbolic
3708 # links. Some libc implementations have a stub lchmod implementation that always
3711 AC_CHECK_FUNCS(lchmod)
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_syscalls_netbsd.inc2021 PRE_SYSCALL(lchmod)(void *path_, long long mode_) {
2027 POST_SYSCALL(lchmod)(long long res, void *path_, long long mode_) {
/external/python/cpython3/Modules/
Dposixmodule.c3196 result = lchmod(path->narrow, mode); in os_chmod_impl()
3319 res = lchmod(path->narrow, mode); in os_lchmod_impl()
/external/compiler-rt/lib/dfsan/
Dlibc_ubuntu1404_abilist.txt2166 fun:lchmod=uninstrumented
/external/llvm-project/compiler-rt/lib/dfsan/
Dlibc_ubuntu1404_abilist.txt2166 fun:lchmod=uninstrumented
/external/python/cpython2/Doc/library/
Dos.rst1119 .. function:: lchmod(path, mode)
/external/python/cpython2/Modules/
Dposixmodule.c1959 res = lchmod(path, i); in posix_lchmod()
/external/python/cpython2/Doc/whatsnew/
D2.6.rst2162 and ownership of an opened file, and ``lchmod(path, mode)`` changes
/external/python/cpython3/Doc/whatsnew/
D2.6.rst2166 and ownership of an opened file, and ``lchmod(path, mode)`` changes
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a1.rst3174 Ensure :func:`os.lchmod` is never defined on Linux.

12