1 def listAllVolumes(self
, flags
=0):
2 """List all storage volumes and returns a list of storage volume objects"""
3 ret
= libvirtmod
.virStoragePoolListAllVolumes(self
._o
, flags
)
5 raise libvirtError("virStoragePoolListAllVolumes() failed", conn
=self
)
9 retlist
.append(virStorageVol(self
, _obj
=volptr
))