(self)
| 151 | return long(util.get_xml_path(self._XMLDesc(0), "/pool/capacity")) |
| 152 | |
| 153 | def get_pretty_allocation(self): |
| 154 | return util.pretty_bytes(self.get_allocation()) |
| 155 | |
| 156 | def get_pretty_available(self): |
| 157 | return util.pretty_bytes(self.get_available()) |
nothing calls this directly
no test coverage detected