Home
last modified time | relevance | path

Searched refs:lchflags (Results 1 – 15 of 15) sorted by relevance

/third_party/python/Lib/test/
Dtest_shutil.py506 os.lchflags(src_link, stat.UF_NODUMP)
891 os.lchflags(src_link, stat.UF_NODUMP)
1105 os.lchflags(src_link, stat.UF_NODUMP)
2154 os.lchflags(TESTFN_SRC, stat.SF_IMMUTABLE)
2162 os.lchflags(TESTFN_SRC, stat.UF_OPAQUE)
2164 os.lchflags(TESTFN_SRC, stat.SF_IMMUTABLE)
2172 os.lchflags(TESTFN_SRC, stat.UF_OPAQUE)
2175 os.lchflags(TESTFN_DST, stat.UF_OPAQUE)
Dtest_posix.py951 self._test_chflags_regular_file(posix.lchflags, os_helper.TESTFN)
968 for fn in (posix.lchflags, chflags_nofollow):
Dtest_os.py3810 funcs.append((self.filenames, os.lchflags, 0))
/third_party/rust/crates/libc/libc-test/semver/
Ddragonfly.txt1350 lchflags
Dnetbsd.txt1308 lchflags
Dfreebsd.txt1675 lchflags
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/
Dmod.rs1532 pub fn lchflags(path: *const ::c_char, flags: ::c_ulong) -> ::c_int; in lchflags() function
/third_party/python/
Dconfigure.ac3933 AC_CACHE_CHECK([for lchflags], [ac_cv_have_lchflags], [dnl
3939 if(lchflags(argv[0], 0) != 0)
3946 AC_CHECK_FUNC([lchflags], [ac_cv_have_lchflags="yes"], [ac_cv_have_lchflags="no"])
3949 AC_DEFINE(HAVE_LCHFLAGS, 1, [Define to 1 if you have the 'lchflags' function.])
Dpyconfig.h.in595 /* Define to 1 if you have the 'lchflags' function. */
Dconfigure12741 if(lchflags(argv[0], 0) != 0)
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/netbsd/
Dmod.rs2454 pub fn lchflags(path: *const ::c_char, flags: ::c_ulong) -> ::c_int; in lchflags() function
/third_party/python/Modules/
Dposixmodule.c3447 result = lchflags(path->narrow, flags); in os_chflags_impl()
3483 res = lchflags(path->narrow, flags); in os_lchflags_impl()
/third_party/python/Doc/library/
Dos.rst1904 .. function:: lchflags(path, flags)
1910 .. audit-event:: os.chflags path,flags os.lchflags
/third_party/python/Doc/whatsnew/
D2.6.rst2170 :func:`chflags` and :func:`lchflags` are wrappers for the
/third_party/python/Misc/
DHISTORY6722 UF_IMMUTABLE flag (via either chflags or lchflags); refactor affected tests in
10120 os.lchflags() are once again built on systems that support these
10420 - Issue #8746: Add additional tests for os.chflags() and os.lchflags().