HomeSort by relevance Sort by last modified time
    Searched refs:S_ISLNK (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /external/e2fsprogs/include/mingw/sys/
stat.h 12 #ifndef S_ISLNK
14 #define S_ISLNK(mode) __S_ISTYPE((mode), __S_IFLNK)
16 #define S_ISLNK(mode) 0
  /bionic/tests/headers/posix/
sys_stat_h_file_type_test_macros.h 44 #if !defined(S_ISLNK)
45 #error S_ISLNK
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
stat.py 55 def S_ISLNK(mode):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/comparisons/
systemtest.py 56 if S_ISLNK(mode):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stat.py 55 def S_ISLNK(mode):
  /external/ltp/testcases/kernel/fs/mongo/
mongo_slinks.c 57 if (!(S_ISLNK(statbuf.st_mode))) {
  /external/ltp/testcases/kernel/syscalls/symlink/
symlink04.c 126 if (!S_ISLNK(stat_buf.st_mode)) {
symlink05.c 127 if (!S_ISLNK(stat_buf.st_mode)) {
  /external/python/cpython2/Demo/comparisons/
systemtest.py 56 if S_ISLNK(mode):
  /external/python/cpython2/Lib/
stat.py 55 def S_ISLNK(mode):
  /external/toybox/toys/posix/
cpio.c 145 } else if (S_ISLNK(mode)) {
191 if (!S_ISREG(mode) && !S_ISLNK(mode) && !geteuid()
240 if (!S_ISREG(st.st_mode) && !S_ISLNK(st.st_mode)) st.st_size = 0;
258 if (S_ISLNK(st.st_mode)) {
rm.c 40 && (!S_ISLNK(try->st.st_mode) && faccessat(fd, try->name, W_OK, 0))) or++;
  /bionic/libc/kernel/uapi/linux/
stat.h 34 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /external/e2fsprogs/util/
symlinks.c 28 #ifndef S_ISLNK
29 #define S_ISLNK(mode) (((mode) & (_S_IFMT)) == (_S_IFLNK))
295 if (S_ISLNK(st.st_mode)) {
381 else if (S_ISLNK(st.st_mode))
  /external/kernel-headers/original/uapi/linux/
stat.h 21 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /external/libcap/progs/
getcap.c 102 (S_ISLNK(stbuf.st_mode) ? FTW_SL : FTW_NS);
  /external/e2fsprogs/misc/
chattr.c 44 #ifndef S_ISLNK /* So we can compile even with gcc-warn */
46 # define S_ISLNK(mode) __S_ISTYPE((mode), __S_IFLNK)
48 # define S_ISLNK(mode) 0
  /external/python/cpython3/Lib/
stat.py 66 def S_ISLNK(mode):
  /external/python/cpython3/Modules/
_stat.c 95 #ifndef S_ISLNK
96 # define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
297 stat_S_ISFUNC(S_ISLNK,
298 "S_ISLNK(mode) -> bool\n\n"
352 if (S_ISLNK(mode)) return 'l';
417 {"S_ISLNK", stat_S_ISLNK, METH_O, stat_S_ISLNK_doc},
  /external/u-boot/fs/yaffs2/
yportenv.h 253 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /external/u-boot/include/linux/
stat.h 22 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /external/libcap/libcap/
cap_file.c 257 if (S_ISLNK(buf.st_mode) || !S_ISREG(buf.st_mode)) {
289 if (S_ISLNK(buf.st_mode) || !S_ISREG(buf.st_mode)) {
  /external/toybox/toys/other/
lsattr.c 264 if ((S_ISLNK(root->st.st_mode) && chattr.recursive)
265 || (!S_ISREG(root->st.st_mode) && !S_ISLNK(root->st.st_mode)
  /build/make/tools/libhost/
CopyFile.c 30 # define S_ISLNK(s) 0
374 && !S_ISLNK(dstStat.st_mode)
583 } else if (S_ISLNK(srcStat.st_mode)) {
  /external/f2fs-tools/fsck/
segment.c 118 ASSERT(!S_ISLNK(le16_to_cpu(inode->i.i_mode)));
200 ASSERT(!S_ISLNK(le16_to_cpu(inode->i.i_mode)));
280 ASSERT(!S_ISLNK(le16_to_cpu(inode->i.i_mode)));

Completed in 2028 milliseconds

1 2 3 4 5