Home
last modified time | relevance | path

Searched refs:MY_LIN_S_IFMT (Results 1 – 2 of 2) sorted by relevance

/third_party/lzma/CPP/Common/
DMyLinux.h18 #define MY_LIN_S_IFMT 00170000 macro
27 #define MY_LIN_S_ISLNK(m) (((m) & MY_LIN_S_IFMT) == MY_LIN_S_IFLNK)
28 #define MY_LIN_S_ISREG(m) (((m) & MY_LIN_S_IFMT) == MY_LIN_S_IFREG)
29 #define MY_LIN_S_ISDIR(m) (((m) & MY_LIN_S_IFMT) == MY_LIN_S_IFDIR)
30 #define MY_LIN_S_ISCHR(m) (((m) & MY_LIN_S_IFMT) == MY_LIN_S_IFCHR)
31 #define MY_LIN_S_ISBLK(m) (((m) & MY_LIN_S_IFMT) == MY_LIN_S_IFBLK)
32 #define MY_LIN_S_ISFIFO(m) (((m) & MY_LIN_S_IFMT) == MY_LIN_S_IFIFO)
33 #define MY_LIN_S_ISSOCK(m) (((m) & MY_LIN_S_IFMT) == MY_LIN_S_IFSOCK)
/third_party/lzma/CPP/7zip/UI/Common/
DArchiveExtractCallback.h332 a &= MY_LIN_S_IFMT; in SetFromPosixAttrib()