/third_party/rust/crates/nix/test/sys/ |
D | test_stat.rs | 8 unistd::chflags, in test_chflags() 22 chflags(f.path(), commanded).unwrap(); in test_chflags()
|
/third_party/python/Doc/library/ |
D | stat.rst | 351 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.
|
D | shutil.rst | 140 * If ``os.chflags in os.supports_follow_symlinks`` is 142 a symbolic link. (``os.chflags`` is not available on
|
D | os.rst | 1767 .. 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/ |
D | s_cb.c | 154 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/ |
D | test_posix.py | 943 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)
|
D | test_shutil.py | 932 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
|
D | test_tempfile.py | 1664 os.chflags(os.path.join(root, name), flags) 1665 os.chflags(root, flags)
|
D | test_os.py | 3808 funcs.append((self.filenames, os.chflags, 0))
|
/third_party/rust/crates/libc/libc-test/semver/ |
D | openbsd.txt | 987 chflags
|
D | netbsd.txt | 1170 chflags
|
D | dragonfly.txt | 1234 chflags
|
D | freebsd.txt | 1529 chflags
|
D | apple.txt | 1834 chflags
|
/third_party/python/Lib/ |
D | tempfile.py | 809 _os.chflags(path, 0)
|
/third_party/rust/crates/nix/src/ |
D | unistd.rs | 3376 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/ |
D | mod.rs | 1759 pub fn chflags(path: *const ::c_char, flags: ::c_uint) -> ::c_int; in chflags() function
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/ |
D | mod.rs | 1460 pub fn chflags(path: *const ::c_char, flags: ::c_ulong) -> ::c_int; in chflags() function
|
/third_party/python/ |
D | configure.ac | 3909 # 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.])
|
D | pyconfig.h.in | 127 /* Define to 1 if you have the 'chflags' function. */
|
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/netbsd/ |
D | mod.rs | 2452 pub fn chflags(path: *const ::c_char, flags: ::c_ulong) -> ::c_int; in chflags() function
|
/third_party/rust/crates/nix/ |
D | CHANGELOG.md | 98 - Added `chflags`.
|
/third_party/rust/crates/libc/src/unix/bsd/apple/ |
D | mod.rs | 5093 pub fn chflags(path: *const ::c_char, flags: ::c_uint) -> ::c_int; in chflags() function
|
/third_party/python/Doc/whatsnew/ |
D | 3.3.rst | 1605 :func:`~os.access`, :func:`~os.chflags`, :func:`~os.chmod`, :func:`~os.chown`,
|
/third_party/python/Modules/ |
D | posixmodule.c | 3450 result = chflags(path->narrow, flags); in os_chflags_impl()
|