/external/python/cpython2/Misc/NEWS.d/next/Library/ |
D | 2018-09-12-14-46-51.bpo-34652.Rt1m1b.rst | 1 Ensure :func:`os.lchmod` is never defined on Linux.
|
/external/python/parse_type/tasks/_vendor/ |
D | pathlib.py | 366 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/ |
D | pathlib.py | 413 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)
|
D | shutil.py | 301 stat_func, chmod_func = os.lstat, os.lchmod
|
/external/python/pyfakefs/pyfakefs/ |
D | fake_pathlib.py | 109 lchmod = _wrap_strfunc(lambda fs, path, mode: FakeFilesystem.chmod( variable in _FakeAccessor 112 def lchmod(self, pathobj, mode): member in _FakeAccessor
|
D | fake_filesystem.py | 4190 def lchmod(self, path, mode): member in FakeOsModule
|
/external/python/cpython3/Lib/test/ |
D | test_shutil.py | 499 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)
|
D | test_os.py | 3599 funcs.append((self.filenames, os.lchmod, 0o777))
|
/external/python/pyfakefs/pyfakefs/tests/ |
D | fake_pathlib_test.py | 385 self.path(self.file_link_path).lchmod, 0o444) 387 self.path(self.file_link_path).lchmod(0o444)
|
D | fake_os_test.py | 1955 self.os.lchmod(link_path, 0o6543)
|
/external/python/cpython3/Doc/library/ |
D | pathlib.rst | 898 .. method:: Path.lchmod(mode)
|
D | os.rst | 1785 .. function:: lchmod(path, mode) 1792 .. audit-event:: os.chmod path,mode,dir_fd os.lchmod
|
/external/python/cpython2/ |
D | configure.ac | 3137 # 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)
|
D | configure | 10635 ac_fn_c_check_func "$LINENO" "lchmod" "ac_cv_func_lchmod"
|
/external/python/cpython3/ |
D | pyconfig.h.in | 580 /* Define to 1 if you have the `lchmod' function. */
|
D | configure.ac | 3707 # 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/ |
D | sanitizer_syscalls_netbsd.inc | 2021 PRE_SYSCALL(lchmod)(void *path_, long long mode_) { 2027 POST_SYSCALL(lchmod)(long long res, void *path_, long long mode_) {
|
/external/python/cpython3/Modules/ |
D | posixmodule.c | 3196 result = lchmod(path->narrow, mode); in os_chmod_impl() 3319 res = lchmod(path->narrow, mode); in os_lchmod_impl()
|
/external/compiler-rt/lib/dfsan/ |
D | libc_ubuntu1404_abilist.txt | 2166 fun:lchmod=uninstrumented
|
/external/llvm-project/compiler-rt/lib/dfsan/ |
D | libc_ubuntu1404_abilist.txt | 2166 fun:lchmod=uninstrumented
|
/external/python/cpython2/Doc/library/ |
D | os.rst | 1119 .. function:: lchmod(path, mode)
|
/external/python/cpython2/Modules/ |
D | posixmodule.c | 1959 res = lchmod(path, i); in posix_lchmod()
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.6.rst | 2162 and ownership of an opened file, and ``lchmod(path, mode)`` changes
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.6.rst | 2166 and ownership of an opened file, and ``lchmod(path, mode)`` changes
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.8.0a1.rst | 3174 Ensure :func:`os.lchmod` is never defined on Linux.
|