Searched refs:S_ISSOCK (Results 1 – 2 of 2) sorted by relevance
48 assertFalse(S_ISSOCK(Libcore.os.fstat(fis.getFD()).st_mode)); in testIsSocket()52 assertTrue(S_ISSOCK(Libcore.os.fstat(s.getImpl$().getFD$()).st_mode)); in testIsSocket()
59 public static boolean S_ISSOCK(int mode) { return (mode & S_IFMT) == S_IFSOCK; } in S_ISSOCK() method in OsConstants