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

/external/kernel-headers/original/linux/
H A Dstat.h13 #define S_IFSOCK 0140000 macro
30 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
/external/openssh/
H A Ddefines.h134 #ifndef S_IFSOCK
135 # define S_IFSOCK 0 macro
136 #endif /* S_IFSOCK */
/external/okhttp/src/main/java/libcore/io/
H A DOsConstants.java28 public static boolean S_ISSOCK(int mode) { return (mode & S_IFMT) == S_IFSOCK; }
322 public static final int S_IFSOCK = placeholder(); field in class:OsConstants

Completed in 135 milliseconds