Searched defs:st_mode (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileAttributes.java40 private int st_mode; field in class:UnixFileAttributes
96 int mode() { return st_mode; }
109 int type = st_mode & UnixConstants.S_IFMT;
132 return ((st_mode & UnixConstants.S_IFMT) == UnixConstants.S_IFREG);
137 return ((st_mode & UnixConstants.S_IFMT) == UnixConstants.S_IFDIR);
142 return ((st_mode & UnixConstants.S_IFMT) == UnixConstants.S_IFLNK);
147 int type = st_mode & UnixConstants.S_IFMT;
196 int bits = (st_mode & UnixConstants.S_IAMB);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp5124 int st_mode = buf.st_mode; local
5127 if ((st_mode & S_IFMT) == S_IFDIR) {
5203 mode = buf.st_mode;
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp4911 int st_mode = buf64.st_mode; local
4914 if ((st_mode & S_IFMT) == S_IFDIR) {
4990 mode = buf64.st_mode;
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp5622 int st_mode = buf64.st_mode; local
5625 if ((st_mode & S_IFMT) == S_IFDIR) {
5755 mode = buf64.st_mode;

Completed in 86 milliseconds