Home
last modified time | relevance | path

Searched refs:chflags (Results 1 – 25 of 30) sorted by relevance

12

/third_party/rust/crates/nix/test/sys/
Dtest_stat.rs8 unistd::chflags, in test_chflags()
22 chflags(f.path(), commanded).unwrap(); in test_chflags()
/third_party/python/Doc/library/
Dstat.rst351 The following flags can be used in the *flags* argument of :func:`os.chflags`:
401 See the \*BSD or macOS systems man page :manpage:`chflags(2)` for more information.
Dshutil.rst140 * If ``os.chflags in os.supports_follow_symlinks`` is
142 a symbolic link. (``os.chflags`` is not available on
Dos.rst1767 .. function:: chflags(path, flags, *, follow_symlinks=True)
1787 .. audit-event:: os.chflags path,flags os.chflags
1906 Set the flags of *path* to the numeric *flags*, like :func:`chflags`, but do
1908 ``os.chflags(path, flags, follow_symlinks=False)``.
1910 .. audit-event:: os.chflags path,flags os.lchflags
/third_party/openssl/apps/lib/
Ds_cb.c154 int chflags = chain ? SSL_BUILD_CHAIN_FLAG_CHECK : 0; in set_cert_key_stuff() local
183 if (build_chain && !SSL_CTX_build_cert_chain(ctx, chflags)) { in set_cert_key_stuff()
/third_party/python/Lib/test/
Dtest_posix.py943 posix.chflags(target_file, st.st_flags)
947 self._test_chflags_regular_file(posix.chflags, os_helper.TESTFN)
952 self._test_chflags_regular_file(posix.chflags, os_helper.TESTFN,
966 return posix.chflags(path, flags, follow_symlinks=False)
Dtest_shutil.py932 old_chflags = os.chflags
935 os.chflags = make_chflags_raiser(err)
938 os.chflags = make_chflags_raiser(errno.EOPNOTSUPP + errno.ENOTSUP)
941 os.chflags = old_chflags
Dtest_tempfile.py1664 os.chflags(os.path.join(root, name), flags)
1665 os.chflags(root, flags)
Dtest_os.py3808 funcs.append((self.filenames, os.chflags, 0))
/third_party/rust/crates/libc/libc-test/semver/
Dopenbsd.txt987 chflags
Dnetbsd.txt1170 chflags
Ddragonfly.txt1234 chflags
Dfreebsd.txt1529 chflags
Dapple.txt1834 chflags
/third_party/python/Lib/
Dtempfile.py809 _os.chflags(path, 0)
/third_party/rust/crates/nix/src/
Dunistd.rs3376 pub fn chflags<P: ?Sized + NixPath>(path: &P, flags: FileFlag) -> Result<()> {
3378 libc::chflags(cstr.as_ptr(), flags.bits())
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/openbsd/
Dmod.rs1759 pub fn chflags(path: *const ::c_char, flags: ::c_uint) -> ::c_int; in chflags() function
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/
Dmod.rs1460 pub fn chflags(path: *const ::c_char, flags: ::c_ulong) -> ::c_int; in chflags() function
/third_party/python/
Dconfigure.ac3909 # On Tru64, chflags seems to be present, but calling it will
3911 AC_CACHE_CHECK([for chflags], [ac_cv_have_chflags], [dnl
3917 if(chflags(argv[0], 0) != 0)
3927 AC_CHECK_FUNC([chflags], [ac_cv_have_chflags="yes"], [ac_cv_have_chflags="no"])
3930 AC_DEFINE(HAVE_CHFLAGS, 1, [Define to 1 if you have the 'chflags' function.])
Dpyconfig.h.in127 /* Define to 1 if you have the 'chflags' function. */
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/netbsd/
Dmod.rs2452 pub fn chflags(path: *const ::c_char, flags: ::c_ulong) -> ::c_int; in chflags() function
/third_party/rust/crates/nix/
DCHANGELOG.md98 - Added `chflags`.
/third_party/rust/crates/libc/src/unix/bsd/apple/
Dmod.rs5093 pub fn chflags(path: *const ::c_char, flags: ::c_uint) -> ::c_int; in chflags() function
/third_party/python/Doc/whatsnew/
D3.3.rst1605 :func:`~os.access`, :func:`~os.chflags`, :func:`~os.chmod`, :func:`~os.chown`,
/third_party/python/Modules/
Dposixmodule.c3450 result = chflags(path->narrow, flags); in os_chflags_impl()

12