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

/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileKey.java34 private final long st_ino; field in class:UnixFileKey
36 UnixFileKey(long st_dev, long st_ino) { argument
38 this.st_ino = st_ino;
44 (int)(st_ino ^ (st_ino >>> 32));
54 return (this.st_dev == other.st_dev) && (this.st_ino == other.st_ino);
63 .append(st_ino)
H A DUnixFileAttributes.java41 private long st_ino; field in class:UnixFileAttributes
92 return ((st_ino == attrs.st_ino) && (st_dev == attrs.st_dev));
97 long ino() { return st_ino; }
163 key = new UnixFileKey(st_dev, st_ino);
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_SolarisOS_Utils.h65 ino_t st_ino; // inode number to detect duplicate devices member in struct:tag_AudioDevicePath
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DFileKey.java37 private long st_ino; // Inode number field in class:FileKey
53 (int)(st_ino ^ (st_ino >>> 32));
63 (this.st_ino != other.st_ino)) {

Completed in 34 milliseconds