48
48
<return type='int *' info='the list of information or None in case of error'/>
49
49
<arg name='domain' type='virDomainPtr' info='a domain object'/>
51
<function name='virDomainGetBlockInfo' file='python'>
52
<info>Extract information about a domain block device size</info>
53
<return type='int *' info='the list of information or None in case of error'/>
54
<arg name='domain' type='virDomainPtr' info='a domain object'/>
55
<arg name='path' type='const char *' info='path to the block device or file'/>
56
<arg name='flags' type='unsigned int' info='currently unused'/>
51
58
<function name='virDomainGetJobInfo' file='python'>
52
59
<info>Extract information about an active job being processed for a domain.</info>
53
60
<return type='int *' info='the list of information or None in case of error'/>
226
233
<return type='char *' info='the UUID string or None in case of error'/>
227
234
<arg name='secret' type='virSecretPtr' info='a secret object'/>
236
<function name='virConnectListNWFilters' file='libvirt' module='libvirt'>
237
<info>List the defined network filters</info>
238
<arg name='conn' type='virConnectPtr' info='virConnect connection'/>
239
<return type='str *' info='the list of network filter IDs or None in case of error'/>
241
<function name='virNWFilterLookupByUUID' file='python'>
242
<info>Try to lookup a network filter on the given hypervisor based on its UUID.</info>
243
<return type='virNWFilterPtr' info='a new network filter object or NULL in case of failure'/>
244
<arg name='conn' type='virConnectPtr' info='pointer to the hypervisor connection'/>
245
<arg name='uuid' type='const unsigned char *' info='the UUID string for the secret, must be 16 bytes'/>
247
<function name='virNWFilterGetUUID' file='python'>
248
<info>Extract the UUID unique Identifier of a network filter.</info>
249
<return type='char *' info='the 16 bytes string or None in case of error'/>
250
<arg name='nwfilter' type='virNWFilterPtr' info='a network filter object'/>
252
<function name='virNWFilterGetUUIDString' file='python'>
253
<info>Fetch globally unique ID of the network filter as a string.</info>
254
<return type='char *' info='the UUID string or None in case of error'/>
255
<arg name='nwfilter' type='virNWFilterPtr' info='a network filter object'/>
229
257
<function name='virConnectListInterfaces' file='python'>
230
258
<info>list the running interfaces, stores the pointers to the names in @names</info>
231
259
<arg name='conn' type='virConnectPtr' info='pointer to the hypervisor connection'/>
243
271
<arg name='xmlCPUs' type='const char **' info='array of XML descriptions of host CPUs'/>
244
272
<arg name='flags' type='unsigned int' info='fine-tuning flags, currently unused, pass 0.'/>
274
<function name='virDomainSnapshotListNames' file='python'>
275
<info>collect the list of snapshots for the given domain</info>
276
<arg name='dom' type='virDomainPtr' info='pointer to the domain'/>
277
<arg name='flags' type='unsigned int' info='flags, curently unused'/>
278
<return type='str *' info='the list of Names of None in case of error'/>