Searched refs:S_ISLNK (Results 1 - 25 of 108) sorted by relevance

12345

/haiku-fatelf/src/bin/findutils/lib/
H A Dmodetype.h31 #ifdef S_ISLNK
51 #undef S_ISLNK macro
76 #if !defined(S_ISLNK) && defined(S_IFLNK)
77 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) macro
H A Dlistfile.c73 #undef S_ISLNK macro
82 #if defined(S_IFLNK) && !defined(S_ISLNK)
83 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) macro
285 #ifdef S_ISLNK
286 if (S_ISLNK (statp->st_mode))
351 #ifdef S_ISLNK
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dlchown.c54 if (lstat (file, &stats) == 0 && S_ISLNK (stats.st_mode))
H A Dlstat.c52 if (lstat_result != 0 || !S_ISLNK (sbuf->st_mode))
H A Dfstatat.c38 if (result == 0 && (flag & AT_SYMLINK_NOFOLLOW) && S_ISLNK (st->st_mode)
H A Dsys_stat.in.h41 # undef S_ISLNK macro
86 #ifndef S_ISLNK
88 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) macro
90 # define S_ISLNK(m) 0 macro
H A Dfilemode.c67 if (S_ISLNK (bits))
/haiku-fatelf/src/bin/network/wget/src/
H A Dsysdep.h154 # ifndef S_ISLNK
155 # define S_ISLNK(m) 0 macro
168 #ifndef S_ISLNK
169 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) macro
H A Dmswindows.h69 #ifndef S_ISLNK
70 # define S_ISLNK(a) 0 macro
/haiku-fatelf/src/bin/gdb/gdb/
H A Dgdb_stat.h33 #undef S_ISLNK macro
55 #if !defined(S_ISLNK) && defined(S_IFLNK)
56 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) macro
/haiku-fatelf/src/bin/bash/include/
H A Dposixstat.h35 # undef S_ISLNK macro
99 #if defined (S_IFLNK) && !defined (S_ISLNK)
100 #define S_ISLNK(m) (((m)&S_IFMT) == S_IFLNK) /* symbolic link */ macro
/haiku-fatelf/src/bin/bash/lib/readline/
H A Dposixstat.h35 # undef S_ISLNK macro
99 #if defined (S_IFLNK) && !defined (S_ISLNK)
100 #define S_ISLNK(m) (((m)&S_IFMT) == S_IFLNK) /* symbolic link */ macro
/haiku-fatelf/src/bin/gdb/readline/
H A Dposixstat.h35 # undef S_ISLNK macro
99 #if defined (S_IFLNK) && !defined (S_ISLNK)
100 #define S_ISLNK(m) (((m)&S_IFMT) == S_IFLNK) /* symbolic link */ macro
/haiku-fatelf/src/bin/coreutils/lib/
H A Dfile-type.c52 if (S_ISLNK (st->st_mode))
H A Dlstat.c83 if (!S_ISLNK (sbuf->st_mode))
H A Dlchown.c50 if (lstat (file, &stats) == 0 && S_ISLNK (stats.st_mode))
83 if (!S_ISLNK (st.st_mode))
H A Dunlink.c73 if (len && (lstat (short_name, &st) || S_ISLNK (st.st_mode)))
H A Dfilemode.c67 if (S_ISLNK (bits))
H A Dfstatat.c52 if (!S_ISLNK (st->st_mode))
H A Dunlinkat.c67 if (len && (lstatat (fd, short_name, &st) || S_ISLNK (st.st_mode)))
/haiku-fatelf/src/bin/coreutils/lib/sys/
H A Dstat.h38 # undef S_ISLNK macro
83 #ifndef S_ISLNK
85 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) macro
87 # define S_ISLNK(m) 0 macro
/haiku-fatelf/src/bin/findutils/gnulib/lib/sys/
H A Dstat.h41 # undef S_ISLNK macro
86 #ifndef S_ISLNK
88 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) macro
90 # define S_ISLNK(m) 0 macro
/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Ddir.h46 #ifndef S_ISLNK
47 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) macro
/haiku-fatelf/src/bin/coreutils/src/
H A Dcopy.c692 && S_ISLNK (dangling_link_sb.st_mode))
1058 if (S_ISLNK (src_sb->st_mode) && S_ISLNK (dst_sb->st_mode))
1083 if (S_ISLNK (src_sb_link->st_mode) && S_ISLNK (dst_sb_link->st_mode)
1115 && S_ISLNK (src_sb_link->st_mode)
1116 && ! S_ISLNK (dst_sb_link->st_mode))
1134 || !S_ISLNK (src_sb_link->st_mode)
1135 || S_ISLNK (dst_sb_link->st_mode))
1149 if (S_ISLNK (dst_sb_lin
[all...]
/haiku-fatelf/src/system/boot/loader/file_systems/bfs/
H A DStream.h37 bool IsSymlink() const { return S_ISLNK(Mode()); }

Completed in 265 milliseconds

12345