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

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/
stat.h 60 #define _S_IFMT 0xF000
135 #define S_IFMT _S_IFMT
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
stat.h 96 #define _S_IFMT 0x000FF000 ///< type-of-file mask
109 These bits correspond to the xx portion of _S_IFMT
122 #define S_IFMT _S_IFMT
133 #define S_ISFIFO(m) ((m & _S_IFMT) == _S_IFIFO) ///< fifo
134 #define S_ISCHR(m) ((m & _S_IFMT) == _S_IFCHR) ///< char special
135 #define S_ISDIR(m) ((m & _S_IFMT) == _S_IFDIR) ///< directory
136 #define S_ISBLK(m) ((m & _S_IFMT) == _S_IFBLK) ///< block special
137 #define S_ISREG(m) ((m & _S_IFMT) == _S_IFREG) ///< regular file
138 #define S_ISSOCK(m) ((m & _S_IFMT) == _S_IFSOCK) ///< socket

Completed in 1109 milliseconds