If you think the Android project androiddevice.info listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package libcore.io;
/*fromwww.java2s.com*/publicclass StructStat {
publicfinallong st_dev;
publicfinallong st_ino;
publicfinalint st_mode;
publicfinallong st_nlink;
publicfinalint st_uid;
publicfinalint st_gid;
publicfinallong st_rdev;
publicfinallong st_size;
publicfinallong st_atime;
publicfinallong st_mtime;
publicfinallong st_ctime;
publicfinallong st_blksize;
publicfinallong st_blocks;
public StructStat(long st_dev, long st_ino, int st_mode, long st_nlink, int st_uid, int st_gid, long st_rdev, long st_size, long st_atime, long st_mtime, long st_ctime, long st_blksize, long st_blocks) {
this.st_dev = st_dev;
this.st_ino = st_ino;
this.st_mode = st_mode;
this.st_nlink = st_nlink;
this.st_uid = st_uid;
this.st_gid = st_gid;
this.st_rdev = st_rdev;
this.st_size = st_size;
this.st_atime = st_atime;
this.st_mtime = st_mtime;
this.st_ctime = st_ctime;
this.st_blksize = st_blksize;
this.st_blocks = st_blocks;
thrownew NullPointerException();
}
}