/external/e2fsprogs/include/mingw/sys/ |
D | stat.h | 12 #ifndef S_ISLNK 14 #define S_ISLNK(mode) __S_ISTYPE((mode), __S_IFLNK) macro 16 #define S_ISLNK(mode) 0 macro
|
/external/toybox/toys/posix/ |
D | cpio.c | 147 } else if (S_ISLNK(mode)) { in cpio_main() 193 if (!S_ISREG(mode) && !S_ISLNK(mode) && !geteuid() in cpio_main() 242 if (!S_ISREG(st.st_mode) && !S_ISLNK(st.st_mode)) st.st_size = 0; in cpio_main() 260 if (S_ISLNK(st.st_mode)) { in cpio_main()
|
D | rm.c | 39 && (!S_ISLNK(try->st.st_mode) && faccessat(fd, try->name, W_OK, 0))) or++; in do_rm()
|
D | ls.c | 112 if (S_ISLNK(mode)) return '@'; in endtype() 277 else if (S_ISLNK(mode)) color = 256+36; in color_from_mode() 490 if ((flags & (FLAG_l|FLAG_o|FLAG_n|FLAG_g)) && S_ISLNK(mode)) { in listfiles()
|
/external/e2fsprogs/util/ |
D | symlinks.c | 28 #ifndef S_ISLNK 29 #define S_ISLNK(mode) (((mode) & (_S_IFMT)) == (_S_IFLNK)) macro 295 if (S_ISLNK(st.st_mode)) { in dirwalk() 381 else if (S_ISLNK(st.st_mode))
|
/external/e2fsprogs/misc/ |
D | chattr.c | 44 #ifndef S_ISLNK /* So we can compile even with gcc-warn */ 46 # define S_ISLNK(mode) __S_ISTYPE((mode), __S_IFLNK) macro 48 # define S_ISLNK(mode) 0 macro
|
/external/bison/lib/ |
D | sys_stat.in.h | 90 # undef S_ISLNK 135 #ifndef S_ISLNK 137 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) 139 # define S_ISLNK(m) 0
|
/external/kernel-headers/original/uapi/linux/ |
D | stat.h | 19 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) macro
|
/external/syslinux/com32/include/sys/ |
D | stat.h | 23 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) macro
|
/external/ltp/testcases/kernel/syscalls/symlink/ |
D | symlink05.c | 126 if (!S_ISLNK(stat_buf.st_mode)) { in main()
|
D | symlink04.c | 125 if (!S_ISLNK(stat_buf.st_mode)) { in main()
|
/external/ltp/testcases/kernel/fs/mongo/ |
D | mongo_slinks.c | 57 if (!(S_ISLNK(statbuf.st_mode))) { in main()
|
/external/bison/darwin-lib/sys/ |
D | stat.h | 402 # undef S_ISLNK 447 #ifndef S_ISLNK 449 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) macro 451 # define S_ISLNK(m) 0 macro
|
/external/bison/linux-lib/sys/ |
D | stat.h | 402 # undef S_ISLNK 447 #ifndef S_ISLNK 449 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) macro 451 # define S_ISLNK(m) 0 macro
|
/external/python/cpython2/Demo/comparisons/ |
D | systemtest.py | 56 if S_ISLNK(mode):
|
/external/libcap/libcap/ |
D | cap_file.c | 257 if (S_ISLNK(buf.st_mode) || !S_ISREG(buf.st_mode)) { in cap_set_fd() 289 if (S_ISLNK(buf.st_mode) || !S_ISREG(buf.st_mode)) { in cap_set_file()
|
/external/python/cpython2/Lib/ |
D | stat.py | 55 def S_ISLNK(mode): function
|
/external/toybox/toys/other/ |
D | lsattr.c | 264 if ((S_ISLNK(root->st.st_mode) && chattr.recursive) in update_attr() 265 || (!S_ISREG(root->st.st_mode) && !S_ISLNK(root->st.st_mode) in update_attr()
|
/external/python/cpython2/Lib/distutils/ |
D | filelist.py | 260 from stat import ST_MODE, S_ISREG, S_ISDIR, S_ISLNK 282 elif S_ISDIR(mode) and not S_ISLNK(mode):
|
/external/libcap/progs/ |
D | getcap.c | 102 (S_ISLNK(stbuf.st_mode) ? FTW_SL : FTW_NS); in main()
|
/external/openssh/openbsd-compat/ |
D | realpath.c | 171 if (S_ISLNK(sb.st_mode)) { in realpath()
|
/external/toybox/toys/pending/ |
D | test.c | 65 nolink = !S_ISLNK(st.st_mode); in test_main()
|
/external/selinux/libselinux/src/ |
D | matchpathcon.c | 438 if (S_ISLNK(mode)) { in matchpathcon() 498 if (S_ISLNK(mode)) { in selinux_file_context_verify()
|
/external/openssh/ |
D | defines.h | 167 #ifndef S_ISLNK 168 # define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK) macro
|
/external/python/cpython2/Demo/threads/ |
D | find.py | 127 return (stat[ST_MODE] & 0002) != 0 and not S_ISLNK(stat[ST_MODE])
|