1 def listAllChildren(self
, flags
):
2 """List all child snapshots and returns a list of snapshot objects"""
3 ret
= libvirtmod
.virDomainSnapshotListAllChildren(self
._o
, flags
)
5 raise libvirtError("virDomainSnapshotListAllChildren() failed", conn
=self
)
9 retlist
.append(virDomainSnapshot(self
, _obj
=snapptr
))