java.lang.Object | |
↳ | android.system.StructStatVfs |
File information returned by fstatvfs(FileDescriptor)
and statvfs(String)
.
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
f_bavail | Free block count available to non-root. | ||||||||||
f_bfree | Free block count. | ||||||||||
f_blocks | Total block count. | ||||||||||
f_bsize | File system block size (used for block counts). | ||||||||||
f_favail | Free file (inode) count available to non-root. | ||||||||||
f_ffree | Free file (inode) count. | ||||||||||
f_files | Total file (inode) count. | ||||||||||
f_flag | Bit mask of ST_* flags. | ||||||||||
f_frsize | Fundamental file system block size. | ||||||||||
f_fsid | File system id. | ||||||||||
f_namemax | Maximum filename length. |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Constructs an instance with the given field values.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns a string containing a concise, human-readable description of this
object.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Constructs an instance with the given field values.
Returns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:
getClass().getName() + '@' + Integer.toHexString(hashCode())
See Writing a useful
toString
method
if you intend implementing your own toString
method.