Searched defs:_S_IFMT (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/sys/
H A Dstat.h48 #define _S_IFMT 0xF000 macro
184 #define S_IFMT _S_IFMT
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/sys/
H A Dstat.h58 #define _S_IFMT 0xF000 macro
149 #define S_IFMT _S_IFMT
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/
H A Dstat.h94 #define _S_IFMT 0x000FF000 ///< type-of-file mask macro
107 These bits correspond to the xx portion of _S_IFMT
120 #define S_IFMT _S_IFMT
128 #define S_ISDIR(m) ((m & _S_IFMT) == _S_IFDIR) ///< directory
129 #define S_ISCHR(m) ((m & _S_IFMT) == _S_IFCHR) ///< char special
130 #define S_ISREG(m) ((m & _S_IFMT) == _S_IFREG) ///< regular file
131 #define S_ISBLK(m) ((m & _S_IFMT) == _S_IFBLK) ///< block special
132 #define S_ISSOCK(m) ((m & _S_IFMT) == _S_IFSOCK) ///< socket
134 #define S_ISFIFO(m) ((m & _S_IFMT) == _S_IFIFO) ///< fifo

Completed in 65 milliseconds