HomeSort by relevance Sort by last modified time
    Searched defs:S_ISLNK (Results 1 - 19 of 19) sorted by null

  /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
  /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)) {
  /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/Lib/
stat.py 55 def S_ISLNK(mode):
  /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/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/python/cpython2/Lib/
stat.py 55 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/include/linux/
stat.h 22 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /bionic/libc/kernel/uapi/linux/
stat.h 34 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /external/kernel-headers/original/uapi/linux/
stat.h 21 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /external/python/cpython3/Lib/
stat.py 66 def S_ISLNK(mode):
  /external/u-boot/fs/yaffs2/
yportenv.h 253 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  /external/openssh/
defines.h 167 #ifndef S_ISLNK
168 # define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
169 #endif /* S_ISLNK */
  /external/u-boot/fs/reiserfs/
reiserfs_private.h 400 #define S_ISLNK(mode) (((mode) & 0170000) == 0120000)
  /external/python/cpython2/Lib/plat-atheos/
IN.py 581 def S_ISLNK(m): return (((m) & S_IFMT) == S_IFLNK)
  /external/mksh/src/
sh.h 350 #ifndef S_ISLNK
351 #define S_ISLNK(m) ((m & 0170000) == 0120000)
499 #undef S_ISLNK
500 #define S_ISLNK(m) (/* CONSTCOND */ 0)
    [all...]
  /external/sqlite/dist/orig/
shell.c 102 # ifndef S_ISLNK
103 # define S_ISLNK(mode) (0)
1032 #ifndef S_ISLNK
1033 #define S_ISLNK(mode) (0)
    [all...]
  /external/sqlite/dist/
shell.c 108 # ifndef S_ISLNK
109 # define S_ISLNK(mode) (0)
1038 #ifndef S_ISLNK
1039 #define S_ISLNK(mode) (0)
    [all...]

Completed in 515 milliseconds