tag | line | file | source code |
S_IFMT | 53 | include/linux/stat.h | #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) |
S_IFMT | 54 | include/linux/stat.h | #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) |
S_IFMT | 55 | include/linux/stat.h | #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) |
S_IFMT | 56 | include/linux/stat.h | #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) |
S_IFMT | 57 | include/linux/stat.h | #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) |
S_IFMT | 58 | include/linux/stat.h | #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) |
S_IFMT | 59 | include/linux/stat.h | #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK) |