Class: FuseFS::StatVFS
- Inherits:
-
Object
- Object
- FuseFS::StatVFS
- Defined in:
- lib/fusefs.rb
Instance Attribute Summary collapse
-
#f_bavail ⇒ Object
Returns the value of attribute f_bavail.
-
#f_bfree ⇒ Object
Returns the value of attribute f_bfree.
-
#f_blocks ⇒ Object
Returns the value of attribute f_blocks.
-
#f_bsize ⇒ Object
Returns the value of attribute f_bsize.
-
#f_favail ⇒ Object
Returns the value of attribute f_favail.
-
#f_ffree ⇒ Object
Returns the value of attribute f_ffree.
-
#f_files ⇒ Object
Returns the value of attribute f_files.
-
#f_flag ⇒ Object
Returns the value of attribute f_flag.
-
#f_frsize ⇒ Object
Returns the value of attribute f_frsize.
-
#f_fsid ⇒ Object
Returns the value of attribute f_fsid.
-
#f_namemax ⇒ Object
Returns the value of attribute f_namemax.
Instance Method Summary collapse
-
#initialize ⇒ StatVFS
constructor
A new instance of StatVFS.
Constructor Details
#initialize ⇒ StatVFS
Returns a new instance of StatVFS.
100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/fusefs.rb', line 100 def initialize @f_bsize = 0 @f_frsize = 0 @f_blocks = 0 @f_bfree = 0 @f_bavail = 0 @f_files = 0 @f_ffree = 0 @f_favail = 0 @f_fsid = 0 @f_flag = 0 @f_namemax = 0 end |
Instance Attribute Details
#f_bavail ⇒ Object
Returns the value of attribute f_bavail.
92 93 94 |
# File 'lib/fusefs.rb', line 92 def f_bavail @f_bavail end |
#f_bfree ⇒ Object
Returns the value of attribute f_bfree.
91 92 93 |
# File 'lib/fusefs.rb', line 91 def f_bfree @f_bfree end |
#f_blocks ⇒ Object
Returns the value of attribute f_blocks.
90 91 92 |
# File 'lib/fusefs.rb', line 90 def f_blocks @f_blocks end |
#f_bsize ⇒ Object
Returns the value of attribute f_bsize.
88 89 90 |
# File 'lib/fusefs.rb', line 88 def f_bsize @f_bsize end |
#f_favail ⇒ Object
Returns the value of attribute f_favail.
95 96 97 |
# File 'lib/fusefs.rb', line 95 def f_favail @f_favail end |
#f_ffree ⇒ Object
Returns the value of attribute f_ffree.
94 95 96 |
# File 'lib/fusefs.rb', line 94 def f_ffree @f_ffree end |
#f_files ⇒ Object
Returns the value of attribute f_files.
93 94 95 |
# File 'lib/fusefs.rb', line 93 def f_files @f_files end |
#f_flag ⇒ Object
Returns the value of attribute f_flag.
97 98 99 |
# File 'lib/fusefs.rb', line 97 def f_flag @f_flag end |
#f_frsize ⇒ Object
Returns the value of attribute f_frsize.
89 90 91 |
# File 'lib/fusefs.rb', line 89 def f_frsize @f_frsize end |
#f_fsid ⇒ Object
Returns the value of attribute f_fsid.
96 97 98 |
# File 'lib/fusefs.rb', line 96 def f_fsid @f_fsid end |
#f_namemax ⇒ Object
Returns the value of attribute f_namemax.
98 99 100 |
# File 'lib/fusefs.rb', line 98 def f_namemax @f_namemax end |