Searched refs:S_IFLNK (Results 1 – 2 of 2) sorted by relevance
47 #define S_IFLNK 0120000 macro48 #define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)59 static_assert(S_IFLNK == 0120000, "");
31 public static final int S_IFLNK = 0120000; field in FileUtils