2 """Get the connection that owns the domain that a checkpoint was created for"""
6 """Get the domain that a checkpoint was created for"""
9 def listChildren(self
, flags
=0):
10 """List all child checkpoints and returns a list of checkpoint objects"""
11 ret
= libvirtmod
.virDomainCheckpointListChildren(self
._o
, flags
)
13 raise libvirtError("virDomainCheckpointListChildren() failed", conn
=self
)
17 retlist
.append(virDomainCheckpoint(self
, _obj
=chkptr
))