Home
last modified time | relevance | path

Searched refs:S_IFLNK (Results 1 - 25 of 78) sorted by relevance

1234

/third_party/ntfs-3g/include/ntfs-3g/
H A Ddir.h37 #ifndef S_IFLNK
38 #define S_IFLNK 0120000 macro
41 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
/third_party/python/Lib/
H A Dstat.py41 S_IFLNK = 0o120000 # symbolic link variable
72 return S_IFMT(mode) == S_IFLNK
129 ((S_IFLNK, "l"),
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
H A Dstat.h36 #define S_IFLNK 0120000 macro
49 #define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
/third_party/musl/porting/linux/user/include/sys/
H A Dstat.h36 #define S_IFLNK 0120000 macro
49 #define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
/third_party/musl/porting/liteos_m/kernel/include/sys/
H A Dstat.h36 #define S_IFLNK 0120000 macro
49 #define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
/third_party/musl/porting/liteos_a/kernel/include/sys/
H A Dstat.h36 #define S_IFLNK 0120000 macro
49 #define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
/third_party/musl/porting/uniproton/kernel/include/sys/
H A Dstat.h36 #define S_IFLNK 0120000 macro
49 #define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
/third_party/musl/include/sys/
H A Dstat.h43 #define S_IFLNK 0120000 macro
56 #define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
/third_party/libwebsockets/win32port/dirent/
H A Ddirent-win32.h102 #if !defined(S_IFLNK)
103 # define S_IFLNK 0 macro
175 #define DT_LNK S_IFLNK
197 # define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
/third_party/node/deps/uvwasi/src/
H A Duv_mapping.c23 #if !defined(S_ISLNK) && defined(S_IFMT) && defined(S_IFLNK)
24 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
/third_party/eudev/src/shared/
H A Dlabel.c63 r = mac_selinux_create_file_prepare(new_path, S_IFLNK); in symlink_label()
/third_party/ltp/testcases/kernel/syscalls/lstat/
H A Dlstat01.c39 if ((stat_buf.st_mode & S_IFMT) != S_IFLNK || in run()
/third_party/ffmpeg/libavformat/
H A Dfile.c54 # ifdef S_IFLNK
55 # define S_ISLNK(m) (((m) & S_IFLNK) == S_IFLNK)
/third_party/rust/crates/rustix/src/backend/linux_raw/fs/
H A Dtypes.rs261 /// `S_IFLNK`
262 Symlink = linux_raw_sys::general::S_IFLNK as isize,
288 linux_raw_sys::general::S_IFLNK => Self::Symlink,
303 Self::Symlink => linux_raw_sys::general::S_IFLNK,
/third_party/musl/libc-test/src/api/
H A Dftw.c42 C(S_IFLNK) in f()
H A Dsys_stat.c65 C(S_IFLNK) in f()
/third_party/eudev/src/udev/
H A Dudev-node.c92 mac_selinux_create_file_prepare(slink, S_IFLNK); in node_symlink()
109 mac_selinux_create_file_prepare(slink_tmp, S_IFLNK); in node_symlink()
/third_party/python/Include/
H A Dpyport.h254 #ifndef S_IFLNK
255 /* Windows doesn't define S_IFLNK but posixmodule.c maps
256 * IO_REPARSE_TAG_SYMLINK to S_IFLNK */
257 # define S_IFLNK 0120000 macro
/third_party/python/Modules/
H A D_stat.c59 * pyport.h guarantees S_IFMT, S_IFDIR, S_IFCHR, S_IFREG and S_IFLNK
100 # define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
440 S_IFLNK: symbolic link\n\
514 ADD_INT_MACRO(module, S_IFLNK); in stat_exec()
/third_party/selinux/libselinux/utils/
H A Dmatchpathcon.c61 return S_IFLNK; in string_to_mode()
H A Dselabel_lookup_best_match.c45 return S_IFLNK; in string_to_mode()
/third_party/ntfs-3g/src/
H A Dntfs-3g.c731 stbuf->st_mode = S_IFLNK; in junction_getattr()
767 stbuf->st_mode = S_IFLNK; in wsl_getattr()
777 stbuf->st_mode = S_IFLNK; in wsl_getattr()
796 case S_IFLNK : in apply_umask()
860 stbuf->st_mode = S_IFLNK; in ntfs_fuse_getattr()
882 stbuf->st_mode = S_IFLNK; in ntfs_fuse_getattr()
1022 stbuf->st_mode = S_IFLNK; in ntfs_fuse_getattr()
1293 st.st_mode = S_IFLNK | 0777; in ntfs_fuse_filler()
1308 st.st_mode = S_IFLNK | 0777; /* default */ in ntfs_fuse_filler()
1321 st.st_mode = S_IFLNK; in ntfs_fuse_filler()
[all...]
/third_party/libuv/include/uv/
H A Dwin.h69 #ifndef S_IFLNK
70 # define S_IFLNK 0xA000 macro
/third_party/node/deps/uv/include/uv/
H A Dwin.h74 #ifndef S_IFLNK
75 # define S_IFLNK 0xA000 macro
/third_party/rust/crates/rustix/src/backend/libc/fs/
H A Dtypes.rs384 /// `S_IFLNK`
385 Symlink = c::S_IFLNK as isize,
413 c::S_IFLNK => Self::Symlink,
429 Self::Symlink => c::S_IFLNK as RawMode,

Completed in 16 milliseconds

1234