Searched refs:st_ino (Results 1 – 8 of 8) sorted by relevance
/libcore/ojluni/src/main/java/sun/nio/fs/ |
D | UnixFileKey.java | 34 private final long st_ino; field in UnixFileKey 36 UnixFileKey(long st_dev, long st_ino) { in UnixFileKey() argument 38 this.st_ino = st_ino; in UnixFileKey() 44 (int)(st_ino ^ (st_ino >>> 32)); in hashCode() 54 return (this.st_dev == other.st_dev) && (this.st_ino == other.st_ino); in equals() 63 .append(st_ino) in toString()
|
D | UnixFileAttributes.java | 41 private long st_ino; field in UnixFileAttributes 96 return ((st_ino == attrs.st_ino) && (st_dev == attrs.st_dev)); in isSameFile() 101 long ino() { return st_ino; } in ino() 184 key = new UnixFileKey(st_dev, st_ino); in fileKey()
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | FileKey.java | 37 private long st_ino; // Inode number field in FileKey 53 (int)(st_ino ^ (st_ino >>> 32)); in hashCode() 63 (this.st_ino != other.st_ino)) { in equals()
|
/libcore/luni/src/main/java/android/system/ |
D | StructStat.java | 30 public final long st_ino; /*ino_t*/ field in StructStat 86 public StructStat(long st_dev, long st_ino, int st_mode, long st_nlink, int st_uid, int st_gid, in StructStat() argument 89 this(st_dev, st_ino, st_mode, st_nlink, st_uid, st_gid, in StructStat() 97 public StructStat(long st_dev, long st_ino, int st_mode, long st_nlink, int st_uid, int st_gid, in StructStat() argument 101 this.st_ino = st_ino; in StructStat()
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | ProcessBuilderTest.java | 92 Os.stat(path + "1").st_ino, Os.stat(path + "2").st_ino); in testRedirectErrorStream_outputAndErrorAreMerged() 113 Os.fstat(FileDescriptor.in).st_ino, in testRedirectInherit() 114 Os.fstat(FileDescriptor.out).st_ino, in testRedirectInherit() 115 Os.fstat(FileDescriptor.err).st_ino); in testRedirectInherit() 119 Os.stat("/proc/" + childPid + "/fd/0").st_ino, in testRedirectInherit() 120 Os.stat("/proc/" + childPid + "/fd/1").st_ino, in testRedirectInherit() 121 Os.stat("/proc/" + childPid + "/fd/2").st_ino); in testRedirectInherit()
|
/libcore/ojluni/src/main/native/ |
D | FileKey.c | 67 (*env)->SetLongField(env, this, key_st_ino, (jlong)fbuf.st_ino); in FileKey_init()
|
D | UnixNativeDispatcher.c | 465 (*env)->SetLongField(env, attrs, attrs_st_ino, (jlong)buf->st_ino); in prepAttributes()
|
/libcore/luni/src/main/native/ |
D | libcore_io_Linux.cpp | 501 static_cast<jlong>(sb.st_dev), static_cast<jlong>(sb.st_ino), in makeStructStat()
|