Class: FuseFS::StatVFS

Inherits:
Object
  • Object
show all
Defined in:
lib/fusefs.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeStatVFS

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_bavailObject

Returns the value of attribute f_bavail.



92
93
94
# File 'lib/fusefs.rb', line 92

def f_bavail
  @f_bavail
end

#f_bfreeObject

Returns the value of attribute f_bfree.



91
92
93
# File 'lib/fusefs.rb', line 91

def f_bfree
  @f_bfree
end

#f_blocksObject

Returns the value of attribute f_blocks.



90
91
92
# File 'lib/fusefs.rb', line 90

def f_blocks
  @f_blocks
end

#f_bsizeObject

Returns the value of attribute f_bsize.



88
89
90
# File 'lib/fusefs.rb', line 88

def f_bsize
  @f_bsize
end

#f_favailObject

Returns the value of attribute f_favail.



95
96
97
# File 'lib/fusefs.rb', line 95

def f_favail
  @f_favail
end

#f_ffreeObject

Returns the value of attribute f_ffree.



94
95
96
# File 'lib/fusefs.rb', line 94

def f_ffree
  @f_ffree
end

#f_filesObject

Returns the value of attribute f_files.



93
94
95
# File 'lib/fusefs.rb', line 93

def f_files
  @f_files
end

#f_flagObject

Returns the value of attribute f_flag.



97
98
99
# File 'lib/fusefs.rb', line 97

def f_flag
  @f_flag
end

#f_frsizeObject

Returns the value of attribute f_frsize.



89
90
91
# File 'lib/fusefs.rb', line 89

def f_frsize
  @f_frsize
end

#f_fsidObject

Returns the value of attribute f_fsid.



96
97
98
# File 'lib/fusefs.rb', line 96

def f_fsid
  @f_fsid
end

#f_namemaxObject

Returns the value of attribute f_namemax.



98
99
100
# File 'lib/fusefs.rb', line 98

def f_namemax
  @f_namemax
end