Searched refs:lchflags (Results 1 - 7 of 7) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_shutil.py | 530 if hasattr(os, 'lchflags') and hasattr(stat, 'UF_NODUMP'): 531 os.lchflags(src_link, stat.UF_NODUMP) 544 if hasattr(os, 'lchflags'): 922 if hasattr(os, 'lchflags') and hasattr(stat, 'UF_NODUMP'): 923 os.lchflags(src_link, stat.UF_NODUMP) 939 if hasattr(os, 'lchflags') and hasattr(src_link_stat, 'st_flags'): 1135 if hasattr(os, 'lchflags') and hasattr(stat, 'UF_NODUMP'): 1136 os.lchflags(src_link, stat.UF_NODUMP) 1157 if hasattr(os, 'lchflags') and hasattr(src_link_stat, 'st_flags'): 2204 @unittest.skipUnless(hasattr(os, 'lchflags') [all...] |
H A D | test_posix.py | 964 @unittest.skipUnless(hasattr(posix, 'lchflags'), 'test needs os.lchflags()') 966 self._test_chflags_regular_file(posix.lchflags, os_helper.TESTFN) 970 @unittest.skipUnless(hasattr(posix, 'lchflags'), 'test needs os.lchflags()') 983 for fn in (posix.lchflags, chflags_nofollow):
|
H A D | test_os.py | 3869 if hasattr(os, "lchflags"): 3870 funcs.append((self.filenames, os.lchflags, 0)) 4048 ('lchflags', False, (0,), None),
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/ |
H A D | mod.rs | 1532 pub fn lchflags(path: *const ::c_char, flags: ::c_ulong) -> ::c_int; in lchflags() functions
|
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/netbsd/ |
H A D | mod.rs | 2454 pub fn lchflags(path: *const ::c_char, flags: ::c_ulong) -> ::c_int; in lchflags() functions
|
/third_party/python/Modules/ |
H A D | posixmodule.c | 3481 result = lchflags(path->narrow, flags); in os_chflags_impl() 3497 os.lchflags 3517 res = lchflags(path->narrow, flags); in os_lchflags_impl()
|
/third_party/python/ |
H A D | configure | 18596 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for lchflags" >&5 18597 printf %s "checking for lchflags... " >&6; } 18613 if(lchflags(argv[0], 0) != 0) 18634 ac_fn_c_check_func "$LINENO" "lchflags" "ac_cv_func_lchflags"
|
Completed in 58 milliseconds