Searched defs:S_ISBLK (Results 1 – 2 of 2) sorted by relevance
28 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK) macro
22 public static boolean S_ISBLK(int mode) { return (mode & S_IFMT) == S_IFBLK; } in S_ISBLK() method in OsConstants