Codebase list libvirt-glib / upstream/0.1.9
New upstream version 0.1.9 Guido Günther 9 years ago
299 changed file(s) with 41101 addition(s) and 12657 deletion(s). Raw diff Collapse all Expand all
1212 Alexander Larsson <alexl@redhat.com>
1313 Christophe Fergeau <cfergeau@redhat.com>
1414 Claudio Bley <cbley@av-test.de>
15 Cédric Bosdonnat <cbosdonnat@suse.com>
1516 Daniel P. Berrange <berrange@redhat.com>
1617 Guido Günther <agx@sigxcpu.org>
18 Ian Main <imain@redhat.com>
1719 Jovanka Gulicoska <jovanka.gulicoska@gmail.com>
1820 Marc-André Lureau <marcandre.lureau@redhat.com>
21 Michael Catanzaro <mcatanzaro@gnome.org>
1922 Michal Privoznik <mprivozn@redhat.com>
2023 Nirbheek Chauhan <nirbheek@gentoo.org>
24 Pavel Hrdina <phrdina@redhat.com>
2125 Stefano Facchini <stefano.facchini@gmail.com>
26 Timm Bäder <mail@baedert.org>
2227 Timo Juhani Lindfors <timo.lindfors@iki.fi>
2328 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
2429
0 2014-08-20 Daniel P. Berrange <berrange@redhat.com>
1
2 Update NEWS for 0.1.9 release
3
4 Refresh translations from transifex
5
6 2014-08-20 Timm Bäder <mail@baedert.org>
7
8 GVirDomainSnapshot: Add async version of _delete
9
10 GVirDomain: Add async version of _create_snapshot
11
12 GVirDomainSnapshot: Add async version of _revert_to
13
14 GVirDomain: Fix some doc comments of the snapshot API
15 Fixes the following warnings from g-ir-scanner and some cosmetic issues:
16
17 libvirt-gobject-domain.c:1532: Warning: LibvirtGObject: unknown
18 annotation: transfer-none
19 libvirt-gobject-domain.c:1650: Error: LibvirtGObject: identifier not
20 found on the first line:
21 *
22 ^
23
24 GVirDomain: Add _get_has_current_snapshot
25 ... which uses virDomainHasCurrentSnapshot to determine if the given
26 domain has a current snapshot or not.
27
28 GVirDomainSnapshot: Add _set_config
29 ... which is basically analogous to gvir_domain_set_config
30
31 GVirDomainSnapshot: Add _revert_to
32 Add a way to revert a domain to one of its snapshots.
33
34 GVirDomainSnapshot: Add _get_is_current
35 Add a way to determine if the given GVirDomainSnapshot is the current
36 snapshot of its GVirDomain.
37
38 2014-08-04 Timm Bäder <mail@baedert.org>
39
40 GVirDomain: Add async version of _fetch_snapshots
41
42 libvirt-gobject-domain: Add _get_snapshots
43 ... which returns a GList of GVirDomainSnapshots, i.e. without any tree
44 structure or other relationship between the snapshots.
45
46 libvirt-gobject-domain: Add _fetch_snapshots
47 This function can be used to fetch the snapshots of a domain (according
48 to the given GVirDomainSnapshotListFlags) and save them in a
49 domain-internal GHashTable. A function to access them from outside will
50 be added in a later patch.
51
52 2014-08-04 Christophe Fergeau <cfergeau@redhat.com>
53
54 spec: Substitute minimum glib2 version from configure.ac
55 This way we don't have to keep track of the minimum glib2 version we
56 need in 2 separate places.
57
58 gobject: Fix GEnum generation through glib-mkenums
59 We were only passing libvirt-gobject-domain.h and
60 libvirt-gobject-connection.h through glib-mkenums, which causes it to
61 only generate GEnum information for enums found in these headers.
62 We want to do that for all enums defined in installed headers, so
63 passing all headers listed in libvirt_gobject_1_0_la_HEADERS is more
64 appropriate.
65
66 2014-08-01 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
67
68 Add gvir_config_domain_cpu_set_model()
69 Add a method to set model of domain CPU.
70
71 Add GVirConfigDomainCpuModel class
72 Add a class to represent 'model' node under domain/cpu.
73
74 Add gvir_config_capabilities_cpu_get_model()
75 Add a method to get the model of the CPU from capabilities.
76
77 2014-07-15 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
78
79 Add GVirConfigCapabilitiesCpuModel class
80 Add a class to represent 'model' node under capabilities/host/cpu.
81
82 2014-06-17 Cédric Bosdonnat <cbosdonnat@suse.com>
83
84 Add API to get security models from host capabilities
85
86 2014-06-04 Michael Catanzaro <mcatanzaro@gnome.org>
87
88 build: fix race in vapi/ subdirectory
89 libvirt-gobject-1.0.vapi depends on libvirt-gconfig-1.0.vapi
90
91 2014-06-04 Christophe Fergeau <cfergeau@redhat.com>
92
93 spec: Move .vapi files to -devel RPMs
94 .vapi files are only needed when building vala programs using
95 libvirt-glib, so they belong to the -devel RPMs, not to the non-devel
96 RPMs which only hold files needed at runtime.
97
98 2014-06-03 Timm Bäder <mail@baedert.org>
99
100 GVirDomainSnapshot: Add gvir_domain_snapshot_delete
101
102 Remove #if 0's from libvirt-gobject-domain-snapshot
103 The code seems to be fine.
104
105 2014-06-03 Christophe Fergeau <cfergeau@redhat.com>
106
107 tests: Fix make distcheck
108 Some files are missing from EXTRA_DIST, causing make distcheck to fail
109 when tests are enabled.
110
111 tests: Move EXTRA_DIST back into ENABLE_TESTS conditional
112 When deciding which files to put into the make dist tarball, automake is
113 clever enough to ignore conditional blocks, and to pick all files which are
114 needed for all values of the conditional.
115
116 Having EXTRA_DIST=xxx at the beginning of tests/Makefile.am causes
117 warnings from automake when ENABLE_TESTS is true as glib-tap.mk will
118 unconditionally empty it.
119
120 Keeping EXTRA_DIST+=xxx outside of the ENABLE_TESTS conditional would
121 cause a different warning from automake when ENABLE_TESTS is false as
122 we'd be appending to a variable which was never set.
123
124 Moving EXTRA_DIST+= back into the conditional solves these 2 warnings.
125
126 2014-05-16 Marc-André Lureau <marcandre.lureau@gmail.com>
127
128 tests: test spiceport chardev
129
130 gconfig: add spiceport chardev
131
132 2014-05-12 Timm Bäder <mail@baedert.org>
133
134 domain-device-private: fix typo in header guard
135
136 2014-02-21 Daniel P. Berrange <berrange@redhat.com>
137
138 Post release version bump to 0.1.9
139
140 Update NEWS for 0.1.8 release
141
142 Disable test suite unless glib >= 2.38
143 The TAP harness for glib only works with version 2.38 or later,
144 so must be disabled for earlier versions
145
146 2014-02-20 Pavel Hrdina <phrdina@redhat.com>
147
148 gobject-stream: fix issue found by coverity
149 The coverity server found issue in gvir_stream_close function that
150 we ignore return values of g_input_stream_close and
151 g_output_stream_close, but we also ignore the error message and we
152 assume that it's closed without error.
153
154 Now we will check return values and also propagate the error message
155 to the upper layers. We should try to close both streams even if
156 closing the first one will fails. We can propagate only one error
157 message.
158
159 2014-02-14 Daniel P. Berrange <berrange@redhat.com>
160
161 Avoid false positive in diagnostic check against tap-driver.sh
162
163 Add <config.h> to test cases
164
165 Remove doubled 'on on' word in tap-driver.sh
166
167 Don't mandate test files to call bindtextdomain
168
169 Fix symfile checks in VPATH build
170 The check-symfile and check-symsorting rules were not
171 taking $(srcdir) into account when accessing the symfile
172 paths.
173
174 2014-02-04 Christophe Fergeau <cfergeau@redhat.com>
175
176 build-sys: Update .gitignore
177
178 glib: Add unit test for libvirt/glib mainloop integration
179 It's currently only testing removal of disabled timer/watches
180
181 gconfig: Start adding more formal unit tests
182 Rather than the ever growing standalone libvirt-gconfig/tests/test-domain-create
183 program, this commit adds support for glib GTester framework as well as 2
184 smaller tests cases for GVirConfigDomain and GVirConfigDomainClock.
185
186 glib: Don't leak GIOChannel when destroying IO handle
187 gvir_event_handle_add() creates a GIOChannel in order to watch the fd it
188 was given for changes.
189 gvir_event_handle_remove() is freeing all the resources allocated by
190 gvir_event_handle_add() except for this GIOChannel. This commit adds
191 the needed g_io_channel_unref() call to gvir_event_handle_remove()
192
193 glib: Allow to remove disabled timers and handles
194 Trying to remove a disabled timer or handle will cause
195 gvir_{event,timer}_handle_remove() to return an error
196 rather than removing it.
197
198 glib: Don't create glib IO watch for disabled handles
199 It's possible to create a handle to watch for file events which do not
200 watch for any file event. Such a handle can be enabled later with
201 gvir_event_handle_update() by setting some conditions to watch for.
202
203 When a handle is disabled after it has been created,
204 gvir_event_handle_update() makes sure it removes the corresponding
205 gvir_event_handle::source IO watch if any was set.
206 gvir_event_handle_add() will always create a gvir_event_handle::source
207 IO watch even if the handle is not watching for any events.
208
209 This commit makes consistent by only creating a watch with g_io_add_watch()
210 when the caller asked to watch for some events.
211
212 gconfig: Fix removal of GVirConfigDomainCpu from domains
213 A wrong precondition in gvir_config_domain_set_cpu() would reject NULL
214 GVirConfigDomainCpus instead of accepting them.
215
216 gconfig: Fix removal of GVirConfigCapabilitiesCpu topology
217 Calling gvir_config_capabilities_cpu_set_topology with a NULL topology
218 would not remove the topology as expected as NULL would be rejected by
219 this method preconditions.
220
221 gconfig: Implement getters for GVirConfigDomainInput
222
223 gconfig: Add various clock-related getters
224
225 gconfig: Adjust transfer annotation for gvir_config_domain_os_get_boot_devices()
226 (transfer container) is more correct than (transfer full) for GList of
227 scalar values, it's not clear whether it's an issue or not, but better be
228 safe than sorry.
229
230 gconfig: Fix gvir_config_domain_os_get_boot_devices() API doc
231 The elements of the returned list are integer enum values, so they cannot
232 be unreffed.
233
234 gconfig: Fix GVirConfigDomainTimerPit parent class/object
235 GVirConfigDomainTimerPit is correctly define as inheriting from
236 GVirConfigDomainTimer in the G_DEFINE_TYPE macro, but it only
237 embeds GVirConfigObject/GVirConfigObjectClass structs.
238
239 This is an ABI break as this changes the size of the
240 GVirConfigDomainTimerPit/GVirConfigDomainTimerPitClass structs
241 However, since these structs only have non-public members, users of the
242 library will not be trying to access fields of the struct past the first
243 field (which is the one which changed size). This would also be an issue
244 if anything had subclassed GVirConfigDomainTimerPit, which is unlikely at
245 this point.
246 All in all, it's imo more convenient to silently fix this without an soname
247 bump. I've tested that GNOME Boxes built with an older version of
248 libvirt-gconfig still generates the correct GVirConfigDomainTimerPit
249 elements when using a version of libvirt-gconfig with this patch.
250
251 2014-01-28 Daniel P. Berrange <berrange@redhat.com>
252
253 Fix event loop implementation on win32
254 Libvirt uses gnulib for making winsock look like POSIX
255 sockets. This means that in the libvirt event handle
256 callbacks the application will be given a file descriptor
257 rather than a winsock HANDLE object. The g_io_channel_unix_new
258 method will detect that it is an FD and delegate to the
259 g_io_channel_win32_new_fd method. Unfortunately the glib Win32
260 event loop impl is not very good at dealing with FD objects,
261 simulating poll() by doing a read() on the FD :-(
262
263 The API docs for g_io_channel_win32_new_fd say
264
265 "All reads from the file descriptor should be done by
266 this internal GLib thread. Your code should call only
267 g_io_channel_read()."
268
269 This isn't going to fly for libvirt, since it has zero
270 knowledge of glib at all, so is just doing normal read().
271
272 Fortunately we can work around this problem by turning
273 the FD we get from libvirt back into a HANDLE using the
274 _get_osfhandle() method.
275
276 2014-01-21 Christophe Fergeau <cfergeau@redhat.com>
277
278 Add GVirConfigDomainTimerHpet
279 This will be needed in order to solve
280 https://bugzilla.gnome.org/show_bug.cgi?id=722293
281
282 Add gvir_config_domain_timer_[gs]et_present()
283
284 Add getters for some GVirConfigDomainGraphics* attributes
285 Now that there is a gvir_config_object_get_attribute_boolean(), these
286 are trivial to implement.
287
288 Implement gvir_config_object_get_attribute_boolean()
289 gvir_config_object_set_attribute() converts (TRUE, FALSE) to ("yes", "no"),
290 but we don't have the corresponding getter. This commit adds this.
291
292 Add scripts for validating the libvirt-glib symbol files
293 Import two test scripts from libvirt code which validate that
294 all symbols in libvirt-glib symbol files exist in the ELF binary, and also
295 validate the alphabetical sorting. These are hooked up to run with 'make
296 check'.
297
298 This commit is based on a libosinfo patch from Daniel P. Berrange
299
300 Fix typo in symbol name in libvirt-gobject.sym
301 gvir_connection_restore_domain_from_file_finish was not properly exported
302 because of a typo in the symbol name.
303 This commit also removes a newer occurrence of this symbol in the file
304 (without the typo). This can be done without breaking ABI as we haven't
305 made a release since this duplicate symbol was added in the symbol file.
306
307 Remove gvir_config_domain_cpu_get_features() from sym file
308 This method was never exported. GVirConfigDomainCpu inherits from
309 GVirConfigCapabilitiesCpu so gvir_config_capabilities_cpu_get_features()
310 should be used to get these features (this calls the virtual method
311 GVirConfigCapabilities::get_features() which GVirConfigDomainCpu
312 implements).
313
314 Alphabetically sort libvirt-glib sym files
315 This is in preparation to enforcing this sorting during make check.
316 The script only checks for alphabetical sorting, which leads to unexpected
317 sorting between classes sharing a common prefix (eg the correct order is:
318 gvir_config_domain_get_foo;
319 gvir_config_domain_interface_set_foo;
320 gvir_config_domain_set_foo;
321
322 instead of
323
324 gvir_config_domain_get_foo;
325 gvir_config_domain_set_foo;
326 gvir_config_domain_interface_set_foo;
327
328 if we want to keep methods from the same class grouped in the symbol file.
329
330 Add basic test for gvir_config_domain_disk_driver_set_copy_on_read()
331
332 Deprecate gvir_config_domain_disk_[gs]et_driver_*
333 They are replaced by equivalent methods in GVirConfigDomainDiskDriver.
334 Initially, we had only one or two attributes to set on the 'driver' child
335 of the 'disk' node. Nowadays, we more than 5 attributes to set on this
336 node, mapping it as a separate object is more consistent with the rest of
337 libvirt-gconfig API.
338
339 Implement gvir_config_domain_disk_[gs]et_driver()
340
341 Add GVirConfigDomainDiskDriver
342 This class wraps creation of configuration data for the driver part of a
343 domain disk device. The methods needed for this are currently part of
344 GVirConfigDomainDisk, but since the disk driver is getting more and more
345 attributes, it's better to move such configuration to a dedicated class to
346 avoid a too big API in GVirConfigDomainDisk
347
348 config: Fix typo preventing clock removal from a domain
349 Commit 1c8ce29 added a way to unset a GVirConfigDomainClock set on a
350 GVirConfigDomain by calling gvir_config_domain_set_clock() with a NULL
351 argument.
352 However, a typo in a g_return_if_fail precondition prevents this code from
353 ever being called: g_return_if_fail(clock != NULL) is used while it should
354 have been g_return_if_fail(clock == NULL) as in all other preconditions in
355 1c8ce29.
356
357 2014-01-21 Daniel P. Berrange <berrange@redhat.com>
358
359 Switch over to using standard gobject introspection macros
360 Remove hand crafted configure.ac and Makefile.am rules in
361 favour of the standard macros.
362
363 2013-10-31 Ian Main <imain@redhat.com>
364
365 Quick fix for config-demo.py
366 I guess this must have been changed and the demo not updated. Fix the
367 demo so it uses the right value.
368
369 Add filterref and filterref parameter support.
370 This patch adds support for setting filterref's on interfaces. Also
371 supported are parameters to the filterref's.
372
373 2013-09-27 Christophe Fergeau <cfergeau@redhat.com>
374
375 Use latest warnings.m4 from gnulib
376 The one we were using does not work properly with clang, causing
377 the build process to try to use -f/-W options that are not
378 supported by clang.
379
380 2013-09-19 Daniel P. Berrange <berrange@redhat.com>
381
382 Add intltool as a build req in mingw RPM
383
384 2013-08-28 Christophe Fergeau <cfergeau@redhat.com>
385
386 Add missing symbols to .sym files
387 These symbols are in public headers, but were not listed in the
388 corresponding .sym file, causing them to be unavailable from
389 the resulting shared library.
390 I would have preferred not to export gvir_config_object_new_from_xml()
391 at all, but since the similar gvir_config_object_new() is already exported,
392 I've chosen to export it as well.
393
394 2013-08-19 Daniel P. Berrange <berrange@redhat.com>
395
396 Remove unused 'gint i' variable from list helpers
397 The previous change made the 'gint i' variable unused.
398
399 2013-08-15 Daniel P. Berrange <berrange@redhat.com>
400
401 Remove dead cleanup code in object fetch_list helpers
402 The fetch_list helper cleanup code iterates over the
403 elements in 'lst' array free'ing each one. This is dead
404 code, however, since the only way to get there is from
405 codepaths which do not populate 'lst' elements.
406
407 This fixes two coverity DEADCODE reports
408
409 2013-07-09 Daniel P. Berrange <berrange@redhat.com>
410
411 Refresh translations from transifex
412
413 Post-release version bump to 0.1.8
414
415 Add support for reading/writing UUID attribute in domain config
416
0417 2013-07-08 Daniel P. Berrange <berrange@redhat.com>
1418
2419 Update NEWS for 0.1.7 release
00
1 SUBDIRS = libvirt-glib libvirt-gconfig libvirt-gobject python vapi examples docs po
1 SUBDIRS = libvirt-glib libvirt-gconfig libvirt-gobject python vapi examples docs po tests
22
33 ACLOCAL_AMFLAGS = -I m4
44
1313 maint.mk \
1414 cfg.mk \
1515 AUTHORS.in \
16 build-aux/check-symfile.pl \
17 build-aux/check-symsorting.pl \
18 tap-driver.sh \
19 tap-test \
1620 $(NULL)
1721
1822 DISTCLEAN_FILES = $(PACKAGE).spec $(pkgconfig_DATA)
0 # Makefile.in generated by automake 1.13.2 from Makefile.am.
0 # Makefile.in generated by automake 1.13.4 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
9595 $(top_srcdir)/build-aux/ltmain.sh \
9696 $(top_srcdir)/build-aux/missing
9797 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
98 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
99 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
100 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
101 $(top_srcdir)/m4/lt~obsolete.m4 \
98 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
99 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
100 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
101 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
102102 $(top_srcdir)/m4/manywarnings.m4 \
103103 $(top_srcdir)/m4/virt-compile-warnings.m4 \
104104 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
280280 GIO2_LIBS = @GIO2_LIBS@
281281 GLIB2_CFLAGS = @GLIB2_CFLAGS@
282282 GLIB2_LIBS = @GLIB2_LIBS@
283 GLIB2_REQUIRED = @GLIB2_REQUIRED@
283284 GLIB_MKENUMS = @GLIB_MKENUMS@
284285 GMSGFMT = @GMSGFMT@
285286 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
286287 GOBJECT2_LIBS = @GOBJECT2_LIBS@
287 GOBJECT_INTROSPECTION_CFLAGS = @GOBJECT_INTROSPECTION_CFLAGS@
288 GOBJECT_INTROSPECTION_LIBS = @GOBJECT_INTROSPECTION_LIBS@
289288 GREP = @GREP@
290289 GTHREAD2_CFLAGS = @GTHREAD2_CFLAGS@
291290 GTHREAD2_LIBS = @GTHREAD2_LIBS@
292291 GTKDOC_CHECK = @GTKDOC_CHECK@
292 GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
293293 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
294294 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
295295 GTKDOC_MKPDF = @GTKDOC_MKPDF@
296296 GTKDOC_REBASE = @GTKDOC_REBASE@
297 G_IR_COMPILER = @G_IR_COMPILER@
298 G_IR_SCANNER = @G_IR_SCANNER@
299297 HTML_DIR = @HTML_DIR@
300298 INSTALL = @INSTALL@
301299 INSTALL_DATA = @INSTALL_DATA@
310308 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
311309 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
312310 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
311 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
312 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
313 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
314 INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
315 INTROSPECTION_LIBS = @INTROSPECTION_LIBS@
316 INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@
317 INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
318 INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
313319 LD = @LD@
314320 LDFLAGS = @LDFLAGS@
315321 LIBOBJS = @LIBOBJS@
400406 includedir = @includedir@
401407 infodir = @infodir@
402408 install_sh = @install_sh@
409 installed_test_metadir = @installed_test_metadir@
410 installed_testdir = @installed_testdir@
403411 intltool__v_merge_options_ = @intltool__v_merge_options_@
404412 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
405413 libdir = @libdir@
422430 top_build_prefix = @top_build_prefix@
423431 top_builddir = @top_builddir@
424432 top_srcdir = @top_srcdir@
425 SUBDIRS = libvirt-glib libvirt-gconfig libvirt-gobject python vapi examples docs po
433 SUBDIRS = libvirt-glib libvirt-gconfig libvirt-gobject python vapi examples docs po tests
426434 ACLOCAL_AMFLAGS = -I m4
427435 pkgconfigdir = $(libdir)/pkgconfig
428436 pkgconfig_DATA = libvirt-glib-1.0.pc libvirt-gconfig-1.0.pc libvirt-gobject-1.0.pc
434442 maint.mk \
435443 cfg.mk \
436444 AUTHORS.in \
445 build-aux/check-symfile.pl \
446 build-aux/check-symsorting.pl \
447 tap-driver.sh \
448 tap-test \
437449 $(NULL)
438450
439451 DISTCLEAN_FILES = $(PACKAGE).spec $(pkgconfig_DATA)
00 libvirt-glib News
11 =================
2
3 0.1.9 - Aug 20, 2014
4 ====================
5
6 - Require glib2 >= 2.36.0
7 - Add support for spiceport chardev
8 - Misc fixes to build system
9 - Fix ref counting of snapshot devices
10 - Add API for deleting snapshots
11 - Fix RPM layout for vala files
12 - Fix race in build of vala code
13 - Add API for getting security models
14 - Add classes for dealing with CPU models
15 - Fix enum generation
16 - Add API for fetching snapshots
17
18 0.1.8 - Feb 21, 2014
19 ====================
20
21 - Add getter/setter for UUID in domain config
22 - Remove dead code / unused variables
23 - Add missing symbol exports
24 - Add support for setting nwfilters in domain config
25 - Switch to standard gobject introspection autotools macros
26 - Fix typo preventing removal of clock config
27 - Add getter/setters for disk driver type
28 - Add unit tests based on glib tap harness
29 - Add test for validating symbol file exports
30 - Add getters for domain graphics config params
31 - Add more getters for domain timer config
32 - Add support for hpet timer type
33 - Fix event loop impl on win32
34 - Fix parent class/object of pit timer class
35 - Fix misc API doc bugs
36 - Add more getters for domain clock config
37 - Fix removal of domain CPU feature flags
38 - Fix removal of capabilities CPU topology
39 - Misc fixes to glib event loop integration
240
341 0.1.7 - Jul 8, 2013
442 ====================
0 # generated automatically by aclocal 1.13.2 -*- Autoconf -*-
0 # generated automatically by aclocal 1.13.4 -*- Autoconf -*-
11
22 # Copyright (C) 1996-2013 Free Software Foundation, Inc.
33
2121
2222 dnl -*- mode: autoconf -*-
2323
24 # serial 1
24 # serial 2
2525
2626 dnl Usage:
2727 dnl GTK_DOC_CHECK([minimum-gtk-doc-version])
3131 AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
3232 AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
3333
34 ifelse([$1],[],[gtk_doc_requires="gtk-doc"],[gtk_doc_requires="gtk-doc >= $1"])
35 AC_MSG_CHECKING([for gtk-doc])
36 PKG_CHECK_EXISTS([$gtk_doc_requires],[have_gtk_doc=yes],[have_gtk_doc=no])
37 AC_MSG_RESULT($have_gtk_doc)
38
39 if test "$have_gtk_doc" = "no"; then
40 AC_MSG_WARN([
41 You will not be able to create source packages with 'make dist'
42 because $gtk_doc_requires is not found.])
43 fi
44
3445 dnl check for tools we added during development
35 AC_PATH_PROG([GTKDOC_CHECK],[gtkdoc-check])
46 dnl Use AC_CHECK_PROG to avoid the check target using an absolute path that
47 dnl may not be writable by the user. Currently, automake requires that the
48 dnl test name must end in '.test'.
49 dnl https://bugzilla.gnome.org/show_bug.cgi?id=701638
50 AC_CHECK_PROG([GTKDOC_CHECK],[gtkdoc-check],[gtkdoc-check.test])
51 AC_PATH_PROG([GTKDOC_CHECK_PATH],[gtkdoc-check])
3652 AC_PATH_PROGS([GTKDOC_REBASE],[gtkdoc-rebase],[true])
3753 AC_PATH_PROG([GTKDOC_MKPDF],[gtkdoc-mkpdf])
3854
4965 [use gtk-doc to build documentation [[default=no]]]),,
5066 [enable_gtk_doc=no])
5167
52 if test x$enable_gtk_doc = xyes; then
53 ifelse([$1],[],
54 [PKG_CHECK_EXISTS([gtk-doc],,
55 AC_MSG_ERROR([gtk-doc not installed and --enable-gtk-doc requested]))],
56 [PKG_CHECK_EXISTS([gtk-doc >= $1],,
57 AC_MSG_ERROR([You need to have gtk-doc >= $1 installed to build $PACKAGE_NAME]))])
58 dnl don't check for glib if we build glib
59 if test "x$PACKAGE_NAME" != "xglib"; then
60 dnl don't fail if someone does not have glib
61 PKG_CHECK_MODULES(GTKDOC_DEPS, glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0,,[:])
62 fi
63 fi
64
6568 AC_MSG_CHECKING([whether to build gtk-doc documentation])
6669 AC_MSG_RESULT($enable_gtk_doc)
70
71 if test "x$enable_gtk_doc" = "xyes" && test "$have_gtk_doc" = "no"; then
72 AC_MSG_ERROR([
73 You must have $gtk_doc_requires installed to build documentation for
74 $PACKAGE_NAME. Please install gtk-doc or disable building the
75 documentation by adding '--disable-gtk-doc' to '[$]0'.])
76 fi
77
78 dnl don't check for glib if we build glib
79 if test "x$PACKAGE_NAME" != "xglib"; then
80 dnl don't fail if someone does not have glib
81 PKG_CHECK_MODULES(GTKDOC_DEPS, glib-2.0 >= 2.10.0 gobject-2.0 >= 2.10.0,,[:])
82 fi
6783
6884 dnl enable/disable output formats
6985 AC_ARG_ENABLE([gtk-doc-html],
84100 fi
85101 AC_SUBST([AM_DEFAULT_VERBOSITY])
86102
103 AM_CONDITIONAL([HAVE_GTK_DOC], [test x$have_gtk_doc = xyes])
87104 AM_CONDITIONAL([ENABLE_GTK_DOC], [test x$enable_gtk_doc = xyes])
88105 AM_CONDITIONAL([GTK_DOC_BUILD_HTML], [test x$enable_gtk_doc_html = xyes])
89106 AM_CONDITIONAL([GTK_DOC_BUILD_PDF], [test x$enable_gtk_doc_pdf = xyes])
90107 AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [test -n "$LIBTOOL"])
91108 AM_CONDITIONAL([GTK_DOC_USE_REBASE], [test -n "$GTKDOC_REBASE"])
109 ])
110
111 dnl -*- mode: autoconf -*-
112 dnl Copyright 2009 Johan Dahlin
113 dnl
114 dnl This file is free software; the author(s) gives unlimited
115 dnl permission to copy and/or distribute it, with or without
116 dnl modifications, as long as this notice is preserved.
117 dnl
118
119 # serial 1
120
121 m4_define([_GOBJECT_INTROSPECTION_CHECK_INTERNAL],
122 [
123 AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
124 AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
125 AC_BEFORE([LT_INIT],[$0])dnl setup libtool first
126
127 dnl enable/disable introspection
128 m4_if([$2], [require],
129 [dnl
130 enable_introspection=yes
131 ],[dnl
132 AC_ARG_ENABLE(introspection,
133 AS_HELP_STRING([--enable-introspection[=@<:@no/auto/yes@:>@]],
134 [Enable introspection for this build]),,
135 [enable_introspection=auto])
136 ])dnl
137
138 AC_MSG_CHECKING([for gobject-introspection])
139
140 dnl presence/version checking
141 AS_CASE([$enable_introspection],
142 [no], [dnl
143 found_introspection="no (disabled, use --enable-introspection to enable)"
144 ],dnl
145 [yes],[dnl
146 PKG_CHECK_EXISTS([gobject-introspection-1.0],,
147 AC_MSG_ERROR([gobject-introspection-1.0 is not installed]))
148 PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1],
149 found_introspection=yes,
150 AC_MSG_ERROR([You need to have gobject-introspection >= $1 installed to build AC_PACKAGE_NAME]))
151 ],dnl
152 [auto],[dnl
153 PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1], found_introspection=yes, found_introspection=no)
154 dnl Canonicalize enable_introspection
155 enable_introspection=$found_introspection
156 ],dnl
157 [dnl
158 AC_MSG_ERROR([invalid argument passed to --enable-introspection, should be one of @<:@no/auto/yes@:>@])
159 ])dnl
160
161 AC_MSG_RESULT([$found_introspection])
162
163 INTROSPECTION_SCANNER=
164 INTROSPECTION_COMPILER=
165 INTROSPECTION_GENERATE=
166 INTROSPECTION_GIRDIR=
167 INTROSPECTION_TYPELIBDIR=
168 if test "x$found_introspection" = "xyes"; then
169 INTROSPECTION_SCANNER=`$PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0`
170 INTROSPECTION_COMPILER=`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0`
171 INTROSPECTION_GENERATE=`$PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0`
172 INTROSPECTION_GIRDIR=`$PKG_CONFIG --variable=girdir gobject-introspection-1.0`
173 INTROSPECTION_TYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)"
174 INTROSPECTION_CFLAGS=`$PKG_CONFIG --cflags gobject-introspection-1.0`
175 INTROSPECTION_LIBS=`$PKG_CONFIG --libs gobject-introspection-1.0`
176 INTROSPECTION_MAKEFILE=`$PKG_CONFIG --variable=datadir gobject-introspection-1.0`/gobject-introspection-1.0/Makefile.introspection
177 fi
178 AC_SUBST(INTROSPECTION_SCANNER)
179 AC_SUBST(INTROSPECTION_COMPILER)
180 AC_SUBST(INTROSPECTION_GENERATE)
181 AC_SUBST(INTROSPECTION_GIRDIR)
182 AC_SUBST(INTROSPECTION_TYPELIBDIR)
183 AC_SUBST(INTROSPECTION_CFLAGS)
184 AC_SUBST(INTROSPECTION_LIBS)
185 AC_SUBST(INTROSPECTION_MAKEFILE)
186
187 AM_CONDITIONAL(HAVE_INTROSPECTION, test "x$found_introspection" = "xyes")
188 ])
189
190
191 dnl Usage:
192 dnl GOBJECT_INTROSPECTION_CHECK([minimum-g-i-version])
193
194 AC_DEFUN([GOBJECT_INTROSPECTION_CHECK],
195 [
196 _GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1])
197 ])
198
199 dnl Usage:
200 dnl GOBJECT_INTROSPECTION_REQUIRE([minimum-g-i-version])
201
202
203 AC_DEFUN([GOBJECT_INTROSPECTION_REQUIRE],
204 [
205 _GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1], [require])
92206 ])
93207
94208 # nls.m4 serial 5 (gettext-0.18)
324438 m4_popdef([pkg_description])
325439 ]) dnl PKG_NOARCH_INSTALLDIR
326440
441
442 # PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
443 # [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
444 # -------------------------------------------
445 # Retrieves the value of the pkg-config variable for the given module.
446 AC_DEFUN([PKG_CHECK_VAR],
447 [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
448 AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
449
450 _PKG_CONFIG([$1], [variable="][$3]["], [$2])
451 AS_VAR_COPY([$1], [pkg_cv_][$1])
452
453 AS_VAR_IF([$1], [""], [$5], [$4])dnl
454 ])# PKG_CHECK_VAR
455
327456 # Copyright (C) 2002-2013 Free Software Foundation, Inc.
328457 #
329458 # This file is free software; the Free Software Foundation
339468 [am__api_version='1.13'
340469 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
341470 dnl require some minimum version. Point them to the right macro.
342 m4_if([$1], [1.13.2], [],
471 m4_if([$1], [1.13.4], [],
343472 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
344473 ])
345474
355484 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
356485 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
357486 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
358 [AM_AUTOMAKE_VERSION([1.13.2])dnl
487 [AM_AUTOMAKE_VERSION([1.13.4])dnl
359488 m4_ifndef([AC_AUTOCONF_VERSION],
360489 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
361490 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
13731502 AC_SUBST([am__untar])
13741503 ]) # _AM_PROG_TAR
13751504
1505 m4_include([m4/glibtests.m4])
13761506 m4_include([m4/intltool.m4])
13771507 m4_include([m4/libtool.m4])
13781508 m4_include([m4/ltoptions.m4])
0 #!/usr/bin/perl
1
2 # Copyright (C) 2012-2013 Red Hat, Inc.
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library. If not, see
16 # <http://www.gnu.org/licenses/>.
17
18 die "syntax: $0 SYMFILE ELFLIB(S)" unless int(@ARGV) >= 2;
19
20 my $symfile = shift @ARGV;
21 my @elflibs = @ARGV;
22
23 my %wantsyms;
24 my %gotsyms;
25
26 my $ret = 0;
27
28 open SYMFILE, $symfile or die "cannot read $symfile: $!";
29
30 while (<SYMFILE>) {
31 next if /{/;
32 next if /}/;
33 next if /global:/;
34 next if /local:/;
35 next if /^\s*$/;
36 next if /^\s*#/;
37 next if /\*/;
38
39 die "malformed line $_" unless /^\s*(\S+);$/;
40
41 if (exists $wantsyms{$1}) {
42 print STDERR "Symbol $1 is listed twice\n";
43 $ret = 1;
44 } else {
45 $wantsyms{$1} = 1;
46 }
47 }
48 close SYMFILE;
49
50 foreach my $elflib (@elflibs) {
51 open NM, "-|", "nm", $elflib or die "cannot run 'nm $elflib': $!";
52
53 while (<NM>) {
54 next unless /^\S+\s(?:[TBD])\s(\S+)\s*$/;
55
56 $gotsyms{$1} = 1;
57 }
58
59 close NM;
60 }
61
62 foreach my $sym (keys(%wantsyms)) {
63 next if exists $gotsyms{$sym};
64
65 print STDERR "Expected symbol $sym is not in ELF library\n";
66 $ret = 1;
67 }
68
69 exit($ret);
0 #!/usr/bin/perl
1
2 # Copyright (C) 2012-2013 Red Hat, Inc.
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library. If not, see
16 # <http://www.gnu.org/licenses/>.
17
18 use strict;
19 use warnings;
20
21 die "syntax: $0 SYMFILE..." unless int(@ARGV) >= 1;
22
23 my $ret = 0;
24 my $incomment = 0;
25 my $name;
26 foreach my $symfile (@ARGV) {
27 open SYMFILE, $symfile or die "cannot read $symfile: $!";
28
29 my $line = 0;
30 my @group;
31
32 while (<SYMFILE>) {
33 chomp;
34
35 if ($incomment) {
36 if (m,\*/,) {
37 $incomment = 0;
38 } else {
39 # skip
40 }
41 } else {
42 if (m,/\*,) {
43 $incomment = 1;
44 } elsif (/^(.*)\s*{\s*$/) {
45 @group = ();
46 $line = $.;
47 $name = $1;
48 } elsif (/^\s*}(.*);$/) {
49 &check_sorting(\@group, $symfile, $line, $name);
50 } elsif (/^\s*(global|local):/) {
51 # skip
52 } elsif (/^\s*\*;\s*$/) {
53 # skip
54 } elsif (/^\s*$/) {
55 # skip
56 } else {
57 $_ =~ s/;//;
58 push @group, $_;
59 }
60 }
61 }
62
63 close SYMFILE;
64 }
65
66 sub check_sorting {
67 my $group = shift;
68 my $symfile = shift;
69 my $line = shift;
70 my $name = shift;
71
72 my @group = @{$group};
73 my @sorted = sort { lc $a cmp lc $b } @group;
74 my $sorted = 1;
75 my $first;
76 my $last;
77
78 # Check that symbols within a group are in order
79 for (my $i = 0 ; $i <= $#sorted ; $i++) {
80 if ($sorted[$i] ne $group[$i]) {
81 $first = $i unless defined $first;
82 $last = $i;
83 $sorted = 0;
84 }
85 }
86 if (!$sorted) {
87 @group = splice @group, $first, ($last-$first+1);
88 @sorted = splice @sorted, $first, ($last-$first+1);
89 print "Symbol block $name at $symfile:$line: symbols not sorted\n";
90 print map { " " . $_ . "\n" } @group;
91 print "Correct ordering\n";
92 print map { " " . $_ . "\n" } @sorted;
93 print "\n";
94 $ret = 1;
95 }
96 }
97
98 exit $ret;
00 #! /bin/sh
11 # Attempt to guess a canonical system name.
2 # Copyright 1992-2013 Free Software Foundation, Inc.
3
4 timestamp='2013-04-24'
2 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
4 # 2011, 2012, 2013 Free Software Foundation, Inc.
5
6 timestamp='2012-12-29'
57
68 # This file is free software; you can redistribute it and/or modify it
79 # under the terms of the GNU General Public License as published by
2325 # program. This Exception is an additional permission under section 7
2426 # of the GNU General Public License, version 3 ("GPLv3").
2527 #
26 # Originally written by Per Bothner.
28 # Originally written by Per Bothner.
2729 #
2830 # You can get the latest version of this script from:
2931 # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
4951 GNU config.guess ($timestamp)
5052
5153 Originally written by Per Bothner.
52 Copyright 1992-2013 Free Software Foundation, Inc.
54 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
55 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
56 2012, 2013 Free Software Foundation, Inc.
5357
5458 This is free software; see the source for copying conditions. There is NO
5559 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
882886 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
883887 echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
884888 exit ;;
885 arc:Linux:*:* | arceb:Linux:*:*)
886 echo ${UNAME_MACHINE}-unknown-linux-gnu
887 exit ;;
888889 arm*:Linux:*:*)
889890 eval $set_cc_for_build
890891 if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
922923 sed 's/^ //' << EOF >$dummy.c
923924 #ifdef __dietlibc__
924925 LIBC=dietlibc
925 #endif
926 #else
927 #include <features.h>
928 #ifdef __UCLIBC__
929 LIBC=uclibc
930926 #endif
931927 EOF
932928 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'`
960956 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
961957 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
962958 ;;
963 or1k:Linux:*:*)
964 echo ${UNAME_MACHINE}-unknown-linux-gnu
965 exit ;;
966959 or32:Linux:*:*)
967960 echo ${UNAME_MACHINE}-unknown-linux-gnu
968961 exit ;;
1005998 echo ${UNAME_MACHINE}-dec-linux-gnu
1006999 exit ;;
10071000 x86_64:Linux:*:*)
1008 LIBC=gnu
1009 test -r /lib/libc.so && od -An -S13 /lib/libc.so | grep -q __uClibc_main && LIBC=uclibc
1010 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1001 echo ${UNAME_MACHINE}-unknown-linux-gnu
10111002 exit ;;
10121003 xtensa*:Linux:*:*)
10131004 echo ${UNAME_MACHINE}-unknown-linux-gnu
00 #! /bin/sh
11 # Configuration validation subroutine script.
2 # Copyright 1992-2013 Free Software Foundation, Inc.
3
4 timestamp='2013-04-24'
2 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3 # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
4 # 2011, 2012, 2013 Free Software Foundation, Inc.
5
6 timestamp='2012-12-29'
57
68 # This file is free software; you can redistribute it and/or modify it
79 # under the terms of the GNU General Public License as published by
6769 version="\
6870 GNU config.sub ($timestamp)
6971
70 Copyright 1992-2013 Free Software Foundation, Inc.
72 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
73 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
74 2012, 2013 Free Software Foundation, Inc.
7175
7276 This is free software; see the source for copying conditions. There is NO
7377 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
251255 | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
252256 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
253257 | am33_2.0 \
254 | arc | arceb \
258 | arc \
255259 | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \
256260 | avr | avr32 \
257261 | be32 | be64 \
285289 | mipsisa64r2 | mipsisa64r2el \
286290 | mipsisa64sb1 | mipsisa64sb1el \
287291 | mipsisa64sr71k | mipsisa64sr71kel \
288 | mipsr5900 | mipsr5900el \
289292 | mipstx39 | mipstx39el \
290293 | mn10200 | mn10300 \
291294 | moxie \
292295 | mt \
293296 | msp430 \
294297 | nds32 | nds32le | nds32be \
295 | nios | nios2 | nios2eb | nios2el \
298 | nios | nios2 \
296299 | ns16k | ns32k \
297300 | open8 \
298 | or1k | or32 \
301 | or32 \
299302 | pdp10 | pdp11 | pj | pjl \
300303 | powerpc | powerpc64 | powerpc64le | powerpcle \
301304 | pyramid \
365368 | aarch64-* | aarch64_be-* \
366369 | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
367370 | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
368 | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \
371 | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
369372 | arm-* | armbe-* | armle-* | armeb-* | armv*-* \
370373 | avr-* | avr32-* \
371374 | be32-* | be64-* \
403406 | mipsisa64r2-* | mipsisa64r2el-* \
404407 | mipsisa64sb1-* | mipsisa64sb1el-* \
405408 | mipsisa64sr71k-* | mipsisa64sr71kel-* \
406 | mipsr5900-* | mipsr5900el-* \
407409 | mipstx39-* | mipstx39el-* \
408410 | mmix-* \
409411 | mt-* \
410412 | msp430-* \
411413 | nds32-* | nds32le-* | nds32be-* \
412 | nios-* | nios2-* | nios2eb-* | nios2el-* \
414 | nios-* | nios2-* \
413415 | none-* | np1-* | ns16k-* | ns32k-* \
414416 | open8-* \
415417 | orion-* \
13511353 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
13521354 | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
13531355 | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
1354 | -sym* | -kopensolaris* | -plan9* \
1356 | -sym* | -kopensolaris* \
13551357 | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
13561358 | -aos* | -aros* \
13571359 | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
14971499 -aros*)
14981500 os=-aros
14991501 ;;
1502 -kaos*)
1503 os=-kaos
1504 ;;
15001505 -zvmoe)
15011506 os=-zvmoe
15021507 ;;
15861591 os=-elf
15871592 ;;
15881593 mips*-*)
1589 os=-elf
1590 ;;
1591 or1k-*)
15921594 os=-elf
15931595 ;;
15941596 or32-*)
00 #! /bin/sh
11 # depcomp - compile a program generating dependencies as side-effects
22
3 scriptversion=2012-10-18.11; # UTC
3 scriptversion=2013-05-30.07; # UTC
44
55 # Copyright (C) 1999-2013 Free Software Foundation, Inc.
66
551551 G
552552 p
553553 }' >> "$depfile"
554 echo >> "$depfile" # make sure the fragment doesn't end with a backslash
554555 rm -f "$tmpdepfile"
555556 ;;
556557
0 # GLIB - Library of useful C routines
1
2 TESTS_ENVIRONMENT= \
3 G_TEST_SRCDIR="$(abs_srcdir)" \
4 G_TEST_BUILDDIR="$(abs_builddir)" \
5 G_DEBUG=gc-friendly \
6 MALLOC_CHECK_=2 \
7 MALLOC_PERTURB_=$$(($${RANDOM:-256} % 256))
8 LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/tap-driver.sh
9 LOG_COMPILER = $(top_srcdir)/tap-test
10
11 NULL =
12
13 # initialize variables for unconditional += appending
14 BUILT_SOURCES =
15 BUILT_EXTRA_DIST =
16 CLEANFILES = *.log *.trs
17 DISTCLEANFILES =
18 MAINTAINERCLEANFILES =
19 EXTRA_DIST =
20 TESTS =
21
22 installed_test_LTLIBRARIES =
23 installed_test_PROGRAMS =
24 installed_test_SCRIPTS =
25 nobase_installed_test_DATA =
26
27 noinst_LTLIBRARIES =
28 noinst_PROGRAMS =
29 noinst_SCRIPTS =
30 noinst_DATA =
31
32 check_LTLIBRARIES =
33 check_PROGRAMS =
34 check_SCRIPTS =
35 check_DATA =
36
37 # We support a fairly large range of possible variables. It is expected that all types of files in a test suite
38 # will belong in exactly one of the following variables.
39 #
40 # First, we support the usual automake suffixes, but in lowercase, with the customary meaning:
41 #
42 # test_programs, test_scripts, test_data, test_ltlibraries
43 #
44 # The above are used to list files that are involved in both uninstalled and installed testing. The
45 # test_programs and test_scripts are taken to be actual testcases and will be run as part of the test suite.
46 # Note that _data is always used with the nobase_ automake variable name to ensure that installed test data is
47 # installed in the same way as it appears in the package layout.
48 #
49 # In order to mark a particular file as being only for one type of testing, use 'installed' or 'uninstalled',
50 # like so:
51 #
52 # installed_test_programs, uninstalled_test_programs
53 # installed_test_scripts, uninstalled_test_scripts
54 # installed_test_data, uninstalled_test_data
55 # installed_test_ltlibraries, uninstalled_test_ltlibraries
56 #
57 # Additionally, we support 'extra' infixes for programs and scripts. This is used for support programs/scripts
58 # that should not themselves be run as testcases (but exist to be used from other testcases):
59 #
60 # test_extra_programs, installed_test_extra_programs, uninstalled_test_extra_programs
61 # test_extra_scripts, installed_test_extra_scripts, uninstalled_test_extra_scripts
62 #
63 # Additionally, for _scripts and _data, we support the customary dist_ prefix so that the named script or data
64 # file automatically end up in the tarball.
65 #
66 # dist_test_scripts, dist_test_data, dist_test_extra_scripts
67 # dist_installed_test_scripts, dist_installed_test_data, dist_installed_test_extra_scripts
68 # dist_uninstalled_test_scripts, dist_uninstalled_test_data, dist_uninstalled_test_extra_scripts
69 #
70 # Note that no file is automatically disted unless it appears in one of the dist_ variables. This follows the
71 # standard automake convention of not disting programs scripts or data by default.
72 #
73 # test_programs, test_scripts, uninstalled_test_programs and uninstalled_test_scripts (as well as their disted
74 # variants) will be run as part of the in-tree 'make check'. These are all assumed to be runnable under
75 # gtester. That's a bit strange for scripts, but it's possible.
76
77 TESTS += $(test_programs) $(test_scripts) $(uninstalled_test_programs) $(uninstalled_test_scripts) \
78 $(dist_test_scripts) $(dist_uninstalled_test_scripts)
79
80 # Note: build even the installed-only targets during 'make check' to ensure that they still work.
81 # We need to do a bit of trickery here and manage disting via EXTRA_DIST instead of using dist_ prefixes to
82 # prevent automake from mistreating gmake functions like $(wildcard ...) and $(addprefix ...) as if they were
83 # filenames, including removing duplicate instances of the opening part before the space, eg. '$(addprefix'.
84 all_test_programs = $(test_programs) $(uninstalled_test_programs) $(installed_test_programs) \
85 $(test_extra_programs) $(uninstalled_test_extra_programs) $(installed_test_extra_programs)
86 all_test_scripts = $(test_scripts) $(uninstalled_test_scripts) $(installed_test_scripts) \
87 $(test_extra_scripts) $(uninstalled_test_extra_scripts) $(installed_test_extra_scripts)
88 all_dist_test_scripts = $(dist_test_scripts) $(dist_uninstalled_test_scripts) $(dist_installed_test_scripts) \
89 $(dist_test_extra_scripts) $(dist_uninstalled_test_extra_scripts) $(dist_installed_test_extra_scripts)
90 all_test_scripts += $(all_dist_test_scripts)
91 EXTRA_DIST += $(all_dist_test_scripts)
92 all_test_data = $(test_data) $(uninstalled_test_data) $(installed_test_data)
93 all_dist_test_data = $(dist_test_data) $(dist_uninstalled_test_data) $(dist_installed_test_data)
94 all_test_data += $(all_dist_test_data)
95 EXTRA_DIST += $(all_dist_test_data)
96 all_test_ltlibs = $(test_ltlibraries) $(uninstalled_test_ltlibraries) $(installed_test_ltlibraries)
97
98 if ENABLE_ALWAYS_BUILD_TESTS
99 noinst_LTLIBRARIES += $(all_test_ltlibs)
100 noinst_PROGRAMS += $(all_test_programs)
101 noinst_SCRIPTS += $(all_test_scripts)
102 noinst_DATA += $(all_test_data)
103 else
104 check_LTLIBRARIES += $(all_test_ltlibs)
105 check_PROGRAMS += $(all_test_programs)
106 check_SCRIPTS += $(all_test_scripts)
107 check_DATA += $(all_test_data)
108 endif
109
110 if ENABLE_INSTALLED_TESTS
111 installed_test_PROGRAMS += $(test_programs) $(installed_test_programs) \
112 $(test_extra_programs) $(installed_test_extra_programs)
113 installed_test_SCRIPTS += $(test_scripts) $(installed_test_scripts) \
114 $(test_extra_scripts) $(test_installed_extra_scripts)
115 installed_test_SCRIPTS += $(dist_test_scripts) $(dist_test_extra_scripts) \
116 $(dist_installed_test_scripts) $(dist_installed_test_extra_scripts)
117 nobase_installed_test_DATA += $(test_data) $(installed_test_data)
118 nobase_installed_test_DATA += $(dist_test_data) $(dist_installed_test_data)
119 installed_test_LTLIBRARIES += $(test_ltlibraries) $(installed_test_ltlibraries)
120 installed_testcases = $(test_programs) $(installed_test_programs) \
121 $(test_scripts) $(installed_test_scripts) \
122 $(dist_test_scripts) $(dist_installed_test_scripts)
123
124 installed_test_meta_DATA = $(installed_testcases:=.test)
125
126 %.test: %$(EXEEXT) Makefile
127 $(AM_V_GEN) (echo '[Test]' > $@.tmp; \
128 echo 'Type=session' >> $@.tmp; \
129 echo 'Exec=$(installed_testdir)/$(notdir $<) --tap' >> $@.tmp; \
130 echo 'Output=TAP' >> $@.tmp; \
131 mv $@.tmp $@)
132
133 CLEANFILES += $(installed_test_meta_DATA)
134 endif
0 #! /bin/sh
1 # test-driver - basic testsuite driver script.
2
3 scriptversion=2012-06-27.10; # UTC
4
5 # Copyright (C) 2011-2013 Free Software Foundation, Inc.
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
10 # any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20 # As a special exception to the GNU General Public License, if you
21 # distribute this file as part of a program that contains a
22 # configuration script generated by Autoconf, you may include it under
23 # the same distribution terms that you use for the rest of that program.
24
25 # This file is maintained in Automake, please report
26 # bugs to <bug-automake@gnu.org> or send patches to
27 # <automake-patches@gnu.org>.
28
29 # Make unconditional expansion of undefined variables an error. This
30 # helps a lot in preventing typo-related bugs.
31 set -u
32
33 usage_error ()
34 {
35 echo "$0: $*" >&2
36 print_usage >&2
37 exit 2
38 }
39
40 print_usage ()
41 {
42 cat <<END
43 Usage:
44 test-driver --test-name=NAME --log-file=PATH --trs-file=PATH
45 [--expect-failure={yes|no}] [--color-tests={yes|no}]
46 [--enable-hard-errors={yes|no}] [--] TEST-SCRIPT
47 The '--test-name', '--log-file' and '--trs-file' options are mandatory.
48 END
49 }
50
51 # TODO: better error handling in option parsing (in particular, ensure
52 # TODO: $log_file, $trs_file and $test_name are defined).
53 test_name= # Used for reporting.
54 log_file= # Where to save the output of the test script.
55 trs_file= # Where to save the metadata of the test run.
56 expect_failure=no
57 color_tests=no
58 enable_hard_errors=yes
59 while test $# -gt 0; do
60 case $1 in
61 --help) print_usage; exit $?;;
62 --version) echo "test-driver $scriptversion"; exit $?;;
63 --test-name) test_name=$2; shift;;
64 --log-file) log_file=$2; shift;;
65 --trs-file) trs_file=$2; shift;;
66 --color-tests) color_tests=$2; shift;;
67 --expect-failure) expect_failure=$2; shift;;
68 --enable-hard-errors) enable_hard_errors=$2; shift;;
69 --) shift; break;;
70 -*) usage_error "invalid option: '$1'";;
71 esac
72 shift
73 done
74
75 if test $color_tests = yes; then
76 # Keep this in sync with 'lib/am/check.am:$(am__tty_colors)'.
77 red='' # Red.
78 grn='' # Green.
79 lgn='' # Light green.
80 blu='' # Blue.
81 mgn='' # Magenta.
82 std='' # No color.
83 else
84 red= grn= lgn= blu= mgn= std=
85 fi
86
87 do_exit='rm -f $log_file $trs_file; (exit $st); exit $st'
88 trap "st=129; $do_exit" 1
89 trap "st=130; $do_exit" 2
90 trap "st=141; $do_exit" 13
91 trap "st=143; $do_exit" 15
92
93 # Test script is run here.
94 "$@" >$log_file 2>&1
95 estatus=$?
96 if test $enable_hard_errors = no && test $estatus -eq 99; then
97 estatus=1
98 fi
99
100 case $estatus:$expect_failure in
101 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
102 0:*) col=$grn res=PASS recheck=no gcopy=no;;
103 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
104 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
105 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
106 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
107 esac
108
109 # Report outcome to console.
110 echo "${col}${res}${std}: $test_name"
111
112 # Register the test result, and other relevant metadata.
113 echo ":test-result: $res" > $trs_file
114 echo ":global-test-result: $res" >> $trs_file
115 echo ":recheck: $recheck" >> $trs_file
116 echo ":copy-in-global-log: $gcopy" >> $trs_file
117
118 # Local Variables:
119 # mode: shell-script
120 # sh-indentation: 2
121 # eval: (add-hook 'write-file-hooks 'time-stamp)
122 # time-stamp-start: "scriptversion="
123 # time-stamp-format: "%:y-%02m-%02d.%02H"
124 # time-stamp-time-zone: "UTC"
125 # time-stamp-end: "; # UTC"
126 # End:
108108 prev_version_file = /dev/null
109109
110110
111 exclude_file_name_regexp--sc_bindtextdomain = ^(libvirt-gconfig/tests|examples)/|libvirt-glib/libvirt-glib-event.c|libvirt-glib/libvirt-glib-main.c
111 exclude_file_name_regexp--sc_bindtextdomain = ^(libvirt-gconfig/tests|examples)/|libvirt-glib/libvirt-glib-event.c|libvirt-glib/libvirt-glib-main.c|tests/
112112
113113 exclude_file_name_regexp--sc_preprocessor_indentation = ^*/*.[ch]
114114
119119
120120 # XXX we shouldn't really ignore this, but the horrible enum rules...
121121 exclude_file_name_regexp--sc_makefile_at_at_check = libvirt-gobject/Makefile.am
122
123 exclude_file_name_regexp--sc_unmarked_diagnostics = tap-driver\.sh
7373 /* Version number of package */
7474 #undef VERSION
7575
76 /* enable GObject introspection support */
77 #undef WITH_GOBJECT_INTROSPECTION
78
7976 /* Enable GNU extensions */
8077 #undef _GNU_SOURCE
00 #! /bin/sh
11 # Guess values for system-dependent variables and create Makefiles.
2 # Generated by GNU Autoconf 2.69 for libvirt-glib 0.1.7.
2 # Generated by GNU Autoconf 2.69 for libvirt-glib 0.1.9.
33 #
44 #
55 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
586586 # Identity of this package.
587587 PACKAGE_NAME='libvirt-glib'
588588 PACKAGE_TARNAME='libvirt-glib'
589 PACKAGE_VERSION='0.1.7'
590 PACKAGE_STRING='libvirt-glib 0.1.7'
589 PACKAGE_VERSION='0.1.9'
590 PACKAGE_STRING='libvirt-glib 0.1.9'
591591 PACKAGE_BUGREPORT=''
592592 PACKAGE_URL=''
593593
635635 WITH_VALA_FALSE
636636 WITH_VALA_TRUE
637637 VAPIGEN
638 WITH_GOBJECT_INTROSPECTION_FALSE
639 WITH_GOBJECT_INTROSPECTION_TRUE
640 G_IR_COMPILER
641 G_IR_SCANNER
642 GOBJECT_INTROSPECTION_LIBS
643 GOBJECT_INTROSPECTION_CFLAGS
638 WITH_LINUX_FALSE
639 WITH_LINUX_TRUE
640 HAVE_INTROSPECTION_FALSE
641 HAVE_INTROSPECTION_TRUE
642 INTROSPECTION_MAKEFILE
643 INTROSPECTION_LIBS
644 INTROSPECTION_CFLAGS
645 INTROSPECTION_TYPELIBDIR
646 INTROSPECTION_GIRDIR
647 INTROSPECTION_GENERATE
648 INTROSPECTION_COMPILER
649 INTROSPECTION_SCANNER
644650 PYTHON_SITE_PACKAGES
645651 PYTHON_INCLUDES
646652 PYTHON_VERSION
655661 CYGWIN_EXTRA_PYTHON_LIBADD
656662 CYGWIN_EXTRA_LIBADD
657663 CYGWIN_EXTRA_LDFLAGS
664 installed_testdir
665 installed_test_metadir
666 ENABLE_ALWAYS_BUILD_TESTS_FALSE
667 ENABLE_ALWAYS_BUILD_TESTS_TRUE
668 ENABLE_INSTALLED_TESTS_FALSE
669 ENABLE_INSTALLED_TESTS_TRUE
658670 GLIB_MKENUMS
659671 GTK_DOC_USE_REBASE_FALSE
660672 GTK_DOC_USE_REBASE_TRUE
666678 GTK_DOC_BUILD_HTML_TRUE
667679 ENABLE_GTK_DOC_FALSE
668680 ENABLE_GTK_DOC_TRUE
681 HAVE_GTK_DOC_FALSE
682 HAVE_GTK_DOC_TRUE
669683 GTKDOC_DEPS_LIBS
670684 GTKDOC_DEPS_CFLAGS
671685 HTML_DIR
672686 GTKDOC_MKPDF
673687 GTKDOC_REBASE
688 GTKDOC_CHECK_PATH
674689 GTKDOC_CHECK
675690 DATADIRNAME
676691 ALL_LINGUAS
709724 INTLTOOL_UPDATE
710725 USE_NLS
711726 GETTEXT_PACKAGE
727 ENABLE_TESTS_FALSE
728 ENABLE_TESTS_TRUE
712729 LIBXML2_LIBS
713730 LIBXML2_CFLAGS
714731 GIO2_LIBS
772789 LIBVIRT_GLIB_MICRO_VERSION
773790 LIBVIRT_GLIB_MINOR_VERSION
774791 LIBVIRT_GLIB_MAJOR_VERSION
792 GLIB2_REQUIRED
775793 LIBVIRT_REQUIRED
776794 host_os
777795 host_vendor
864882 enable_gtk_doc
865883 enable_gtk_doc_html
866884 enable_gtk_doc_pdf
885 enable_installed_tests
886 enable_always_build_tests
867887 enable_test_coverage
868888 with_python
869889 enable_introspection
894914 LIBXML2_CFLAGS
895915 LIBXML2_LIBS
896916 GTKDOC_DEPS_CFLAGS
897 GTKDOC_DEPS_LIBS
898 GOBJECT_INTROSPECTION_CFLAGS
899 GOBJECT_INTROSPECTION_LIBS'
917 GTKDOC_DEPS_LIBS'
900918
901919
902920 # Initialize some variables set by options.
14371455 # Omit some internal or obsolete options to make the list less imposing.
14381456 # This message is too long to be a string in the A/UX 3.1 sh.
14391457 cat <<_ACEOF
1440 \`configure' configures libvirt-glib 0.1.7 to adapt to many kinds of systems.
1458 \`configure' configures libvirt-glib 0.1.9 to adapt to many kinds of systems.
14411459
14421460 Usage: $0 [OPTION]... [VAR=VALUE]...
14431461
15071525
15081526 if test -n "$ac_init_help"; then
15091527 case $ac_init_help in
1510 short | recursive ) echo "Configuration of libvirt-glib 0.1.7:";;
1528 short | recursive ) echo "Configuration of libvirt-glib 0.1.9:";;
15111529 esac
15121530 cat <<\_ACEOF
15131531
15311549 --enable-gtk-doc use gtk-doc to build documentation [[default=no]]
15321550 --enable-gtk-doc-html build documentation in html format [[default=yes]]
15331551 --enable-gtk-doc-pdf build documentation in pdf format [[default=no]]
1552 --enable-installed-tests
1553 Enable installation of some test cases
1554 --enable-always-build-tests
1555 Enable always building tests during 'make all'
15341556 --enable-test-coverage turn on code coverage instrumentation
1535 --enable-introspection enable GObject introspection
1557 --enable-introspection=[no/auto/yes]
1558 Enable introspection for this build
15361559 --enable-vala enable Vala binding generation
15371560
15381561 Optional Packages:
15851608 C compiler flags for GTKDOC_DEPS, overriding pkg-config
15861609 GTKDOC_DEPS_LIBS
15871610 linker flags for GTKDOC_DEPS, overriding pkg-config
1588 GOBJECT_INTROSPECTION_CFLAGS
1589 C compiler flags for GOBJECT_INTROSPECTION, overriding
1590 pkg-config
1591 GOBJECT_INTROSPECTION_LIBS
1592 linker flags for GOBJECT_INTROSPECTION, overriding pkg-config
15931611
15941612 Use these variables to override the choices made by `configure' or to help
15951613 it to find libraries and programs with nonstandard names/locations.
16571675 test -n "$ac_init_help" && exit $ac_status
16581676 if $ac_init_version; then
16591677 cat <<\_ACEOF
1660 libvirt-glib configure 0.1.7
1678 libvirt-glib configure 0.1.9
16611679 generated by GNU Autoconf 2.69
16621680
16631681 Copyright (C) 2012 Free Software Foundation, Inc.
19351953 This file contains any messages produced by compilers while
19361954 running configure, to aid debugging if configure makes a mistake.
19371955
1938 It was created by libvirt-glib $as_me 0.1.7, which was
1956 It was created by libvirt-glib $as_me 0.1.9, which was
19391957 generated by GNU Autoconf 2.69. Invocation command line was
19401958
19411959 $ $0 $@
28022820
28032821 # Define the identity of the package.
28042822 PACKAGE='libvirt-glib'
2805 VERSION='0.1.7'
2823 VERSION='0.1.9'
28062824
28072825
28082826 cat >>confdefs.h <<_ACEOF
29662984
29672985
29682986 LIBVIRT_REQUIRED=0.10.2
2969 GLIB2_REQUIRED=2.22.0
2987 GLIB2_REQUIRED=2.36.0
2988 GLIB2_TEST_REQUIRED=2.38.0
29702989 GOBJECT2_REQUIRED=2.10.0
29712990 GIO_REQUIRED=2.10.0
29722991 GOBJECT_INTROSPECTION_REQUIRED=0.10.8
64636482 rm -rf conftest*
64646483 ;;
64656484
6466 x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
6485 x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \
64676486 s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
64686487 # Find out which ABI we are using.
64696488 echo 'int i;' > conftest.$ac_ext
64816500 x86_64-*linux*)
64826501 LD="${LD-ld} -m elf_i386"
64836502 ;;
6484 ppc64-*linux*|powerpc64-*linux*)
6503 powerpc64le-*linux*)
6504 LD="${LD-ld} -m elf32lppclinux"
6505 ;;
6506 powerpc64-*linux*)
64856507 LD="${LD-ld} -m elf32ppclinux"
64866508 ;;
64876509 s390x-*linux*)
65006522 x86_64-*linux*)
65016523 LD="${LD-ld} -m elf_x86_64"
65026524 ;;
6503 ppc*-*linux*|powerpc*-*linux*)
6525 powerpcle-*linux*)
6526 LD="${LD-ld} -m elf64lppc"
6527 ;;
6528 powerpc-*linux*)
65046529 LD="${LD-ld} -m elf64ppc"
65056530 ;;
65066531 s390*-*linux*|s390*-*tpf*)
1194911974 GNUmakefile=GNUmakefile
1195011975 ac_config_links="$ac_config_links $GNUmakefile:$GNUmakefile"
1195111976
11977
11978 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -Werror -Wunknown-warning-option" >&5
11979 $as_echo_n "checking whether C compiler handles -Werror -Wunknown-warning-option... " >&6; }
11980 if ${gl_cv_warn_c__Werror__Wunknown_warning_option+:} false; then :
11981 $as_echo_n "(cached) " >&6
11982 else
11983
11984 gl_save_compiler_FLAGS="$CFLAGS"
11985 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -Werror -Wunknown-warning-option"
11986 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
11987 /* end confdefs.h. */
11988
11989 int
11990 main ()
11991 {
11992
11993 ;
11994 return 0;
11995 }
11996 _ACEOF
11997 if ac_fn_c_try_link "$LINENO"; then :
11998 gl_cv_warn_c__Werror__Wunknown_warning_option=yes
11999 else
12000 gl_cv_warn_c__Werror__Wunknown_warning_option=no
12001 fi
12002 rm -f core conftest.err conftest.$ac_objext \
12003 conftest$ac_exeext conftest.$ac_ext
12004 CFLAGS="$gl_save_compiler_FLAGS"
12005
12006 fi
12007 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__Werror__Wunknown_warning_option" >&5
12008 $as_echo "$gl_cv_warn_c__Werror__Wunknown_warning_option" >&6; }
12009 if test "x$gl_cv_warn_c__Werror__Wunknown_warning_option" = xyes; then :
12010 gl_unknown_warnings_are_errors='-Wunknown-warning-option -Werror'
12011 else
12012 gl_unknown_warnings_are_errors=
12013 fi
1195212014
1195312015
1195412016
1219412256
1219512257 # Check for $CC support of each warning
1219612258 for w in $wantwarn; do
12197 as_gl_Warn=`$as_echo "gl_cv_warn_$w" | $as_tr_sh`
12198 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles $w" >&5
12199 $as_echo_n "checking whether compiler handles $w... " >&6; }
12259
12260 as_gl_Warn=`$as_echo "gl_cv_warn_c_$w" | $as_tr_sh`
12261 gl_positive="$w"
12262 case $gl_positive in
12263 -Wno-*) gl_positive=-W`expr "X$gl_positive" : 'X-Wno-\(.*\)'` ;;
12264 esac
12265 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles $w" >&5
12266 $as_echo_n "checking whether C compiler handles $w... " >&6; }
1220012267 if eval \${$as_gl_Warn+:} false; then :
1220112268 $as_echo_n "(cached) " >&6
1220212269 else
1220312270
12204 gl_save_CPPFLAGS="$CPPFLAGS"
12205 CPPFLAGS="${CPPFLAGS} $w"
12271 gl_save_compiler_FLAGS="$CFLAGS"
12272 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors $gl_positive"
1220612273 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1220712274 /* end confdefs.h. */
1220812275
1221412281 return 0;
1221512282 }
1221612283 _ACEOF
12217 if ac_fn_c_try_cpp "$LINENO"; then :
12284 if ac_fn_c_try_link "$LINENO"; then :
1221812285 eval "$as_gl_Warn=yes"
1221912286 else
1222012287 eval "$as_gl_Warn=no"
1222112288 fi
12222 rm -f conftest.err conftest.i conftest.$ac_ext
12223 CPPFLAGS="$gl_save_CPPFLAGS"
12289 rm -f core conftest.err conftest.$ac_objext \
12290 conftest$ac_exeext conftest.$ac_ext
12291 CFLAGS="$gl_save_compiler_FLAGS"
1222412292
1222512293 fi
1222612294 eval ac_res=\$$as_gl_Warn
1223012298 as_fn_append WARN_CFLAGS " $w"
1223112299 fi
1223212300
12301
1223312302 done
1223412303
1223512304 # GNULIB uses '-W' (aka -Wextra) which includes a bunch of stuff.
1223612305 # Unfortunately, this means you can't simply use '-Wsign-compare'
1223712306 # with gl_MANYWARN_COMPLEMENT
1223812307 # So we have -W enabled, and then have to explicitly turn off...
12239 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -Wno-sign-compare" >&5
12240 $as_echo_n "checking whether compiler handles -Wno-sign-compare... " >&6; }
12241 if ${gl_cv_warn__Wno_sign_compare+:} false; then :
12308
12309 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -Wno-sign-compare" >&5
12310 $as_echo_n "checking whether C compiler handles -Wno-sign-compare... " >&6; }
12311 if ${gl_cv_warn_c__Wno_sign_compare+:} false; then :
1224212312 $as_echo_n "(cached) " >&6
1224312313 else
1224412314
12245 gl_save_CPPFLAGS="$CPPFLAGS"
12246 CPPFLAGS="${CPPFLAGS} -Wno-sign-compare"
12315 gl_save_compiler_FLAGS="$CFLAGS"
12316 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -Wsign-compare"
1224712317 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1224812318 /* end confdefs.h. */
1224912319
1225512325 return 0;
1225612326 }
1225712327 _ACEOF
12258 if ac_fn_c_try_cpp "$LINENO"; then :
12259 gl_cv_warn__Wno_sign_compare=yes
12260 else
12261 gl_cv_warn__Wno_sign_compare=no
12262 fi
12263 rm -f conftest.err conftest.i conftest.$ac_ext
12264 CPPFLAGS="$gl_save_CPPFLAGS"
12265
12266 fi
12267 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__Wno_sign_compare" >&5
12268 $as_echo "$gl_cv_warn__Wno_sign_compare" >&6; }
12269 if test "x$gl_cv_warn__Wno_sign_compare" = xyes; then :
12328 if ac_fn_c_try_link "$LINENO"; then :
12329 gl_cv_warn_c__Wno_sign_compare=yes
12330 else
12331 gl_cv_warn_c__Wno_sign_compare=no
12332 fi
12333 rm -f core conftest.err conftest.$ac_objext \
12334 conftest$ac_exeext conftest.$ac_ext
12335 CFLAGS="$gl_save_compiler_FLAGS"
12336
12337 fi
12338 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__Wno_sign_compare" >&5
12339 $as_echo "$gl_cv_warn_c__Wno_sign_compare" >&6; }
12340 if test "x$gl_cv_warn_c__Wno_sign_compare" = xyes; then :
1227012341 as_fn_append WARN_CFLAGS " -Wno-sign-compare"
1227112342 fi
1227212343
1227312344
12345
1227412346 # Due to gutils.h bug in g_bit_storage
12275 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -Wno-sign-conversion" >&5
12276 $as_echo_n "checking whether compiler handles -Wno-sign-conversion... " >&6; }
12277 if ${gl_cv_warn__Wno_sign_conversion+:} false; then :
12347
12348 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -Wno-sign-conversion" >&5
12349 $as_echo_n "checking whether C compiler handles -Wno-sign-conversion... " >&6; }
12350 if ${gl_cv_warn_c__Wno_sign_conversion+:} false; then :
1227812351 $as_echo_n "(cached) " >&6
1227912352 else
1228012353
12281 gl_save_CPPFLAGS="$CPPFLAGS"
12282 CPPFLAGS="${CPPFLAGS} -Wno-sign-conversion"
12354 gl_save_compiler_FLAGS="$CFLAGS"
12355 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -Wsign-conversion"
1228312356 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1228412357 /* end confdefs.h. */
1228512358
1229112364 return 0;
1229212365 }
1229312366 _ACEOF
12294 if ac_fn_c_try_cpp "$LINENO"; then :
12295 gl_cv_warn__Wno_sign_conversion=yes
12296 else
12297 gl_cv_warn__Wno_sign_conversion=no
12298 fi
12299 rm -f conftest.err conftest.i conftest.$ac_ext
12300 CPPFLAGS="$gl_save_CPPFLAGS"
12301
12302 fi
12303 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__Wno_sign_conversion" >&5
12304 $as_echo "$gl_cv_warn__Wno_sign_conversion" >&6; }
12305 if test "x$gl_cv_warn__Wno_sign_conversion" = xyes; then :
12367 if ac_fn_c_try_link "$LINENO"; then :
12368 gl_cv_warn_c__Wno_sign_conversion=yes
12369 else
12370 gl_cv_warn_c__Wno_sign_conversion=no
12371 fi
12372 rm -f core conftest.err conftest.$ac_objext \
12373 conftest$ac_exeext conftest.$ac_ext
12374 CFLAGS="$gl_save_compiler_FLAGS"
12375
12376 fi
12377 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__Wno_sign_conversion" >&5
12378 $as_echo "$gl_cv_warn_c__Wno_sign_conversion" >&6; }
12379 if test "x$gl_cv_warn_c__Wno_sign_conversion" = xyes; then :
1230612380 as_fn_append WARN_CFLAGS " -Wno-sign-conversion"
1230712381 fi
1230812382
12309 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -Wno-conversion" >&5
12310 $as_echo_n "checking whether compiler handles -Wno-conversion... " >&6; }
12311 if ${gl_cv_warn__Wno_conversion+:} false; then :
12383
12384
12385 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -Wno-conversion" >&5
12386 $as_echo_n "checking whether C compiler handles -Wno-conversion... " >&6; }
12387 if ${gl_cv_warn_c__Wno_conversion+:} false; then :
1231212388 $as_echo_n "(cached) " >&6
1231312389 else
1231412390
12315 gl_save_CPPFLAGS="$CPPFLAGS"
12316 CPPFLAGS="${CPPFLAGS} -Wno-conversion"
12391 gl_save_compiler_FLAGS="$CFLAGS"
12392 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -Wconversion"
1231712393 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1231812394 /* end confdefs.h. */
1231912395
1232512401 return 0;
1232612402 }
1232712403 _ACEOF
12328 if ac_fn_c_try_cpp "$LINENO"; then :
12329 gl_cv_warn__Wno_conversion=yes
12330 else
12331 gl_cv_warn__Wno_conversion=no
12332 fi
12333 rm -f conftest.err conftest.i conftest.$ac_ext
12334 CPPFLAGS="$gl_save_CPPFLAGS"
12335
12336 fi
12337 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__Wno_conversion" >&5
12338 $as_echo "$gl_cv_warn__Wno_conversion" >&6; }
12339 if test "x$gl_cv_warn__Wno_conversion" = xyes; then :
12404 if ac_fn_c_try_link "$LINENO"; then :
12405 gl_cv_warn_c__Wno_conversion=yes
12406 else
12407 gl_cv_warn_c__Wno_conversion=no
12408 fi
12409 rm -f core conftest.err conftest.$ac_objext \
12410 conftest$ac_exeext conftest.$ac_ext
12411 CFLAGS="$gl_save_compiler_FLAGS"
12412
12413 fi
12414 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__Wno_conversion" >&5
12415 $as_echo "$gl_cv_warn_c__Wno_conversion" >&6; }
12416 if test "x$gl_cv_warn_c__Wno_conversion" = xyes; then :
1234012417 as_fn_append WARN_CFLAGS " -Wno-conversion"
1234112418 fi
1234212419
12343 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -Wno-unused-parameter" >&5
12344 $as_echo_n "checking whether compiler handles -Wno-unused-parameter... " >&6; }
12345 if ${gl_cv_warn__Wno_unused_parameter+:} false; then :
12420
12421
12422 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -Wno-unused-parameter" >&5
12423 $as_echo_n "checking whether C compiler handles -Wno-unused-parameter... " >&6; }
12424 if ${gl_cv_warn_c__Wno_unused_parameter+:} false; then :
1234612425 $as_echo_n "(cached) " >&6
1234712426 else
1234812427
12349 gl_save_CPPFLAGS="$CPPFLAGS"
12350 CPPFLAGS="${CPPFLAGS} -Wno-unused-parameter"
12428 gl_save_compiler_FLAGS="$CFLAGS"
12429 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -Wunused-parameter"
1235112430 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1235212431 /* end confdefs.h. */
1235312432
1235912438 return 0;
1236012439 }
1236112440 _ACEOF
12362 if ac_fn_c_try_cpp "$LINENO"; then :
12363 gl_cv_warn__Wno_unused_parameter=yes
12364 else
12365 gl_cv_warn__Wno_unused_parameter=no
12366 fi
12367 rm -f conftest.err conftest.i conftest.$ac_ext
12368 CPPFLAGS="$gl_save_CPPFLAGS"
12369
12370 fi
12371 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__Wno_unused_parameter" >&5
12372 $as_echo "$gl_cv_warn__Wno_unused_parameter" >&6; }
12373 if test "x$gl_cv_warn__Wno_unused_parameter" = xyes; then :
12441 if ac_fn_c_try_link "$LINENO"; then :
12442 gl_cv_warn_c__Wno_unused_parameter=yes
12443 else
12444 gl_cv_warn_c__Wno_unused_parameter=no
12445 fi
12446 rm -f core conftest.err conftest.$ac_objext \
12447 conftest$ac_exeext conftest.$ac_ext
12448 CFLAGS="$gl_save_compiler_FLAGS"
12449
12450 fi
12451 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__Wno_unused_parameter" >&5
12452 $as_echo "$gl_cv_warn_c__Wno_unused_parameter" >&6; }
12453 if test "x$gl_cv_warn_c__Wno_unused_parameter" = xyes; then :
1237412454 as_fn_append WARN_CFLAGS " -Wno-unused-parameter"
1237512455 fi
12456
1237612457
1237712458 # We can't enable this due to horrible spice_usb_device_get_description
1237812459 # signature
12379 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -Wno-format-nonliteral" >&5
12380 $as_echo_n "checking whether compiler handles -Wno-format-nonliteral... " >&6; }
12381 if ${gl_cv_warn__Wno_format_nonliteral+:} false; then :
12460
12461 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -Wno-format-nonliteral" >&5
12462 $as_echo_n "checking whether C compiler handles -Wno-format-nonliteral... " >&6; }
12463 if ${gl_cv_warn_c__Wno_format_nonliteral+:} false; then :
1238212464 $as_echo_n "(cached) " >&6
1238312465 else
1238412466
12385 gl_save_CPPFLAGS="$CPPFLAGS"
12386 CPPFLAGS="${CPPFLAGS} -Wno-format-nonliteral"
12467 gl_save_compiler_FLAGS="$CFLAGS"
12468 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -Wformat-nonliteral"
1238712469 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1238812470 /* end confdefs.h. */
1238912471
1239512477 return 0;
1239612478 }
1239712479 _ACEOF
12398 if ac_fn_c_try_cpp "$LINENO"; then :
12399 gl_cv_warn__Wno_format_nonliteral=yes
12400 else
12401 gl_cv_warn__Wno_format_nonliteral=no
12402 fi
12403 rm -f conftest.err conftest.i conftest.$ac_ext
12404 CPPFLAGS="$gl_save_CPPFLAGS"
12405
12406 fi
12407 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__Wno_format_nonliteral" >&5
12408 $as_echo "$gl_cv_warn__Wno_format_nonliteral" >&6; }
12409 if test "x$gl_cv_warn__Wno_format_nonliteral" = xyes; then :
12480 if ac_fn_c_try_link "$LINENO"; then :
12481 gl_cv_warn_c__Wno_format_nonliteral=yes
12482 else
12483 gl_cv_warn_c__Wno_format_nonliteral=no
12484 fi
12485 rm -f core conftest.err conftest.$ac_objext \
12486 conftest$ac_exeext conftest.$ac_ext
12487 CFLAGS="$gl_save_compiler_FLAGS"
12488
12489 fi
12490 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__Wno_format_nonliteral" >&5
12491 $as_echo "$gl_cv_warn_c__Wno_format_nonliteral" >&6; }
12492 if test "x$gl_cv_warn_c__Wno_format_nonliteral" = xyes; then :
1241012493 as_fn_append WARN_CFLAGS " -Wno-format-nonliteral"
1241112494 fi
12495
1241212496
1241312497
1241412498
1241512499
1241612500 # GNULIB expects this to be part of -Wc++-compat, but we turn
1241712501 # that one off, so we need to manually enable this again
12418 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -Wjump-misses-init" >&5
12419 $as_echo_n "checking whether compiler handles -Wjump-misses-init... " >&6; }
12420 if ${gl_cv_warn__Wjump_misses_init+:} false; then :
12502
12503 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -Wjump-misses-init" >&5
12504 $as_echo_n "checking whether C compiler handles -Wjump-misses-init... " >&6; }
12505 if ${gl_cv_warn_c__Wjump_misses_init+:} false; then :
1242112506 $as_echo_n "(cached) " >&6
1242212507 else
1242312508
12424 gl_save_CPPFLAGS="$CPPFLAGS"
12425 CPPFLAGS="${CPPFLAGS} -Wjump-misses-init"
12509 gl_save_compiler_FLAGS="$CFLAGS"
12510 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -Wjump-misses-init"
1242612511 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1242712512 /* end confdefs.h. */
1242812513
1243412519 return 0;
1243512520 }
1243612521 _ACEOF
12437 if ac_fn_c_try_cpp "$LINENO"; then :
12438 gl_cv_warn__Wjump_misses_init=yes
12439 else
12440 gl_cv_warn__Wjump_misses_init=no
12441 fi
12442 rm -f conftest.err conftest.i conftest.$ac_ext
12443 CPPFLAGS="$gl_save_CPPFLAGS"
12444
12445 fi
12446 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__Wjump_misses_init" >&5
12447 $as_echo "$gl_cv_warn__Wjump_misses_init" >&6; }
12448 if test "x$gl_cv_warn__Wjump_misses_init" = xyes; then :
12522 if ac_fn_c_try_link "$LINENO"; then :
12523 gl_cv_warn_c__Wjump_misses_init=yes
12524 else
12525 gl_cv_warn_c__Wjump_misses_init=no
12526 fi
12527 rm -f core conftest.err conftest.$ac_objext \
12528 conftest$ac_exeext conftest.$ac_ext
12529 CFLAGS="$gl_save_compiler_FLAGS"
12530
12531 fi
12532 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__Wjump_misses_init" >&5
12533 $as_echo "$gl_cv_warn_c__Wjump_misses_init" >&6; }
12534 if test "x$gl_cv_warn_c__Wjump_misses_init" = xyes; then :
1244912535 as_fn_append WARN_CFLAGS " -Wjump-misses-init"
1245012536 fi
12537
1245112538
1245212539
1245312540 # This should be < 256 really. Currently we're down to 4096,
1245412541 # but using 1024 bytes sized buffers (mostly for virStrerror)
1245512542 # stops us from going down further
12456 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -Wframe-larger-than=4096" >&5
12457 $as_echo_n "checking whether compiler handles -Wframe-larger-than=4096... " >&6; }
12458 if ${gl_cv_warn__Wframe_larger_than_4096+:} false; then :
12543
12544 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -Wframe-larger-than=4096" >&5
12545 $as_echo_n "checking whether C compiler handles -Wframe-larger-than=4096... " >&6; }
12546 if ${gl_cv_warn_c__Wframe_larger_than_4096+:} false; then :
1245912547 $as_echo_n "(cached) " >&6
1246012548 else
1246112549
12462 gl_save_CPPFLAGS="$CPPFLAGS"
12463 CPPFLAGS="${CPPFLAGS} -Wframe-larger-than=4096"
12550 gl_save_compiler_FLAGS="$CFLAGS"
12551 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -Wframe-larger-than=4096"
1246412552 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1246512553 /* end confdefs.h. */
1246612554
1247212560 return 0;
1247312561 }
1247412562 _ACEOF
12475 if ac_fn_c_try_cpp "$LINENO"; then :
12476 gl_cv_warn__Wframe_larger_than_4096=yes
12477 else
12478 gl_cv_warn__Wframe_larger_than_4096=no
12479 fi
12480 rm -f conftest.err conftest.i conftest.$ac_ext
12481 CPPFLAGS="$gl_save_CPPFLAGS"
12482
12483 fi
12484 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__Wframe_larger_than_4096" >&5
12485 $as_echo "$gl_cv_warn__Wframe_larger_than_4096" >&6; }
12486 if test "x$gl_cv_warn__Wframe_larger_than_4096" = xyes; then :
12563 if ac_fn_c_try_link "$LINENO"; then :
12564 gl_cv_warn_c__Wframe_larger_than_4096=yes
12565 else
12566 gl_cv_warn_c__Wframe_larger_than_4096=no
12567 fi
12568 rm -f core conftest.err conftest.$ac_objext \
12569 conftest$ac_exeext conftest.$ac_ext
12570 CFLAGS="$gl_save_compiler_FLAGS"
12571
12572 fi
12573 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__Wframe_larger_than_4096" >&5
12574 $as_echo "$gl_cv_warn_c__Wframe_larger_than_4096" >&6; }
12575 if test "x$gl_cv_warn_c__Wframe_larger_than_4096" = xyes; then :
1248712576 as_fn_append WARN_CFLAGS " -Wframe-larger-than=4096"
1248812577 fi
12578
1248912579
1249012580
1249112581 # Use improved glibc headers
1249412584 # Extra special flags
1249512585 case $host in
1249612586 *-*-linux*)
12497 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -fstack-protector-all" >&5
12498 $as_echo_n "checking whether compiler handles -fstack-protector-all... " >&6; }
12499 if ${gl_cv_warn__fstack_protector_all+:} false; then :
12587
12588 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -fstack-protector-all" >&5
12589 $as_echo_n "checking whether C compiler handles -fstack-protector-all... " >&6; }
12590 if ${gl_cv_warn_c__fstack_protector_all+:} false; then :
1250012591 $as_echo_n "(cached) " >&6
1250112592 else
1250212593
12503 gl_save_CPPFLAGS="$CPPFLAGS"
12504 CPPFLAGS="${CPPFLAGS} -fstack-protector-all"
12594 gl_save_compiler_FLAGS="$CFLAGS"
12595 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -fstack-protector-all"
1250512596 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1250612597 /* end confdefs.h. */
1250712598
1251312604 return 0;
1251412605 }
1251512606 _ACEOF
12516 if ac_fn_c_try_cpp "$LINENO"; then :
12517 gl_cv_warn__fstack_protector_all=yes
12518 else
12519 gl_cv_warn__fstack_protector_all=no
12520 fi
12521 rm -f conftest.err conftest.i conftest.$ac_ext
12522 CPPFLAGS="$gl_save_CPPFLAGS"
12523
12524 fi
12525 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__fstack_protector_all" >&5
12526 $as_echo "$gl_cv_warn__fstack_protector_all" >&6; }
12527 if test "x$gl_cv_warn__fstack_protector_all" = xyes; then :
12607 if ac_fn_c_try_link "$LINENO"; then :
12608 gl_cv_warn_c__fstack_protector_all=yes
12609 else
12610 gl_cv_warn_c__fstack_protector_all=no
12611 fi
12612 rm -f core conftest.err conftest.$ac_objext \
12613 conftest$ac_exeext conftest.$ac_ext
12614 CFLAGS="$gl_save_compiler_FLAGS"
12615
12616 fi
12617 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__fstack_protector_all" >&5
12618 $as_echo "$gl_cv_warn_c__fstack_protector_all" >&6; }
12619 if test "x$gl_cv_warn_c__fstack_protector_all" = xyes; then :
1252812620 as_fn_append WARN_CFLAGS " -fstack-protector-all"
1252912621 fi
1253012622
12531 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles --param=ssp-buffer-size=4" >&5
12532 $as_echo_n "checking whether compiler handles --param=ssp-buffer-size=4... " >&6; }
12533 if ${gl_cv_warn___param_ssp_buffer_size_4+:} false; then :
12623
12624
12625 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles --param=ssp-buffer-size=4" >&5
12626 $as_echo_n "checking whether C compiler handles --param=ssp-buffer-size=4... " >&6; }
12627 if ${gl_cv_warn_c___param_ssp_buffer_size_4+:} false; then :
1253412628 $as_echo_n "(cached) " >&6
1253512629 else
1253612630
12537 gl_save_CPPFLAGS="$CPPFLAGS"
12538 CPPFLAGS="${CPPFLAGS} --param=ssp-buffer-size=4"
12631 gl_save_compiler_FLAGS="$CFLAGS"
12632 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors --param=ssp-buffer-size=4"
1253912633 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1254012634 /* end confdefs.h. */
1254112635
1254712641 return 0;
1254812642 }
1254912643 _ACEOF
12550 if ac_fn_c_try_cpp "$LINENO"; then :
12551 gl_cv_warn___param_ssp_buffer_size_4=yes
12552 else
12553 gl_cv_warn___param_ssp_buffer_size_4=no
12554 fi
12555 rm -f conftest.err conftest.i conftest.$ac_ext
12556 CPPFLAGS="$gl_save_CPPFLAGS"
12557
12558 fi
12559 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn___param_ssp_buffer_size_4" >&5
12560 $as_echo "$gl_cv_warn___param_ssp_buffer_size_4" >&6; }
12561 if test "x$gl_cv_warn___param_ssp_buffer_size_4" = xyes; then :
12644 if ac_fn_c_try_link "$LINENO"; then :
12645 gl_cv_warn_c___param_ssp_buffer_size_4=yes
12646 else
12647 gl_cv_warn_c___param_ssp_buffer_size_4=no
12648 fi
12649 rm -f core conftest.err conftest.$ac_objext \
12650 conftest$ac_exeext conftest.$ac_ext
12651 CFLAGS="$gl_save_compiler_FLAGS"
12652
12653 fi
12654 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c___param_ssp_buffer_size_4" >&5
12655 $as_echo "$gl_cv_warn_c___param_ssp_buffer_size_4" >&6; }
12656 if test "x$gl_cv_warn_c___param_ssp_buffer_size_4" = xyes; then :
1256212657 as_fn_append WARN_CFLAGS " --param=ssp-buffer-size=4"
1256312658 fi
12659
1256412660
1256512661 ;;
1256612662 esac
12567 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -fexceptions" >&5
12568 $as_echo_n "checking whether compiler handles -fexceptions... " >&6; }
12569 if ${gl_cv_warn__fexceptions+:} false; then :
12663
12664 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -fexceptions" >&5
12665 $as_echo_n "checking whether C compiler handles -fexceptions... " >&6; }
12666 if ${gl_cv_warn_c__fexceptions+:} false; then :
1257012667 $as_echo_n "(cached) " >&6
1257112668 else
1257212669
12573 gl_save_CPPFLAGS="$CPPFLAGS"
12574 CPPFLAGS="${CPPFLAGS} -fexceptions"
12670 gl_save_compiler_FLAGS="$CFLAGS"
12671 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -fexceptions"
1257512672 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1257612673 /* end confdefs.h. */
1257712674
1258312680 return 0;
1258412681 }
1258512682 _ACEOF
12586 if ac_fn_c_try_cpp "$LINENO"; then :
12587 gl_cv_warn__fexceptions=yes
12588 else
12589 gl_cv_warn__fexceptions=no
12590 fi
12591 rm -f conftest.err conftest.i conftest.$ac_ext
12592 CPPFLAGS="$gl_save_CPPFLAGS"
12593
12594 fi
12595 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__fexceptions" >&5
12596 $as_echo "$gl_cv_warn__fexceptions" >&6; }
12597 if test "x$gl_cv_warn__fexceptions" = xyes; then :
12683 if ac_fn_c_try_link "$LINENO"; then :
12684 gl_cv_warn_c__fexceptions=yes
12685 else
12686 gl_cv_warn_c__fexceptions=no
12687 fi
12688 rm -f core conftest.err conftest.$ac_objext \
12689 conftest$ac_exeext conftest.$ac_ext
12690 CFLAGS="$gl_save_compiler_FLAGS"
12691
12692 fi
12693 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__fexceptions" >&5
12694 $as_echo "$gl_cv_warn_c__fexceptions" >&6; }
12695 if test "x$gl_cv_warn_c__fexceptions" = xyes; then :
1259812696 as_fn_append WARN_CFLAGS " -fexceptions"
1259912697 fi
1260012698
12601 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -fasynchronous-unwind-tables" >&5
12602 $as_echo_n "checking whether compiler handles -fasynchronous-unwind-tables... " >&6; }
12603 if ${gl_cv_warn__fasynchronous_unwind_tables+:} false; then :
12699
12700
12701 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -fasynchronous-unwind-tables" >&5
12702 $as_echo_n "checking whether C compiler handles -fasynchronous-unwind-tables... " >&6; }
12703 if ${gl_cv_warn_c__fasynchronous_unwind_tables+:} false; then :
1260412704 $as_echo_n "(cached) " >&6
1260512705 else
1260612706
12607 gl_save_CPPFLAGS="$CPPFLAGS"
12608 CPPFLAGS="${CPPFLAGS} -fasynchronous-unwind-tables"
12707 gl_save_compiler_FLAGS="$CFLAGS"
12708 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -fasynchronous-unwind-tables"
1260912709 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1261012710 /* end confdefs.h. */
1261112711
1261712717 return 0;
1261812718 }
1261912719 _ACEOF
12620 if ac_fn_c_try_cpp "$LINENO"; then :
12621 gl_cv_warn__fasynchronous_unwind_tables=yes
12622 else
12623 gl_cv_warn__fasynchronous_unwind_tables=no
12624 fi
12625 rm -f conftest.err conftest.i conftest.$ac_ext
12626 CPPFLAGS="$gl_save_CPPFLAGS"
12627
12628 fi
12629 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__fasynchronous_unwind_tables" >&5
12630 $as_echo "$gl_cv_warn__fasynchronous_unwind_tables" >&6; }
12631 if test "x$gl_cv_warn__fasynchronous_unwind_tables" = xyes; then :
12720 if ac_fn_c_try_link "$LINENO"; then :
12721 gl_cv_warn_c__fasynchronous_unwind_tables=yes
12722 else
12723 gl_cv_warn_c__fasynchronous_unwind_tables=no
12724 fi
12725 rm -f core conftest.err conftest.$ac_objext \
12726 conftest$ac_exeext conftest.$ac_ext
12727 CFLAGS="$gl_save_compiler_FLAGS"
12728
12729 fi
12730 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__fasynchronous_unwind_tables" >&5
12731 $as_echo "$gl_cv_warn_c__fasynchronous_unwind_tables" >&6; }
12732 if test "x$gl_cv_warn_c__fasynchronous_unwind_tables" = xyes; then :
1263212733 as_fn_append WARN_CFLAGS " -fasynchronous-unwind-tables"
1263312734 fi
1263412735
12635 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -fdiagnostics-show-option" >&5
12636 $as_echo_n "checking whether compiler handles -fdiagnostics-show-option... " >&6; }
12637 if ${gl_cv_warn__fdiagnostics_show_option+:} false; then :
12736
12737
12738 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -fdiagnostics-show-option" >&5
12739 $as_echo_n "checking whether C compiler handles -fdiagnostics-show-option... " >&6; }
12740 if ${gl_cv_warn_c__fdiagnostics_show_option+:} false; then :
1263812741 $as_echo_n "(cached) " >&6
1263912742 else
1264012743
12641 gl_save_CPPFLAGS="$CPPFLAGS"
12642 CPPFLAGS="${CPPFLAGS} -fdiagnostics-show-option"
12744 gl_save_compiler_FLAGS="$CFLAGS"
12745 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -fdiagnostics-show-option"
1264312746 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1264412747 /* end confdefs.h. */
1264512748
1265112754 return 0;
1265212755 }
1265312756 _ACEOF
12654 if ac_fn_c_try_cpp "$LINENO"; then :
12655 gl_cv_warn__fdiagnostics_show_option=yes
12656 else
12657 gl_cv_warn__fdiagnostics_show_option=no
12658 fi
12659 rm -f conftest.err conftest.i conftest.$ac_ext
12660 CPPFLAGS="$gl_save_CPPFLAGS"
12661
12662 fi
12663 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__fdiagnostics_show_option" >&5
12664 $as_echo "$gl_cv_warn__fdiagnostics_show_option" >&6; }
12665 if test "x$gl_cv_warn__fdiagnostics_show_option" = xyes; then :
12757 if ac_fn_c_try_link "$LINENO"; then :
12758 gl_cv_warn_c__fdiagnostics_show_option=yes
12759 else
12760 gl_cv_warn_c__fdiagnostics_show_option=no
12761 fi
12762 rm -f core conftest.err conftest.$ac_objext \
12763 conftest$ac_exeext conftest.$ac_ext
12764 CFLAGS="$gl_save_compiler_FLAGS"
12765
12766 fi
12767 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__fdiagnostics_show_option" >&5
12768 $as_echo "$gl_cv_warn_c__fdiagnostics_show_option" >&6; }
12769 if test "x$gl_cv_warn_c__fdiagnostics_show_option" = xyes; then :
1266612770 as_fn_append WARN_CFLAGS " -fdiagnostics-show-option"
1266712771 fi
1266812772
12669 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -funit-at-a-time" >&5
12670 $as_echo_n "checking whether compiler handles -funit-at-a-time... " >&6; }
12671 if ${gl_cv_warn__funit_at_a_time+:} false; then :
12773
12774
12775 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -funit-at-a-time" >&5
12776 $as_echo_n "checking whether C compiler handles -funit-at-a-time... " >&6; }
12777 if ${gl_cv_warn_c__funit_at_a_time+:} false; then :
1267212778 $as_echo_n "(cached) " >&6
1267312779 else
1267412780
12675 gl_save_CPPFLAGS="$CPPFLAGS"
12676 CPPFLAGS="${CPPFLAGS} -funit-at-a-time"
12781 gl_save_compiler_FLAGS="$CFLAGS"
12782 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -funit-at-a-time"
1267712783 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1267812784 /* end confdefs.h. */
1267912785
1268512791 return 0;
1268612792 }
1268712793 _ACEOF
12688 if ac_fn_c_try_cpp "$LINENO"; then :
12689 gl_cv_warn__funit_at_a_time=yes
12690 else
12691 gl_cv_warn__funit_at_a_time=no
12692 fi
12693 rm -f conftest.err conftest.i conftest.$ac_ext
12694 CPPFLAGS="$gl_save_CPPFLAGS"
12695
12696 fi
12697 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__funit_at_a_time" >&5
12698 $as_echo "$gl_cv_warn__funit_at_a_time" >&6; }
12699 if test "x$gl_cv_warn__funit_at_a_time" = xyes; then :
12794 if ac_fn_c_try_link "$LINENO"; then :
12795 gl_cv_warn_c__funit_at_a_time=yes
12796 else
12797 gl_cv_warn_c__funit_at_a_time=no
12798 fi
12799 rm -f core conftest.err conftest.$ac_objext \
12800 conftest$ac_exeext conftest.$ac_ext
12801 CFLAGS="$gl_save_compiler_FLAGS"
12802
12803 fi
12804 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__funit_at_a_time" >&5
12805 $as_echo "$gl_cv_warn_c__funit_at_a_time" >&6; }
12806 if test "x$gl_cv_warn_c__funit_at_a_time" = xyes; then :
1270012807 as_fn_append WARN_CFLAGS " -funit-at-a-time"
1270112808 fi
12809
1270212810
1270312811
1270412812 # Need -fipa-pure-const in order to make -Wsuggest-attribute=pure
1270512813 # fire even without -O.
12706 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -fipa-pure-const" >&5
12707 $as_echo_n "checking whether compiler handles -fipa-pure-const... " >&6; }
12708 if ${gl_cv_warn__fipa_pure_const+:} false; then :
12814
12815 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -fipa-pure-const" >&5
12816 $as_echo_n "checking whether C compiler handles -fipa-pure-const... " >&6; }
12817 if ${gl_cv_warn_c__fipa_pure_const+:} false; then :
1270912818 $as_echo_n "(cached) " >&6
1271012819 else
1271112820
12712 gl_save_CPPFLAGS="$CPPFLAGS"
12713 CPPFLAGS="${CPPFLAGS} -fipa-pure-const"
12821 gl_save_compiler_FLAGS="$CFLAGS"
12822 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -fipa-pure-const"
1271412823 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1271512824 /* end confdefs.h. */
1271612825
1272212831 return 0;
1272312832 }
1272412833 _ACEOF
12725 if ac_fn_c_try_cpp "$LINENO"; then :
12726 gl_cv_warn__fipa_pure_const=yes
12727 else
12728 gl_cv_warn__fipa_pure_const=no
12729 fi
12730 rm -f conftest.err conftest.i conftest.$ac_ext
12731 CPPFLAGS="$gl_save_CPPFLAGS"
12732
12733 fi
12734 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__fipa_pure_const" >&5
12735 $as_echo "$gl_cv_warn__fipa_pure_const" >&6; }
12736 if test "x$gl_cv_warn__fipa_pure_const" = xyes; then :
12834 if ac_fn_c_try_link "$LINENO"; then :
12835 gl_cv_warn_c__fipa_pure_const=yes
12836 else
12837 gl_cv_warn_c__fipa_pure_const=no
12838 fi
12839 rm -f core conftest.err conftest.$ac_objext \
12840 conftest$ac_exeext conftest.$ac_ext
12841 CFLAGS="$gl_save_compiler_FLAGS"
12842
12843 fi
12844 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__fipa_pure_const" >&5
12845 $as_echo "$gl_cv_warn_c__fipa_pure_const" >&6; }
12846 if test "x$gl_cv_warn_c__fipa_pure_const" = xyes; then :
1273712847 as_fn_append WARN_CFLAGS " -fipa-pure-const"
1273812848 fi
12849
1273912850
1274012851
1274112852 # We should eventually enable this, but right now there are at
1274212853 # least 75 functions triggering warnings.
12743 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -Wno-suggest-attribute=pure" >&5
12744 $as_echo_n "checking whether compiler handles -Wno-suggest-attribute=pure... " >&6; }
12745 if ${gl_cv_warn__Wno_suggest_attribute_pure+:} false; then :
12854
12855 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -Wno-suggest-attribute=pure" >&5
12856 $as_echo_n "checking whether C compiler handles -Wno-suggest-attribute=pure... " >&6; }
12857 if ${gl_cv_warn_c__Wno_suggest_attribute_pure+:} false; then :
1274612858 $as_echo_n "(cached) " >&6
1274712859 else
1274812860
12749 gl_save_CPPFLAGS="$CPPFLAGS"
12750 CPPFLAGS="${CPPFLAGS} -Wno-suggest-attribute=pure"
12861 gl_save_compiler_FLAGS="$CFLAGS"
12862 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -Wsuggest-attribute=pure"
1275112863 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1275212864 /* end confdefs.h. */
1275312865
1275912871 return 0;
1276012872 }
1276112873 _ACEOF
12762 if ac_fn_c_try_cpp "$LINENO"; then :
12763 gl_cv_warn__Wno_suggest_attribute_pure=yes
12764 else
12765 gl_cv_warn__Wno_suggest_attribute_pure=no
12766 fi
12767 rm -f conftest.err conftest.i conftest.$ac_ext
12768 CPPFLAGS="$gl_save_CPPFLAGS"
12769
12770 fi
12771 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__Wno_suggest_attribute_pure" >&5
12772 $as_echo "$gl_cv_warn__Wno_suggest_attribute_pure" >&6; }
12773 if test "x$gl_cv_warn__Wno_suggest_attribute_pure" = xyes; then :
12874 if ac_fn_c_try_link "$LINENO"; then :
12875 gl_cv_warn_c__Wno_suggest_attribute_pure=yes
12876 else
12877 gl_cv_warn_c__Wno_suggest_attribute_pure=no
12878 fi
12879 rm -f core conftest.err conftest.$ac_objext \
12880 conftest$ac_exeext conftest.$ac_ext
12881 CFLAGS="$gl_save_compiler_FLAGS"
12882
12883 fi
12884 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__Wno_suggest_attribute_pure" >&5
12885 $as_echo "$gl_cv_warn_c__Wno_suggest_attribute_pure" >&6; }
12886 if test "x$gl_cv_warn_c__Wno_suggest_attribute_pure" = xyes; then :
1277412887 as_fn_append WARN_CFLAGS " -Wno-suggest-attribute=pure"
1277512888 fi
1277612889
12777 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -Wno-suggest-attribute=const" >&5
12778 $as_echo_n "checking whether compiler handles -Wno-suggest-attribute=const... " >&6; }
12779 if ${gl_cv_warn__Wno_suggest_attribute_const+:} false; then :
12890
12891
12892 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -Wno-suggest-attribute=const" >&5
12893 $as_echo_n "checking whether C compiler handles -Wno-suggest-attribute=const... " >&6; }
12894 if ${gl_cv_warn_c__Wno_suggest_attribute_const+:} false; then :
1278012895 $as_echo_n "(cached) " >&6
1278112896 else
1278212897
12783 gl_save_CPPFLAGS="$CPPFLAGS"
12784 CPPFLAGS="${CPPFLAGS} -Wno-suggest-attribute=const"
12898 gl_save_compiler_FLAGS="$CFLAGS"
12899 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -Wsuggest-attribute=const"
1278512900 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1278612901 /* end confdefs.h. */
1278712902
1279312908 return 0;
1279412909 }
1279512910 _ACEOF
12796 if ac_fn_c_try_cpp "$LINENO"; then :
12797 gl_cv_warn__Wno_suggest_attribute_const=yes
12798 else
12799 gl_cv_warn__Wno_suggest_attribute_const=no
12800 fi
12801 rm -f conftest.err conftest.i conftest.$ac_ext
12802 CPPFLAGS="$gl_save_CPPFLAGS"
12803
12804 fi
12805 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__Wno_suggest_attribute_const" >&5
12806 $as_echo "$gl_cv_warn__Wno_suggest_attribute_const" >&6; }
12807 if test "x$gl_cv_warn__Wno_suggest_attribute_const" = xyes; then :
12911 if ac_fn_c_try_link "$LINENO"; then :
12912 gl_cv_warn_c__Wno_suggest_attribute_const=yes
12913 else
12914 gl_cv_warn_c__Wno_suggest_attribute_const=no
12915 fi
12916 rm -f core conftest.err conftest.$ac_objext \
12917 conftest$ac_exeext conftest.$ac_ext
12918 CFLAGS="$gl_save_compiler_FLAGS"
12919
12920 fi
12921 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__Wno_suggest_attribute_const" >&5
12922 $as_echo "$gl_cv_warn_c__Wno_suggest_attribute_const" >&6; }
12923 if test "x$gl_cv_warn_c__Wno_suggest_attribute_const" = xyes; then :
1280812924 as_fn_append WARN_CFLAGS " -Wno-suggest-attribute=const"
1280912925 fi
12926
1281012927
1281112928
1281212929
1281312930 if test "$set_werror" = "yes"
1281412931 then
12815 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -Werror" >&5
12816 $as_echo_n "checking whether compiler handles -Werror... " >&6; }
12817 if ${gl_cv_warn__Werror+:} false; then :
12932
12933 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -Werror" >&5
12934 $as_echo_n "checking whether C compiler handles -Werror... " >&6; }
12935 if ${gl_cv_warn_c__Werror+:} false; then :
1281812936 $as_echo_n "(cached) " >&6
1281912937 else
1282012938
12821 gl_save_CPPFLAGS="$CPPFLAGS"
12822 CPPFLAGS="${CPPFLAGS} -Werror"
12939 gl_save_compiler_FLAGS="$CFLAGS"
12940 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -Werror"
1282312941 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1282412942 /* end confdefs.h. */
1282512943
1283112949 return 0;
1283212950 }
1283312951 _ACEOF
12834 if ac_fn_c_try_cpp "$LINENO"; then :
12835 gl_cv_warn__Werror=yes
12836 else
12837 gl_cv_warn__Werror=no
12838 fi
12839 rm -f conftest.err conftest.i conftest.$ac_ext
12840 CPPFLAGS="$gl_save_CPPFLAGS"
12841
12842 fi
12843 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__Werror" >&5
12844 $as_echo "$gl_cv_warn__Werror" >&6; }
12845 if test "x$gl_cv_warn__Werror" = xyes; then :
12952 if ac_fn_c_try_link "$LINENO"; then :
12953 gl_cv_warn_c__Werror=yes
12954 else
12955 gl_cv_warn_c__Werror=no
12956 fi
12957 rm -f core conftest.err conftest.$ac_objext \
12958 conftest$ac_exeext conftest.$ac_ext
12959 CFLAGS="$gl_save_compiler_FLAGS"
12960
12961 fi
12962 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__Werror" >&5
12963 $as_echo "$gl_cv_warn_c__Werror" >&6; }
12964 if test "x$gl_cv_warn_c__Werror" = xyes; then :
1284612965 as_fn_append WARN_CFLAGS " -Werror"
1284712966 fi
12967
1284812968
1284912969 fi
1285012970
1306413184 $as_echo "yes" >&6; }
1306513185
1306613186 fi
13187 enable_tests=no
13188
13189 pkg_failed=no
13190 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GLIB2" >&5
13191 $as_echo_n "checking for GLIB2... " >&6; }
13192
13193 if test -n "$GLIB2_CFLAGS"; then
13194 pkg_cv_GLIB2_CFLAGS="$GLIB2_CFLAGS"
13195 elif test -n "$PKG_CONFIG"; then
13196 if test -n "$PKG_CONFIG" && \
13197 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB2_TEST_REQUIRED\""; } >&5
13198 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB2_TEST_REQUIRED") 2>&5
13199 ac_status=$?
13200 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
13201 test $ac_status = 0; }; then
13202 pkg_cv_GLIB2_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= $GLIB2_TEST_REQUIRED" 2>/dev/null`
13203 test "x$?" != "x0" && pkg_failed=yes
13204 else
13205 pkg_failed=yes
13206 fi
13207 else
13208 pkg_failed=untried
13209 fi
13210 if test -n "$GLIB2_LIBS"; then
13211 pkg_cv_GLIB2_LIBS="$GLIB2_LIBS"
13212 elif test -n "$PKG_CONFIG"; then
13213 if test -n "$PKG_CONFIG" && \
13214 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB2_TEST_REQUIRED\""; } >&5
13215 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB2_TEST_REQUIRED") 2>&5
13216 ac_status=$?
13217 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
13218 test $ac_status = 0; }; then
13219 pkg_cv_GLIB2_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= $GLIB2_TEST_REQUIRED" 2>/dev/null`
13220 test "x$?" != "x0" && pkg_failed=yes
13221 else
13222 pkg_failed=yes
13223 fi
13224 else
13225 pkg_failed=untried
13226 fi
13227
13228
13229
13230 if test $pkg_failed = yes; then
13231 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
13232 $as_echo "no" >&6; }
13233
13234 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
13235 _pkg_short_errors_supported=yes
13236 else
13237 _pkg_short_errors_supported=no
13238 fi
13239 if test $_pkg_short_errors_supported = yes; then
13240 GLIB2_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 >= $GLIB2_TEST_REQUIRED" 2>&1`
13241 else
13242 GLIB2_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 >= $GLIB2_TEST_REQUIRED" 2>&1`
13243 fi
13244 # Put the nasty error message in config.log where it belongs
13245 echo "$GLIB2_PKG_ERRORS" >&5
13246
1306713247
1306813248 pkg_failed=no
1306913249 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GLIB2" >&5
1315513335 $as_echo "yes" >&6; }
1315613336
1315713337 fi
13338 elif test $pkg_failed = untried; then
13339 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
13340 $as_echo "no" >&6; }
13341
13342 pkg_failed=no
13343 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GLIB2" >&5
13344 $as_echo_n "checking for GLIB2... " >&6; }
13345
13346 if test -n "$GLIB2_CFLAGS"; then
13347 pkg_cv_GLIB2_CFLAGS="$GLIB2_CFLAGS"
13348 elif test -n "$PKG_CONFIG"; then
13349 if test -n "$PKG_CONFIG" && \
13350 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB2_REQUIRED\""; } >&5
13351 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB2_REQUIRED") 2>&5
13352 ac_status=$?
13353 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
13354 test $ac_status = 0; }; then
13355 pkg_cv_GLIB2_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= $GLIB2_REQUIRED" 2>/dev/null`
13356 test "x$?" != "x0" && pkg_failed=yes
13357 else
13358 pkg_failed=yes
13359 fi
13360 else
13361 pkg_failed=untried
13362 fi
13363 if test -n "$GLIB2_LIBS"; then
13364 pkg_cv_GLIB2_LIBS="$GLIB2_LIBS"
13365 elif test -n "$PKG_CONFIG"; then
13366 if test -n "$PKG_CONFIG" && \
13367 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= \$GLIB2_REQUIRED\""; } >&5
13368 ($PKG_CONFIG --exists --print-errors "glib-2.0 >= $GLIB2_REQUIRED") 2>&5
13369 ac_status=$?
13370 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
13371 test $ac_status = 0; }; then
13372 pkg_cv_GLIB2_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= $GLIB2_REQUIRED" 2>/dev/null`
13373 test "x$?" != "x0" && pkg_failed=yes
13374 else
13375 pkg_failed=yes
13376 fi
13377 else
13378 pkg_failed=untried
13379 fi
13380
13381
13382
13383 if test $pkg_failed = yes; then
13384 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
13385 $as_echo "no" >&6; }
13386
13387 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
13388 _pkg_short_errors_supported=yes
13389 else
13390 _pkg_short_errors_supported=no
13391 fi
13392 if test $_pkg_short_errors_supported = yes; then
13393 GLIB2_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 >= $GLIB2_REQUIRED" 2>&1`
13394 else
13395 GLIB2_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 >= $GLIB2_REQUIRED" 2>&1`
13396 fi
13397 # Put the nasty error message in config.log where it belongs
13398 echo "$GLIB2_PKG_ERRORS" >&5
13399
13400 as_fn_error $? "Package requirements (glib-2.0 >= $GLIB2_REQUIRED) were not met:
13401
13402 $GLIB2_PKG_ERRORS
13403
13404 Consider adjusting the PKG_CONFIG_PATH environment variable if you
13405 installed software in a non-standard prefix.
13406
13407 Alternatively, you may set the environment variables GLIB2_CFLAGS
13408 and GLIB2_LIBS to avoid the need to call pkg-config.
13409 See the pkg-config man page for more details." "$LINENO" 5
13410 elif test $pkg_failed = untried; then
13411 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
13412 $as_echo "no" >&6; }
13413 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
13414 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
13415 as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it
13416 is in your PATH or set the PKG_CONFIG environment variable to the full
13417 path to pkg-config.
13418
13419 Alternatively, you may set the environment variables GLIB2_CFLAGS
13420 and GLIB2_LIBS to avoid the need to call pkg-config.
13421 See the pkg-config man page for more details.
13422
13423 To get pkg-config, see <http://pkg-config.freedesktop.org/>.
13424 See \`config.log' for more details" "$LINENO" 5; }
13425 else
13426 GLIB2_CFLAGS=$pkg_cv_GLIB2_CFLAGS
13427 GLIB2_LIBS=$pkg_cv_GLIB2_LIBS
13428 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
13429 $as_echo "yes" >&6; }
13430
13431 fi
13432 else
13433 GLIB2_CFLAGS=$pkg_cv_GLIB2_CFLAGS
13434 GLIB2_LIBS=$pkg_cv_GLIB2_LIBS
13435 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
13436 $as_echo "yes" >&6; }
13437 enable_tests=yes
13438 fi
1315813439
1315913440 pkg_failed=no
1316013441 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTHREAD2" >&5
1351913800 $as_echo "yes" >&6; }
1352013801
1352113802 fi
13803
13804 if test "$enable_tests" = "yes"; then
13805 ENABLE_TESTS_TRUE=
13806 ENABLE_TESTS_FALSE='#'
13807 else
13808 ENABLE_TESTS_TRUE='#'
13809 ENABLE_TESTS_FALSE=
13810 fi
13811
1352213812
1352313813
1352413814 GETTEXT_PACKAGE=libvirt-glib
1411314403
1411414404
1411514405
14116 # Extract the first word of "gtkdoc-check", so it can be a program name with args.
14406 gtk_doc_requires="gtk-doc >= 1.10"
14407 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gtk-doc" >&5
14408 $as_echo_n "checking for gtk-doc... " >&6; }
14409 if test -n "$PKG_CONFIG" && \
14410 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$gtk_doc_requires\""; } >&5
14411 ($PKG_CONFIG --exists --print-errors "$gtk_doc_requires") 2>&5
14412 ac_status=$?
14413 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
14414 test $ac_status = 0; }; then
14415 have_gtk_doc=yes
14416 else
14417 have_gtk_doc=no
14418 fi
14419 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_gtk_doc" >&5
14420 $as_echo "$have_gtk_doc" >&6; }
14421
14422 if test "$have_gtk_doc" = "no"; then
14423 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
14424 You will not be able to create source packages with 'make dist'
14425 because $gtk_doc_requires is not found." >&5
14426 $as_echo "$as_me: WARNING:
14427 You will not be able to create source packages with 'make dist'
14428 because $gtk_doc_requires is not found." >&2;}
14429 fi
14430
14431 # Extract the first word of "gtkdoc-check", so it can be a program name with args.
1411714432 set dummy gtkdoc-check; ac_word=$2
1411814433 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1411914434 $as_echo_n "checking for $ac_word... " >&6; }
14120 if ${ac_cv_path_GTKDOC_CHECK+:} false; then :
14435 if ${ac_cv_prog_GTKDOC_CHECK+:} false; then :
1412114436 $as_echo_n "(cached) " >&6
1412214437 else
14123 case $GTKDOC_CHECK in
14438 if test -n "$GTKDOC_CHECK"; then
14439 ac_cv_prog_GTKDOC_CHECK="$GTKDOC_CHECK" # Let the user override the test.
14440 else
14441 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
14442 for as_dir in $PATH
14443 do
14444 IFS=$as_save_IFS
14445 test -z "$as_dir" && as_dir=.
14446 for ac_exec_ext in '' $ac_executable_extensions; do
14447 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
14448 ac_cv_prog_GTKDOC_CHECK="gtkdoc-check.test"
14449 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
14450 break 2
14451 fi
14452 done
14453 done
14454 IFS=$as_save_IFS
14455
14456 fi
14457 fi
14458 GTKDOC_CHECK=$ac_cv_prog_GTKDOC_CHECK
14459 if test -n "$GTKDOC_CHECK"; then
14460 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_CHECK" >&5
14461 $as_echo "$GTKDOC_CHECK" >&6; }
14462 else
14463 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
14464 $as_echo "no" >&6; }
14465 fi
14466
14467
14468 # Extract the first word of "gtkdoc-check", so it can be a program name with args.
14469 set dummy gtkdoc-check; ac_word=$2
14470 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
14471 $as_echo_n "checking for $ac_word... " >&6; }
14472 if ${ac_cv_path_GTKDOC_CHECK_PATH+:} false; then :
14473 $as_echo_n "(cached) " >&6
14474 else
14475 case $GTKDOC_CHECK_PATH in
1412414476 [\\/]* | ?:[\\/]*)
14125 ac_cv_path_GTKDOC_CHECK="$GTKDOC_CHECK" # Let the user override the test with a path.
14477 ac_cv_path_GTKDOC_CHECK_PATH="$GTKDOC_CHECK_PATH" # Let the user override the test with a path.
1412614478 ;;
1412714479 *)
1412814480 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1413214484 test -z "$as_dir" && as_dir=.
1413314485 for ac_exec_ext in '' $ac_executable_extensions; do
1413414486 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
14135 ac_cv_path_GTKDOC_CHECK="$as_dir/$ac_word$ac_exec_ext"
14487 ac_cv_path_GTKDOC_CHECK_PATH="$as_dir/$ac_word$ac_exec_ext"
1413614488 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
1413714489 break 2
1413814490 fi
1414314495 ;;
1414414496 esac
1414514497 fi
14146 GTKDOC_CHECK=$ac_cv_path_GTKDOC_CHECK
14147 if test -n "$GTKDOC_CHECK"; then
14148 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_CHECK" >&5
14149 $as_echo "$GTKDOC_CHECK" >&6; }
14498 GTKDOC_CHECK_PATH=$ac_cv_path_GTKDOC_CHECK_PATH
14499 if test -n "$GTKDOC_CHECK_PATH"; then
14500 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GTKDOC_CHECK_PATH" >&5
14501 $as_echo "$GTKDOC_CHECK_PATH" >&6; }
1415014502 else
1415114503 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
1415214504 $as_echo "no" >&6; }
1425914611 fi
1426014612
1426114613
14262 if test x$enable_gtk_doc = xyes; then
14263 if test -n "$PKG_CONFIG" && \
14264 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk-doc >= 1.10\""; } >&5
14265 ($PKG_CONFIG --exists --print-errors "gtk-doc >= 1.10") 2>&5
14266 ac_status=$?
14267 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
14268 test $ac_status = 0; }; then
14269 :
14270 else
14271 as_fn_error $? "You need to have gtk-doc >= 1.10 installed to build $PACKAGE_NAME" "$LINENO" 5
14272 fi
14273 if test "x$PACKAGE_NAME" != "xglib"; then
14614 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build gtk-doc documentation" >&5
14615 $as_echo_n "checking whether to build gtk-doc documentation... " >&6; }
14616 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_gtk_doc" >&5
14617 $as_echo "$enable_gtk_doc" >&6; }
14618
14619 if test "x$enable_gtk_doc" = "xyes" && test "$have_gtk_doc" = "no"; then
14620 as_fn_error $? "
14621 You must have $gtk_doc_requires installed to build documentation for
14622 $PACKAGE_NAME. Please install gtk-doc or disable building the
14623 documentation by adding '--disable-gtk-doc' to '$0'." "$LINENO" 5
14624 fi
14625
14626 if test "x$PACKAGE_NAME" != "xglib"; then
1427414627
1427514628 pkg_failed=no
1427614629 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTKDOC_DEPS" >&5
1434214695 $as_echo "yes" >&6; }
1434314696
1434414697 fi
14345 fi
1434614698 fi
14347
14348 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build gtk-doc documentation" >&5
14349 $as_echo_n "checking whether to build gtk-doc documentation... " >&6; }
14350 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_gtk_doc" >&5
14351 $as_echo "$enable_gtk_doc" >&6; }
1435214699
1435314700 # Check whether --enable-gtk-doc-html was given.
1435414701 if test "${enable_gtk_doc_html+set}" = set; then :
1437414721 fi
1437514722
1437614723
14724 if test x$have_gtk_doc = xyes; then
14725 HAVE_GTK_DOC_TRUE=
14726 HAVE_GTK_DOC_FALSE='#'
14727 else
14728 HAVE_GTK_DOC_TRUE='#'
14729 HAVE_GTK_DOC_FALSE=
14730 fi
14731
1437714732 if test x$enable_gtk_doc = xyes; then
1437814733 ENABLE_GTK_DOC_TRUE=
1437914734 ENABLE_GTK_DOC_FALSE='#'
1441814773
1441914774 # Setup GLIB_MKENUMS to use glib-mkenums even if GLib is uninstalled.
1442014775 GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0`
14776
14777
14778
14779 # Check whether --enable-installed-tests was given.
14780 if test "${enable_installed_tests+set}" = set; then :
14781 enableval=$enable_installed_tests; case ${enableval} in
14782 yes) ENABLE_INSTALLED_TESTS="1" ;;
14783 no) ENABLE_INSTALLED_TESTS="" ;;
14784 *) as_fn_error $? "bad value ${enableval} for --enable-installed-tests" "$LINENO" 5 ;;
14785 esac
14786 fi
14787
14788 if test "$ENABLE_INSTALLED_TESTS" = "1"; then
14789 ENABLE_INSTALLED_TESTS_TRUE=
14790 ENABLE_INSTALLED_TESTS_FALSE='#'
14791 else
14792 ENABLE_INSTALLED_TESTS_TRUE='#'
14793 ENABLE_INSTALLED_TESTS_FALSE=
14794 fi
14795
14796 # Check whether --enable-always-build-tests was given.
14797 if test "${enable_always_build_tests+set}" = set; then :
14798 enableval=$enable_always_build_tests; case ${enableval} in
14799 yes) ENABLE_ALWAYS_BUILD_TESTS="1" ;;
14800 no) ENABLE_ALWAYS_BUILD_TESTS="" ;;
14801 *) as_fn_error $? "bad value ${enableval} for --enable-always-build-tests" "$LINENO" 5 ;;
14802 esac
14803 fi
14804
14805 if test "$ENABLE_ALWAYS_BUILD_TESTS" = "1"; then
14806 ENABLE_ALWAYS_BUILD_TESTS_TRUE=
14807 ENABLE_ALWAYS_BUILD_TESTS_FALSE='#'
14808 else
14809 ENABLE_ALWAYS_BUILD_TESTS_TRUE='#'
14810 ENABLE_ALWAYS_BUILD_TESTS_FALSE=
14811 fi
14812
14813 if test "$ENABLE_INSTALLED_TESTS" = "1"; then
14814 installed_test_metadir=${datadir}/installed-tests/libvirt-glib
14815
14816 installed_testdir=${libexecdir}/installed-tests/libvirt-glib
14817
14818 fi
1442114819
1442214820
1442314821 CYGWIN_EXTRA_LDFLAGS=
1445514853 enable_coverage=$enableval
1445614854
1445714855 if test "${enable_coverage}" = yes; then
14458 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -fprofile-arcs" >&5
14459 $as_echo_n "checking whether compiler handles -fprofile-arcs... " >&6; }
14460 if ${gl_cv_warn__fprofile_arcs+:} false; then :
14856
14857 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -fprofile-arcs" >&5
14858 $as_echo_n "checking whether C compiler handles -fprofile-arcs... " >&6; }
14859 if ${gl_cv_warn_c__fprofile_arcs+:} false; then :
1446114860 $as_echo_n "(cached) " >&6
1446214861 else
1446314862
14464 gl_save_CPPFLAGS="$CPPFLAGS"
14465 CPPFLAGS="${CPPFLAGS} -fprofile-arcs"
14863 gl_save_compiler_FLAGS="$CFLAGS"
14864 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -fprofile-arcs"
1446614865 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1446714866 /* end confdefs.h. */
1446814867
1447414873 return 0;
1447514874 }
1447614875 _ACEOF
14477 if ac_fn_c_try_cpp "$LINENO"; then :
14478 gl_cv_warn__fprofile_arcs=yes
14479 else
14480 gl_cv_warn__fprofile_arcs=no
14481 fi
14482 rm -f conftest.err conftest.i conftest.$ac_ext
14483 CPPFLAGS="$gl_save_CPPFLAGS"
14484
14485 fi
14486 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__fprofile_arcs" >&5
14487 $as_echo "$gl_cv_warn__fprofile_arcs" >&6; }
14488 if test "x$gl_cv_warn__fprofile_arcs" = xyes; then :
14876 if ac_fn_c_try_link "$LINENO"; then :
14877 gl_cv_warn_c__fprofile_arcs=yes
14878 else
14879 gl_cv_warn_c__fprofile_arcs=no
14880 fi
14881 rm -f core conftest.err conftest.$ac_objext \
14882 conftest$ac_exeext conftest.$ac_ext
14883 CFLAGS="$gl_save_compiler_FLAGS"
14884
14885 fi
14886 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__fprofile_arcs" >&5
14887 $as_echo "$gl_cv_warn_c__fprofile_arcs" >&6; }
14888 if test "x$gl_cv_warn_c__fprofile_arcs" = xyes; then :
1448914889 as_fn_append COV_FLAGS " -fprofile-arcs"
1449014890 fi
1449114891
14492 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler handles -ftest-coverage" >&5
14493 $as_echo_n "checking whether compiler handles -ftest-coverage... " >&6; }
14494 if ${gl_cv_warn__ftest_coverage+:} false; then :
14892
14893
14894 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -ftest-coverage" >&5
14895 $as_echo_n "checking whether C compiler handles -ftest-coverage... " >&6; }
14896 if ${gl_cv_warn_c__ftest_coverage+:} false; then :
1449514897 $as_echo_n "(cached) " >&6
1449614898 else
1449714899
14498 gl_save_CPPFLAGS="$CPPFLAGS"
14499 CPPFLAGS="${CPPFLAGS} -ftest-coverage"
14900 gl_save_compiler_FLAGS="$CFLAGS"
14901 as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -ftest-coverage"
1450014902 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1450114903 /* end confdefs.h. */
1450214904
1450814910 return 0;
1450914911 }
1451014912 _ACEOF
14511 if ac_fn_c_try_cpp "$LINENO"; then :
14512 gl_cv_warn__ftest_coverage=yes
14513 else
14514 gl_cv_warn__ftest_coverage=no
14515 fi
14516 rm -f conftest.err conftest.i conftest.$ac_ext
14517 CPPFLAGS="$gl_save_CPPFLAGS"
14518
14519 fi
14520 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn__ftest_coverage" >&5
14521 $as_echo "$gl_cv_warn__ftest_coverage" >&6; }
14522 if test "x$gl_cv_warn__ftest_coverage" = xyes; then :
14913 if ac_fn_c_try_link "$LINENO"; then :
14914 gl_cv_warn_c__ftest_coverage=yes
14915 else
14916 gl_cv_warn_c__ftest_coverage=no
14917 fi
14918 rm -f core conftest.err conftest.$ac_objext \
14919 conftest$ac_exeext conftest.$ac_ext
14920 CFLAGS="$gl_save_compiler_FLAGS"
14921
14922 fi
14923 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__ftest_coverage" >&5
14924 $as_echo "$gl_cv_warn_c__ftest_coverage" >&6; }
14925 if test "x$gl_cv_warn_c__ftest_coverage" = xyes; then :
1452314926 as_fn_append COV_FLAGS " -ftest-coverage"
1452414927 fi
14928
1452514929
1452614930 COVERAGE_CFLAGS=$COV_FLAGS
1452714931
1466015064
1466115065
1466215066
14663 # Check whether --enable-introspection was given.
15067
15068
15069
15070 # Check whether --enable-introspection was given.
1466415071 if test "${enable_introspection+set}" = set; then :
1466515072 enableval=$enable_introspection;
1466615073 else
14667 enable_introspection=check
14668 fi
14669
14670
14671 if test "x$enable_introspection" != "xno" ; then
14672
14673 pkg_failed=no
14674 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GOBJECT_INTROSPECTION" >&5
14675 $as_echo_n "checking for GOBJECT_INTROSPECTION... " >&6; }
14676
14677 if test -n "$GOBJECT_INTROSPECTION_CFLAGS"; then
14678 pkg_cv_GOBJECT_INTROSPECTION_CFLAGS="$GOBJECT_INTROSPECTION_CFLAGS"
14679 elif test -n "$PKG_CONFIG"; then
14680 if test -n "$PKG_CONFIG" && \
15074 enable_introspection=auto
15075 fi
15076
15077
15078 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gobject-introspection" >&5
15079 $as_echo_n "checking for gobject-introspection... " >&6; }
15080
15081 case $enable_introspection in #(
15082 no) :
15083 found_introspection="no (disabled, use --enable-introspection to enable)"
15084 ;; #(
15085 yes) :
15086 if test -n "$PKG_CONFIG" && \
15087 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gobject-introspection-1.0\""; } >&5
15088 ($PKG_CONFIG --exists --print-errors "gobject-introspection-1.0") 2>&5
15089 ac_status=$?
15090 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
15091 test $ac_status = 0; }; then
15092 :
15093 else
15094 as_fn_error $? "gobject-introspection-1.0 is not installed" "$LINENO" 5
15095 fi
15096 if test -n "$PKG_CONFIG" && \
1468115097 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gobject-introspection-1.0 >= \$GOBJECT_INTROSPECTION_REQUIRED\""; } >&5
1468215098 ($PKG_CONFIG --exists --print-errors "gobject-introspection-1.0 >= $GOBJECT_INTROSPECTION_REQUIRED") 2>&5
1468315099 ac_status=$?
1468415100 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1468515101 test $ac_status = 0; }; then
14686 pkg_cv_GOBJECT_INTROSPECTION_CFLAGS=`$PKG_CONFIG --cflags "gobject-introspection-1.0 >= $GOBJECT_INTROSPECTION_REQUIRED" 2>/dev/null`
14687 test "x$?" != "x0" && pkg_failed=yes
14688 else
14689 pkg_failed=yes
14690 fi
14691 else
14692 pkg_failed=untried
14693 fi
14694 if test -n "$GOBJECT_INTROSPECTION_LIBS"; then
14695 pkg_cv_GOBJECT_INTROSPECTION_LIBS="$GOBJECT_INTROSPECTION_LIBS"
14696 elif test -n "$PKG_CONFIG"; then
14697 if test -n "$PKG_CONFIG" && \
15102 found_introspection=yes
15103 else
15104 as_fn_error $? "You need to have gobject-introspection >= $GOBJECT_INTROSPECTION_REQUIRED installed to build libvirt-glib" "$LINENO" 5
15105 fi
15106 ;; #(
15107 auto) :
15108 if test -n "$PKG_CONFIG" && \
1469815109 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gobject-introspection-1.0 >= \$GOBJECT_INTROSPECTION_REQUIRED\""; } >&5
1469915110 ($PKG_CONFIG --exists --print-errors "gobject-introspection-1.0 >= $GOBJECT_INTROSPECTION_REQUIRED") 2>&5
1470015111 ac_status=$?
1470115112 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1470215113 test $ac_status = 0; }; then
14703 pkg_cv_GOBJECT_INTROSPECTION_LIBS=`$PKG_CONFIG --libs "gobject-introspection-1.0 >= $GOBJECT_INTROSPECTION_REQUIRED" 2>/dev/null`
14704 test "x$?" != "x0" && pkg_failed=yes
14705 else
14706 pkg_failed=yes
14707 fi
14708 else
14709 pkg_failed=untried
14710 fi
14711
14712
14713
14714 if test $pkg_failed = yes; then
14715 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
14716 $as_echo "no" >&6; }
14717
14718 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
14719 _pkg_short_errors_supported=yes
14720 else
14721 _pkg_short_errors_supported=no
14722 fi
14723 if test $_pkg_short_errors_supported = yes; then
14724 GOBJECT_INTROSPECTION_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gobject-introspection-1.0 >= $GOBJECT_INTROSPECTION_REQUIRED" 2>&1`
14725 else
14726 GOBJECT_INTROSPECTION_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gobject-introspection-1.0 >= $GOBJECT_INTROSPECTION_REQUIRED" 2>&1`
14727 fi
14728 # Put the nasty error message in config.log where it belongs
14729 echo "$GOBJECT_INTROSPECTION_PKG_ERRORS" >&5
14730
14731
14732 if test "x$enable_introspection" = "xcheck"; then
14733 enable_introspection=no
14734 else
14735 as_fn_error $? "gobject-introspection is not available" "$LINENO" 5
14736 fi
14737
14738 elif test $pkg_failed = untried; then
14739 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
14740 $as_echo "no" >&6; }
14741
14742 if test "x$enable_introspection" = "xcheck"; then
14743 enable_introspection=no
14744 else
14745 as_fn_error $? "gobject-introspection is not available" "$LINENO" 5
14746 fi
14747
14748 else
14749 GOBJECT_INTROSPECTION_CFLAGS=$pkg_cv_GOBJECT_INTROSPECTION_CFLAGS
14750 GOBJECT_INTROSPECTION_LIBS=$pkg_cv_GOBJECT_INTROSPECTION_LIBS
14751 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
14752 $as_echo "yes" >&6; }
14753 enable_introspection=yes
14754 fi
14755 if test "x$enable_introspection" = "xyes" ; then
14756
14757 $as_echo "#define WITH_GOBJECT_INTROSPECTION 1" >>confdefs.h
14758
14759
14760
14761 G_IR_SCANNER=$($PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0)
14762
14763 G_IR_COMPILER=$($PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0)
14764
14765 fi
14766 fi
14767 if test "x$enable_introspection" = "xyes"; then
14768 WITH_GOBJECT_INTROSPECTION_TRUE=
14769 WITH_GOBJECT_INTROSPECTION_FALSE='#'
14770 else
14771 WITH_GOBJECT_INTROSPECTION_TRUE='#'
14772 WITH_GOBJECT_INTROSPECTION_FALSE=
15114 found_introspection=yes
15115 else
15116 found_introspection=no
15117 fi
15118 enable_introspection=$found_introspection
15119 ;; #(
15120 *) :
15121 as_fn_error $? "invalid argument passed to --enable-introspection, should be one of [no/auto/yes]" "$LINENO" 5
15122 ;;
15123 esac
15124 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $found_introspection" >&5
15125 $as_echo "$found_introspection" >&6; }
15126
15127 INTROSPECTION_SCANNER=
15128 INTROSPECTION_COMPILER=
15129 INTROSPECTION_GENERATE=
15130 INTROSPECTION_GIRDIR=
15131 INTROSPECTION_TYPELIBDIR=
15132 if test "x$found_introspection" = "xyes"; then
15133 INTROSPECTION_SCANNER=`$PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0`
15134 INTROSPECTION_COMPILER=`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0`
15135 INTROSPECTION_GENERATE=`$PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0`
15136 INTROSPECTION_GIRDIR=`$PKG_CONFIG --variable=girdir gobject-introspection-1.0`
15137 INTROSPECTION_TYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)"
15138 INTROSPECTION_CFLAGS=`$PKG_CONFIG --cflags gobject-introspection-1.0`
15139 INTROSPECTION_LIBS=`$PKG_CONFIG --libs gobject-introspection-1.0`
15140 INTROSPECTION_MAKEFILE=`$PKG_CONFIG --variable=datadir gobject-introspection-1.0`/gobject-introspection-1.0/Makefile.introspection
15141 fi
15142
15143
15144
15145
15146
15147
15148
15149
15150
15151 if test "x$found_introspection" = "xyes"; then
15152 HAVE_INTROSPECTION_TRUE=
15153 HAVE_INTROSPECTION_FALSE='#'
15154 else
15155 HAVE_INTROSPECTION_TRUE='#'
15156 HAVE_INTROSPECTION_FALSE=
15157 fi
15158
15159
15160
15161
15162 with_linux=no
15163 case $host in
15164 *-*-linux*) with_linux=yes ;;
15165 esac
15166 if test "$with_linux" = "yes"; then
15167 WITH_LINUX_TRUE=
15168 WITH_LINUX_FALSE='#'
15169 else
15170 WITH_LINUX_TRUE='#'
15171 WITH_LINUX_FALSE=
1477315172 fi
1477415173
1477515174
1486215261 fi
1486315262
1486415263
14865 ac_config_files="$ac_config_files Makefile libvirt-glib/Makefile libvirt-gconfig/Makefile libvirt-gconfig/tests/Makefile libvirt-gobject/Makefile examples/Makefile python/Makefile vapi/Makefile docs/Makefile docs/libvirt-glib/Makefile docs/libvirt-glib/version.xml docs/libvirt-gobject/Makefile docs/libvirt-gconfig/Makefile po/Makefile.in libvirt-glib-1.0.pc libvirt-gconfig-1.0.pc libvirt-gobject-1.0.pc libvirt-glib.spec mingw-libvirt-glib.spec"
15264 ac_config_files="$ac_config_files Makefile libvirt-glib/Makefile libvirt-gconfig/Makefile libvirt-gconfig/tests/Makefile libvirt-gobject/Makefile examples/Makefile python/Makefile vapi/Makefile docs/Makefile docs/libvirt-glib/Makefile docs/libvirt-glib/version.xml docs/libvirt-gobject/Makefile docs/libvirt-gconfig/Makefile po/Makefile.in tests/Makefile libvirt-glib-1.0.pc libvirt-gconfig-1.0.pc libvirt-gobject-1.0.pc libvirt-glib.spec mingw-libvirt-glib.spec"
1486615265
1486715266 cat >confcache <<\_ACEOF
1486815267 # This file is a shell script that caches the results of configure
1499715396 as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
1499815397 Usually this means the macro was only invoked conditionally." "$LINENO" 5
1499915398 fi
15399 if test -z "${ENABLE_TESTS_TRUE}" && test -z "${ENABLE_TESTS_FALSE}"; then
15400 as_fn_error $? "conditional \"ENABLE_TESTS\" was never defined.
15401 Usually this means the macro was only invoked conditionally." "$LINENO" 5
15402 fi
1500015403
1500115404 ac_config_commands="$ac_config_commands po/stamp-it"
1500215405
1500315406
15407 if test -z "${HAVE_GTK_DOC_TRUE}" && test -z "${HAVE_GTK_DOC_FALSE}"; then
15408 as_fn_error $? "conditional \"HAVE_GTK_DOC\" was never defined.
15409 Usually this means the macro was only invoked conditionally." "$LINENO" 5
15410 fi
1500415411 if test -z "${ENABLE_GTK_DOC_TRUE}" && test -z "${ENABLE_GTK_DOC_FALSE}"; then
1500515412 as_fn_error $? "conditional \"ENABLE_GTK_DOC\" was never defined.
1500615413 Usually this means the macro was only invoked conditionally." "$LINENO" 5
1502115428 as_fn_error $? "conditional \"GTK_DOC_USE_REBASE\" was never defined.
1502215429 Usually this means the macro was only invoked conditionally." "$LINENO" 5
1502315430 fi
15431 if test -z "${ENABLE_INSTALLED_TESTS_TRUE}" && test -z "${ENABLE_INSTALLED_TESTS_FALSE}"; then
15432 as_fn_error $? "conditional \"ENABLE_INSTALLED_TESTS\" was never defined.
15433 Usually this means the macro was only invoked conditionally." "$LINENO" 5
15434 fi
15435 if test -z "${ENABLE_ALWAYS_BUILD_TESTS_TRUE}" && test -z "${ENABLE_ALWAYS_BUILD_TESTS_FALSE}"; then
15436 as_fn_error $? "conditional \"ENABLE_ALWAYS_BUILD_TESTS\" was never defined.
15437 Usually this means the macro was only invoked conditionally." "$LINENO" 5
15438 fi
1502415439 if test -z "${WITH_PYTHON_TRUE}" && test -z "${WITH_PYTHON_FALSE}"; then
1502515440 as_fn_error $? "conditional \"WITH_PYTHON\" was never defined.
1502615441 Usually this means the macro was only invoked conditionally." "$LINENO" 5
1502715442 fi
15028 if test -z "${WITH_GOBJECT_INTROSPECTION_TRUE}" && test -z "${WITH_GOBJECT_INTROSPECTION_FALSE}"; then
15029 as_fn_error $? "conditional \"WITH_GOBJECT_INTROSPECTION\" was never defined.
15443 if test -z "${HAVE_INTROSPECTION_TRUE}" && test -z "${HAVE_INTROSPECTION_FALSE}"; then
15444 as_fn_error $? "conditional \"HAVE_INTROSPECTION\" was never defined.
15445 Usually this means the macro was only invoked conditionally." "$LINENO" 5
15446 fi
15447 if test -z "${WITH_LINUX_TRUE}" && test -z "${WITH_LINUX_FALSE}"; then
15448 as_fn_error $? "conditional \"WITH_LINUX\" was never defined.
1503015449 Usually this means the macro was only invoked conditionally." "$LINENO" 5
1503115450 fi
1503215451 if test -z "${WITH_VALA_TRUE}" && test -z "${WITH_VALA_FALSE}"; then
1543015849 # report actual input values of CONFIG_FILES etc. instead of their
1543115850 # values after options handling.
1543215851 ac_log="
15433 This file was extended by libvirt-glib $as_me 0.1.7, which was
15852 This file was extended by libvirt-glib $as_me 0.1.9, which was
1543415853 generated by GNU Autoconf 2.69. Invocation command line was
1543515854
1543615855 CONFIG_FILES = $CONFIG_FILES
1550015919 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1550115920 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1550215921 ac_cs_version="\\
15503 libvirt-glib config.status 0.1.7
15922 libvirt-glib config.status 0.1.9
1550415923 configured by $0, generated by GNU Autoconf 2.69,
1550515924 with options \\"\$ac_cs_config\\"
1550615925
1592716346 "docs/libvirt-gobject/Makefile") CONFIG_FILES="$CONFIG_FILES docs/libvirt-gobject/Makefile" ;;
1592816347 "docs/libvirt-gconfig/Makefile") CONFIG_FILES="$CONFIG_FILES docs/libvirt-gconfig/Makefile" ;;
1592916348 "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;;
16349 "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
1593016350 "libvirt-glib-1.0.pc") CONFIG_FILES="$CONFIG_FILES libvirt-glib-1.0.pc" ;;
1593116351 "libvirt-gconfig-1.0.pc") CONFIG_FILES="$CONFIG_FILES libvirt-gconfig-1.0.pc" ;;
1593216352 "libvirt-gobject-1.0.pc") CONFIG_FILES="$CONFIG_FILES libvirt-gobject-1.0.pc" ;;
0 AC_INIT(libvirt-glib, 0.1.7)
0 AC_INIT(libvirt-glib, 0.1.9)
11 AC_CONFIG_SRCDIR(libvirt-glib/libvirt-glib-main.c)
22 AC_CONFIG_AUX_DIR([build-aux])
33 AC_CONFIG_HEADERS([config.h])
1010
1111 LIBVIRT_REQUIRED=0.10.2
1212 AC_SUBST([LIBVIRT_REQUIRED]) dnl used in the .spec file
13 GLIB2_REQUIRED=2.22.0
13 GLIB2_REQUIRED=2.36.0
14 AC_SUBST([GLIB2_REQUIRED]) dnl used in the .spec file
15 GLIB2_TEST_REQUIRED=2.38.0
1416 GOBJECT2_REQUIRED=2.10.0
1517 GIO_REQUIRED=2.10.0
1618 GOBJECT_INTROSPECTION_REQUIRED=0.10.8
9092 LIBVIRT_GLIB_COMPILE_WARNINGS
9193
9294 PKG_CHECK_MODULES(LIBVIRT, libvirt >= $LIBVIRT_REQUIRED)
93 PKG_CHECK_MODULES(GLIB2, glib-2.0 >= $GLIB2_REQUIRED)
95 enable_tests=no
96 PKG_CHECK_MODULES(GLIB2, glib-2.0 >= $GLIB2_TEST_REQUIRED,
97 [enable_tests=yes],
98 [PKG_CHECK_MODULES(GLIB2, glib-2.0 >= $GLIB2_REQUIRED)])
9499 PKG_CHECK_MODULES(GTHREAD2, gthread-2.0 >= $GLIB2_REQUIRED)
95100 PKG_CHECK_MODULES(GOBJECT2, gobject-2.0 >= $GLIB2_REQUIRED)
96101 PKG_CHECK_MODULES(GIO2, gio-2.0 >= $GLIB2_REQUIRED)
97102 PKG_CHECK_MODULES(LIBXML2, libxml-2.0 >= $LIBXML2_REQUIRED)
98103
104 AM_CONDITIONAL([ENABLE_TESTS], [test "$enable_tests" = "yes"])
105
99106 LIBVIRT_GLIB_GETTEXT
100107 dnl Should be in m4/virt-gettext.m4 but intltoolize is too
101108 dnl dumb to find it there
107114 # Setup GLIB_MKENUMS to use glib-mkenums even if GLib is uninstalled.
108115 GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0`
109116 AC_SUBST(GLIB_MKENUMS)
117
118 GLIB_TESTS
110119
111120 dnl Extra link-time flags for Cygwin.
112121 dnl Copied from libxml2 configure.in, but I removed mingw changes
231240 AC_SUBST([PYTHON_INCLUDES])
232241 AC_SUBST([PYTHON_SITE_PACKAGES])
233242
234 AC_ARG_ENABLE([introspection],
235 AS_HELP_STRING([--enable-introspection], [enable GObject introspection]),
236 [], [enable_introspection=check])
237
238 if test "x$enable_introspection" != "xno" ; then
239 PKG_CHECK_MODULES([GOBJECT_INTROSPECTION],
240 [gobject-introspection-1.0 >= $GOBJECT_INTROSPECTION_REQUIRED],
241 [enable_introspection=yes],
242 [
243 if test "x$enable_introspection" = "xcheck"; then
244 enable_introspection=no
245 else
246 AC_MSG_ERROR([gobject-introspection is not available])
247 fi
248 ])
249 if test "x$enable_introspection" = "xyes" ; then
250 AC_DEFINE([WITH_GOBJECT_INTROSPECTION], [1], [enable GObject introspection support])
251 AC_SUBST(GOBJECT_INTROSPECTION_CFLAGS)
252 AC_SUBST(GOBJECT_INTROSPECTION_LIBS)
253 AC_SUBST([G_IR_SCANNER], [$($PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0)])
254 AC_SUBST([G_IR_COMPILER], [$($PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0)])
255 fi
256 fi
257 AM_CONDITIONAL([WITH_GOBJECT_INTROSPECTION], [test "x$enable_introspection" = "xyes"])
243 GOBJECT_INTROSPECTION_CHECK([$GOBJECT_INTROSPECTION_REQUIRED])
244
245 with_linux=no
246 case $host in
247 *-*-linux*) with_linux=yes ;;
248 esac
249 AM_CONDITIONAL([WITH_LINUX], [test "$with_linux" = "yes"])
258250
259251 AC_ARG_ENABLE([vala],
260252 AS_HELP_STRING([--enable-vala], [enable Vala binding generation]),
305297 docs/libvirt-gobject/Makefile
306298 docs/libvirt-gconfig/Makefile
307299 po/Makefile.in
300 tests/Makefile
308301 libvirt-glib-1.0.pc
309302 libvirt-gconfig-1.0.pc
310303 libvirt-gobject-1.0.pc
0 # Makefile.in generated by automake 1.13.2 from Makefile.am.
0 # Makefile.in generated by automake 1.13.4 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
7979 subdir = docs
8080 DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
8181 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
82 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
83 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
84 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
85 $(top_srcdir)/m4/lt~obsolete.m4 \
82 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
83 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
84 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
85 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
8686 $(top_srcdir)/m4/manywarnings.m4 \
8787 $(top_srcdir)/m4/virt-compile-warnings.m4 \
8888 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
213213 GIO2_LIBS = @GIO2_LIBS@
214214 GLIB2_CFLAGS = @GLIB2_CFLAGS@
215215 GLIB2_LIBS = @GLIB2_LIBS@
216 GLIB2_REQUIRED = @GLIB2_REQUIRED@
216217 GLIB_MKENUMS = @GLIB_MKENUMS@
217218 GMSGFMT = @GMSGFMT@
218219 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
219220 GOBJECT2_LIBS = @GOBJECT2_LIBS@
220 GOBJECT_INTROSPECTION_CFLAGS = @GOBJECT_INTROSPECTION_CFLAGS@
221 GOBJECT_INTROSPECTION_LIBS = @GOBJECT_INTROSPECTION_LIBS@
222221 GREP = @GREP@
223222 GTHREAD2_CFLAGS = @GTHREAD2_CFLAGS@
224223 GTHREAD2_LIBS = @GTHREAD2_LIBS@
225224 GTKDOC_CHECK = @GTKDOC_CHECK@
225 GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
226226 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
227227 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
228228 GTKDOC_MKPDF = @GTKDOC_MKPDF@
229229 GTKDOC_REBASE = @GTKDOC_REBASE@
230 G_IR_COMPILER = @G_IR_COMPILER@
231 G_IR_SCANNER = @G_IR_SCANNER@
232230 HTML_DIR = @HTML_DIR@
233231 INSTALL = @INSTALL@
234232 INSTALL_DATA = @INSTALL_DATA@
243241 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
244242 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
245243 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
244 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
245 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
246 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
247 INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
248 INTROSPECTION_LIBS = @INTROSPECTION_LIBS@
249 INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@
250 INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
251 INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
246252 LD = @LD@
247253 LDFLAGS = @LDFLAGS@
248254 LIBOBJS = @LIBOBJS@
333339 includedir = @includedir@
334340 infodir = @infodir@
335341 install_sh = @install_sh@
342 installed_test_metadir = @installed_test_metadir@
343 installed_testdir = @installed_testdir@
336344 intltool__v_merge_options_ = @intltool__v_merge_options_@
337345 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
338346 libdir = @libdir@
66 gvir_config_capabilities_new_from_xml
77 gvir_config_capabilities_get_host
88 gvir_config_capabilities_get_guests
9 GVirConfigCapabilitiesPrivate
910 <SUBSECTION Standard>
1011 GVIR_CONFIG_CAPABILITIES
1112 GVIR_CONFIG_CAPABILITIES_CLASS
1314 GVIR_CONFIG_IS_CAPABILITIES
1415 GVIR_CONFIG_IS_CAPABILITIES_CLASS
1516 GVIR_CONFIG_TYPE_CAPABILITIES
16 GVirConfigCapabilitiesPrivate
1717 gvir_config_capabilities_get_type
1818 </SECTION>
1919
2727 gvir_config_capabilities_cpu_get_features
2828 gvir_config_capabilities_cpu_get_topology
2929 gvir_config_capabilities_cpu_set_topology
30 gvir_config_capabilities_cpu_get_model
31 GVirConfigCapabilitiesCpuPrivate
3032 <SUBSECTION Standard>
3133 GVIR_CONFIG_CAPABILITIES_CPU
3234 GVIR_CONFIG_CAPABILITIES_CPU_CLASS
3436 GVIR_CONFIG_IS_CAPABILITIES_CPU
3537 GVIR_CONFIG_IS_CAPABILITIES_CPU_CLASS
3638 GVIR_CONFIG_TYPE_CAPABILITIES_CPU
37 GVirConfigCapabilitiesCpuPrivate
3839 gvir_config_capabilities_cpu_get_type
3940 </SECTION>
4041
4546 GVirConfigCapabilitiesCpuFeatureClass
4647 gvir_config_capabilities_cpu_feature_get_name
4748 gvir_config_capabilities_cpu_feature_set_name
49 GVirConfigCapabilitiesCpuFeaturePrivate
4850 <SUBSECTION Standard>
4951 GVIR_CONFIG_CAPABILITIES_CPU_FEATURE
5052 GVIR_CONFIG_CAPABILITIES_CPU_FEATURE_CLASS
5254 GVIR_CONFIG_IS_CAPABILITIES_CPU_FEATURE
5355 GVIR_CONFIG_IS_CAPABILITIES_CPU_FEATURE_CLASS
5456 GVIR_CONFIG_TYPE_CAPABILITIES_CPU_FEATURE
55 GVirConfigCapabilitiesCpuFeaturePrivate
5657 gvir_config_capabilities_cpu_feature_get_type
58 </SECTION>
59
60 <SECTION>
61 <FILE>libvirt-gconfig-capabilities-cpu-model</FILE>
62 <TITLE>GVirConfigCapabilitiesCpuModel</TITLE>
63 GVirConfigCapabilitiesCpuModel
64 GVirConfigCapabilitiesCpuModelClass
65 gvir_config_capabilities_cpu_model_new
66 gvir_config_capabilities_cpu_model_new_from_xml
67 gvir_config_capabilities_cpu_model_set_name
68 gvir_config_capabilities_cpu_model_get_name
69 GVirConfigCapabilitiesCpuModelPrivate
70 <SUBSECTION Standard>
71 GVIR_CONFIG_CAPABILITIES_CPU_MODEL
72 GVIR_CONFIG_CAPABILITIES_CPU_MODEL_CLASS
73 GVIR_CONFIG_CAPABILITIES_CPU_MODEL_GET_CLASS
74 GVIR_CONFIG_IS_CAPABILITIES_CPU_MODEL
75 GVIR_CONFIG_IS_CAPABILITIES_CPU_MODEL_CLASS
76 GVIR_CONFIG_TYPE_CAPABILITIES_CPU_MODEL
77 gvir_config_capabilities_cpu_model_get_type
5778 </SECTION>
5879
5980 <SECTION>
7495 gvir_config_capabilities_cpu_topology_set_cores
7596 gvir_config_capabilities_cpu_topology_get_threads
7697 gvir_config_capabilities_cpu_topology_set_threads
98 GVirConfigCapabilitiesCpuTopologyPrivate
7799 <SUBSECTION Standard>
78100 GVIR_CONFIG_CAPABILITIES_CPU_TOPOLOGY
79101 GVIR_CONFIG_CAPABILITIES_CPU_TOPOLOGY_CLASS
81103 GVIR_CONFIG_IS_CAPABILITIES_CPU_TOPOLOGY
82104 GVIR_CONFIG_IS_CAPABILITIES_CPU_TOPOLOGY_CLASS
83105 GVIR_CONFIG_TYPE_CAPABILITIES_CPU_TOPOLOGY
84 GVirConfigCapabilitiesCpuTopologyPrivate
85106 gvir_config_capabilities_cpu_topology_get_type
86107 </SECTION>
87108
93114 gvir_config_capabilities_guest_get_os_type
94115 gvir_config_capabilities_guest_get_arch
95116 gvir_config_capabilities_guest_get_features
117 GVirConfigCapabilitiesGuestPrivate
96118 <SUBSECTION Standard>
97119 GVIR_CONFIG_CAPABILITIES_GUEST
98120 GVIR_CONFIG_CAPABILITIES_GUEST_CLASS
100122 GVIR_CONFIG_IS_CAPABILITIES_GUEST
101123 GVIR_CONFIG_IS_CAPABILITIES_GUEST_CLASS
102124 GVIR_CONFIG_TYPE_CAPABILITIES_GUEST
103 GVirConfigCapabilitiesGuestPrivate
104125 gvir_config_capabilities_guest_get_type
105126 </SECTION>
106127
112133 gvir_config_capabilities_guest_arch_get_name
113134 gvir_config_capabilities_guest_arch_get_domains
114135 gvir_config_capabilities_guest_arch_get_emulator
136 GVirConfigCapabilitiesGuestArchPrivate
115137 <SUBSECTION Standard>
116138 GVIR_CONFIG_CAPABILITIES_GUEST_ARCH
117139 GVIR_CONFIG_CAPABILITIES_GUEST_ARCH_CLASS
119141 GVIR_CONFIG_IS_CAPABILITIES_GUEST_ARCH
120142 GVIR_CONFIG_IS_CAPABILITIES_GUEST_ARCH_CLASS
121143 GVIR_CONFIG_TYPE_CAPABILITIES_GUEST_ARCH
122 GVirConfigCapabilitiesGuestArchPrivate
123144 gvir_config_capabilities_guest_arch_get_type
124145 </SECTION>
125146
130151 GVirConfigCapabilitiesGuestDomainClass
131152 gvir_config_capabilities_guest_domain_get_emulator
132153 gvir_config_capabilities_guest_domain_get_virt_type
154 GVirConfigCapabilitiesGuestDomainPrivate
133155 <SUBSECTION Standard>
134156 GVIR_CONFIG_CAPABILITIES_GUEST_DOMAIN
135157 GVIR_CONFIG_CAPABILITIES_GUEST_DOMAIN_CLASS
137159 GVIR_CONFIG_IS_CAPABILITIES_GUEST_DOMAIN
138160 GVIR_CONFIG_IS_CAPABILITIES_GUEST_DOMAIN_CLASS
139161 GVIR_CONFIG_TYPE_CAPABILITIES_GUEST_DOMAIN
140 GVirConfigCapabilitiesGuestDomainPrivate
141162 gvir_config_capabilities_guest_domain_get_type
142163 </SECTION>
143164
147168 GVirConfigCapabilitiesGuestFeature
148169 GVirConfigCapabilitiesGuestFeatureClass
149170 gvir_config_capabilities_guest_feature_get_name
171 GVirConfigCapabilitiesGuestFeaturePrivate
150172 <SUBSECTION Standard>
151173 GVIR_CONFIG_CAPABILITIES_GUEST_FEATURE
152174 GVIR_CONFIG_CAPABILITIES_GUEST_FEATURE_CLASS
154176 GVIR_CONFIG_IS_CAPABILITIES_GUEST_FEATURE
155177 GVIR_CONFIG_IS_CAPABILITIES_GUEST_FEATURE_CLASS
156178 GVIR_CONFIG_TYPE_CAPABILITIES_GUEST_FEATURE
157 GVirConfigCapabilitiesGuestFeaturePrivate
158179 gvir_config_capabilities_guest_feature_get_type
159180 </SECTION>
160181
165186 GVirConfigCapabilitiesHostClass
166187 gvir_config_capabilities_host_get_uuid
167188 gvir_config_capabilities_host_get_cpu
189 gvir_config_capabilities_host_get_secmodels
190 GVirConfigCapabilitiesHostPrivate
168191 <SUBSECTION Standard>
169192 GVIR_CONFIG_CAPABILITIES_HOST
170193 GVIR_CONFIG_CAPABILITIES_HOST_CLASS
172195 GVIR_CONFIG_IS_CAPABILITIES_HOST
173196 GVIR_CONFIG_IS_CAPABILITIES_HOST_CLASS
174197 GVIR_CONFIG_TYPE_CAPABILITIES_HOST
175 GVirConfigCapabilitiesHostPrivate
176198 gvir_config_capabilities_host_get_type
199 </SECTION>
200
201 <SECTION>
202 <FILE>libvirt-gconfig-capabilities-host-secmodel</FILE>
203 <TITLE>GVirConfigCapabilitiesHostSecModel</TITLE>
204 GVirConfigCapabilitiesHostSecModel
205 GVirConfigCapabilitiesHostSecModelClass
206 gvir_config_capabilities_host_secmodel_get_model
207 gvir_config_capabilities_host_secmodel_get_doi
208 GVirConfigCapabilitiesHostSecModelPrivate
209 <SUBSECTION Standard>
210 GVIR_CONFIG_CAPABILITIES_HOST_SECMODEL
211 GVIR_CONFIG_CAPABILITIES_HOST_SECMODEL_CLASS
212 GVIR_CONFIG_CAPABILITIES_HOST_SECMODEL_GET_CLASS
213 GVIR_CONFIG_IS_CAPABILITIES_HOST_SECMODEL
214 GVIR_CONFIG_IS_CAPABILITIES_HOST_SECMODEL_CLASS
215 GVIR_CONFIG_TYPE_CAPABILITIES_HOST_SECMODEL
216 gvir_config_capabilities_host_secmodel_get_type
177217 </SECTION>
178218
179219 <SECTION>
197237 gvir_config_domain_set_virt_type
198238 gvir_config_domain_get_name
199239 gvir_config_domain_set_name
240 gvir_config_domain_get_uuid
241 gvir_config_domain_set_uuid
200242 gvir_config_domain_get_description
201243 gvir_config_domain_set_description
202244 gvir_config_domain_get_memory
207249 gvir_config_domain_set_vcpus
208250 gvir_config_domain_get_features
209251 gvir_config_domain_set_features
252 gvir_config_domain_get_clock
210253 gvir_config_domain_set_clock
211254 gvir_config_domain_get_os
212255 gvir_config_domain_set_os
222265 gvir_config_domain_get_cpu
223266 gvir_config_domain_set_cpu
224267 gvir_config_domain_set_power_management
268 GVirConfigDomainPrivate
225269 <SUBSECTION Standard>
226270 GVIR_CONFIG_DOMAIN
227271 GVIR_CONFIG_DOMAIN_CLASS
229273 GVIR_CONFIG_IS_DOMAIN
230274 GVIR_CONFIG_IS_DOMAIN_CLASS
231275 GVIR_CONFIG_TYPE_DOMAIN
232 GVirConfigDomainPrivate
233276 gvir_config_domain_get_type
234277 </SECTION>
235278
238281 <TITLE>GVirConfigDomainAddress</TITLE>
239282 GVirConfigDomainAddress
240283 GVirConfigDomainAddressClass
284 GVirConfigDomainAddressPrivate
241285 <SUBSECTION Standard>
242286 GVIR_CONFIG_DOMAIN_ADDRESS
243287 GVIR_CONFIG_DOMAIN_ADDRESS_CLASS
245289 GVIR_CONFIG_IS_DOMAIN_ADDRESS
246290 GVIR_CONFIG_IS_DOMAIN_ADDRESS_CLASS
247291 GVIR_CONFIG_TYPE_DOMAIN_ADDRESS
248 GVirConfigDomainAddressPrivate
249292 gvir_config_domain_address_get_type
250293 </SECTION>
251294
261304 gvir_config_domain_address_pci_set_slot
262305 gvir_config_domain_address_pci_set_function
263306 gvir_config_domain_address_pci_set_multifunction
307 GVirConfigDomainAddressPciPrivate
264308 <SUBSECTION Standard>
265309 GVIR_CONFIG_DOMAIN_ADDRESS_PCI
266310 GVIR_CONFIG_DOMAIN_ADDRESS_PCI_CLASS
268312 GVIR_CONFIG_IS_DOMAIN_ADDRESS_PCI
269313 GVIR_CONFIG_IS_DOMAIN_ADDRESS_PCI_CLASS
270314 GVIR_CONFIG_TYPE_DOMAIN_ADDRESS_PCI
271 GVirConfigDomainAddressPciPrivate
272315 gvir_config_domain_address_pci_get_type
273316 </SECTION>
274317
281324 gvir_config_domain_address_usb_new_from_xml
282325 gvir_config_domain_address_usb_set_bus
283326 gvir_config_domain_address_usb_set_port
327 GVirConfigDomainAddressUsbPrivate
284328 <SUBSECTION Standard>
285329 GVIR_CONFIG_DOMAIN_ADDRESS_USB
286330 GVIR_CONFIG_DOMAIN_ADDRESS_USB_CLASS
288332 GVIR_CONFIG_IS_DOMAIN_ADDRESS_USB
289333 GVIR_CONFIG_IS_DOMAIN_ADDRESS_USB_CLASS
290334 GVIR_CONFIG_TYPE_DOMAIN_ADDRESS_USB
291 GVirConfigDomainAddressUsbPrivate
292335 gvir_config_domain_address_usb_get_type
293336 </SECTION>
294337
304347 gvir_config_domain_channel_set_target_type
305348 gvir_config_domain_channel_get_target_name
306349 gvir_config_domain_channel_set_target_name
350 GVirConfigDomainChannelPrivate
307351 <SUBSECTION Standard>
308352 GVIR_CONFIG_DOMAIN_CHANNEL
309353 GVIR_CONFIG_DOMAIN_CHANNEL_CLASS
311355 GVIR_CONFIG_IS_DOMAIN_CHANNEL
312356 GVIR_CONFIG_IS_DOMAIN_CHANNEL_CLASS
313357 GVIR_CONFIG_TYPE_DOMAIN_CHANNEL
314 GVirConfigDomainChannelPrivate
315358 gvir_config_domain_channel_get_type
316359 </SECTION>
317360
322365 GVirConfigDomainChardevClass
323366 gvir_config_domain_chardev_set_source
324367 gvir_config_domain_chardev_get_source
368 GVirConfigDomainChardevPrivate
325369 <SUBSECTION Standard>
326370 GVIR_CONFIG_DOMAIN_CHARDEV
327371 GVIR_CONFIG_DOMAIN_CHARDEV_CLASS
329373 GVIR_CONFIG_IS_DOMAIN_CHARDEV
330374 GVIR_CONFIG_IS_DOMAIN_CHARDEV_CLASS
331375 GVIR_CONFIG_TYPE_DOMAIN_CHARDEV
332 GVirConfigDomainChardevPrivate
333376 gvir_config_domain_chardev_get_type
334377 </SECTION>
335378
338381 <TITLE>GVirConfigDomainChardevSource</TITLE>
339382 GVirConfigDomainChardevSource
340383 GVirConfigDomainChardevSourceClass
384 GVirConfigDomainChardevSourcePrivate
341385 <SUBSECTION Standard>
342386 GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE
343387 GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE_CLASS
345389 GVIR_CONFIG_IS_DOMAIN_CHARDEV_SOURCE
346390 GVIR_CONFIG_IS_DOMAIN_CHARDEV_SOURCE_CLASS
347391 GVIR_CONFIG_TYPE_DOMAIN_CHARDEV_SOURCE
348 GVirConfigDomainChardevSourcePrivate
349392 gvir_config_domain_chardev_source_get_type
350393 </SECTION>
351394
364407 gvir_config_domain_chardev_source_pty_new_from_xml
365408 gvir_config_domain_chardev_source_pty_set_path
366409 gvir_config_domain_chardev_source_pty_get_path
410 GVirConfigDomainChardevSourcePtyPrivate
367411 <SUBSECTION Standard>
368412 GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE_PTY
369413 GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE_PTY_CLASS
371415 GVIR_CONFIG_IS_DOMAIN_CHARDEV_SOURCE_PTY
372416 GVIR_CONFIG_IS_DOMAIN_CHARDEV_SOURCE_PTY_CLASS
373417 GVIR_CONFIG_TYPE_DOMAIN_CHARDEV_SOURCE_PTY
374 GVirConfigDomainChardevSourcePtyPrivate
375418 gvir_config_domain_chardev_source_pty_get_type
419 </SECTION>
420
421 <SECTION>
422 <FILE>libvirt-gconfig-domain-chardev-source-spiceport</FILE>
423 <TITLE>GVirConfigDomainChardevSourceSpicePort</TITLE>
424 gvir_config_domain_chardev_source_spiceport_new
425 gvir_config_domain_chardev_source_spiceport_new_from_xml
426 gvir_config_domain_chardev_source_spiceport_set_channel
427 gvir_config_domain_chardev_source_spiceport_get_channel
428 <SUBSECTION Standard>
429 GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE_SPICE_PORT
430 GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE_SPICE_PORT_CLASS
431 GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE_SPICE_PORT_GET_CLASS
432 GVIR_CONFIG_IS_DOMAIN_CHARDEV_SOURCE_SPICE_PORT
433 GVIR_CONFIG_IS_DOMAIN_CHARDEV_SOURCE_SPICE_PORT_CLASS
434 GVIR_CONFIG_TYPE_DOMAIN_CHARDEV_SOURCE_SPICE_PORT
435 GVirConfigDomainChardevSourceSpicePort
436 GVirConfigDomainChardevSourceSpicePortClass
437 GVirConfigDomainChardevSourceSpicePortPrivate
438 gvir_config_domain_chardev_source_spiceport_get_type
376439 </SECTION>
377440
378441 <SECTION>
379442 <FILE>libvirt-gconfig-domain-chardev-source-spicevmc</FILE>
380443 <TITLE>GVirConfigDomainChardevSourceSpiceVmc</TITLE>
381 GVirConfigDomainChardevSourceSpiceVmc
382 GVirConfigDomainChardevSourceSpiceVmcClass
383444 gvir_config_domain_chardev_source_spicevmc_new
384445 gvir_config_domain_chardev_source_spicevmc_new_from_xml
385446 <SUBSECTION Standard>
389450 GVIR_CONFIG_IS_DOMAIN_CHARDEV_SOURCE_SPICE_VMC
390451 GVIR_CONFIG_IS_DOMAIN_CHARDEV_SOURCE_SPICE_VMC_CLASS
391452 GVIR_CONFIG_TYPE_DOMAIN_CHARDEV_SOURCE_SPICE_VMC
453 GVirConfigDomainChardevSourceSpiceVmc
454 GVirConfigDomainChardevSourceSpiceVmcClass
392455 GVirConfigDomainChardevSourceSpiceVmcPrivate
393456 gvir_config_domain_chardev_source_spicevmc_get_type
394457 </SECTION>
401464 GVirConfigDomainClockOffset
402465 gvir_config_domain_clock_new
403466 gvir_config_domain_clock_new_from_xml
467 gvir_config_domain_clock_get_offset
404468 gvir_config_domain_clock_set_offset
469 gvir_config_domain_clock_get_timezone
405470 gvir_config_domain_clock_set_timezone
471 gvir_config_domain_clock_get_variable_offset
406472 gvir_config_domain_clock_set_variable_offset
407473 gvir_config_domain_clock_add_timer
474 GVirConfigDomainClockPrivate
408475 <SUBSECTION Standard>
409476 GVIR_CONFIG_DOMAIN_CLOCK
410477 GVIR_CONFIG_DOMAIN_CLOCK_CLASS
412479 GVIR_CONFIG_IS_DOMAIN_CLOCK
413480 GVIR_CONFIG_IS_DOMAIN_CLOCK_CLASS
414481 GVIR_CONFIG_TYPE_DOMAIN_CLOCK
415 GVirConfigDomainClockPrivate
416482 gvir_config_domain_clock_get_type
417483 </SECTION>
418484
425491 gvir_config_domain_console_new
426492 gvir_config_domain_console_new_from_xml
427493 gvir_config_domain_console_set_target_type
494 GVirConfigDomainConsolePrivate
428495 <SUBSECTION Standard>
429496 GVIR_CONFIG_DOMAIN_CONSOLE
430497 GVIR_CONFIG_DOMAIN_CONSOLE_CLASS
432499 GVIR_CONFIG_IS_DOMAIN_CONSOLE
433500 GVIR_CONFIG_IS_DOMAIN_CONSOLE_CLASS
434501 GVIR_CONFIG_TYPE_DOMAIN_CONSOLE
435 GVirConfigDomainConsolePrivate
436502 gvir_config_domain_console_get_type
437503 </SECTION>
438504
444510 gvir_config_domain_controller_set_index
445511 gvir_config_domain_controller_get_index
446512 gvir_config_domain_controller_set_address
513 GVirConfigDomainControllerPrivate
447514 <SUBSECTION Standard>
448515 GVIR_CONFIG_DOMAIN_CONTROLLER
449516 GVIR_CONFIG_DOMAIN_CONTROLLER_CLASS
451518 GVIR_CONFIG_IS_DOMAIN_CONTROLLER
452519 GVIR_CONFIG_IS_DOMAIN_CONTROLLER_CLASS
453520 GVIR_CONFIG_TYPE_DOMAIN_CONTROLLER
454 GVirConfigDomainControllerPrivate
455521 gvir_config_domain_controller_get_type
456522 </SECTION>
457523
465531 gvir_config_domain_controller_usb_new_from_xml
466532 gvir_config_domain_controller_usb_set_model
467533 gvir_config_domain_controller_usb_set_master
534 GVirConfigDomainControllerUsbPrivate
468535 <SUBSECTION Standard>
469536 GVIR_CONFIG_DOMAIN_CONTROLLER_USB
470537 GVIR_CONFIG_DOMAIN_CONTROLLER_USB_CLASS
472539 GVIR_CONFIG_IS_DOMAIN_CONTROLLER_USB
473540 GVIR_CONFIG_IS_DOMAIN_CONTROLLER_USB_CLASS
474541 GVIR_CONFIG_TYPE_DOMAIN_CONTROLLER_USB
475 GVirConfigDomainControllerUsbPrivate
476542 gvir_config_domain_controller_usb_get_type
477543 </SECTION>
478544
488554 gvir_config_domain_cpu_set_match_policy
489555 gvir_config_domain_cpu_get_match_policy
490556 gvir_config_domain_cpu_set_mode
557 gvir_config_domain_cpu_set_model
491558 gvir_config_domain_cpu_get_mode
559 GVirConfigDomainCpuPrivate
492560 <SUBSECTION Standard>
493561 GVIR_CONFIG_DOMAIN_CPU
494562 GVIR_CONFIG_DOMAIN_CPU_CLASS
496564 GVIR_CONFIG_IS_DOMAIN_CPU
497565 GVIR_CONFIG_IS_DOMAIN_CPU_CLASS
498566 GVIR_CONFIG_TYPE_DOMAIN_CPU
499 GVirConfigDomainCpuPrivate
500567 gvir_config_domain_cpu_get_type
501568 </SECTION>
502569
510577 gvir_config_domain_cpu_feature_new_from_xml
511578 gvir_config_domain_cpu_feature_set_policy
512579 gvir_config_domain_cpu_feature_get_policy
580 GVirConfigDomainCpuFeaturePrivate
513581 <SUBSECTION Standard>
514582 GVIR_CONFIG_DOMAIN_CPU_FEATURE
515583 GVIR_CONFIG_DOMAIN_CPU_FEATURE_CLASS
517585 GVIR_CONFIG_IS_DOMAIN_CPU_FEATURE
518586 GVIR_CONFIG_IS_DOMAIN_CPU_FEATURE_CLASS
519587 GVIR_CONFIG_TYPE_DOMAIN_CPU_FEATURE
520 GVirConfigDomainCpuFeaturePrivate
521588 gvir_config_domain_cpu_feature_get_type
589 </SECTION>
590
591 <SECTION>
592 <FILE>libvirt-gconfig-domain-cpu-model</FILE>
593 <TITLE>GVirConfigDomainCpuModel</TITLE>
594 GVirConfigDomainCpuModel
595 GVirConfigDomainCpuModelClass
596 gvir_config_domain_cpu_model_new
597 gvir_config_domain_cpu_model_new_from_xml
598 GVirConfigDomainCpuModelPrivate
599 <SUBSECTION Standard>
600 GVIR_CONFIG_DOMAIN_CPU_MODEL
601 GVIR_CONFIG_DOMAIN_CPU_MODEL_CLASS
602 GVIR_CONFIG_DOMAIN_CPU_MODEL_GET_CLASS
603 GVIR_CONFIG_IS_DOMAIN_CPU_MODEL
604 GVIR_CONFIG_IS_DOMAIN_CPU_MODEL_CLASS
605 GVIR_CONFIG_TYPE_DOMAIN_CPU_MODEL
606 gvir_config_domain_cpu_model_get_type
522607 </SECTION>
523608
524609 <SECTION>
527612 GVirConfigDomainDevice
528613 GVirConfigDomainDeviceClass
529614 gvir_config_domain_device_get_alias
615 GVirConfigDomainDevicePrivate
530616 <SUBSECTION Standard>
531617 GVIR_CONFIG_DOMAIN_DEVICE
532618 GVIR_CONFIG_DOMAIN_DEVICE_CLASS
534620 GVIR_CONFIG_IS_DOMAIN_DEVICE
535621 GVIR_CONFIG_IS_DOMAIN_DEVICE_CLASS
536622 GVIR_CONFIG_TYPE_DOMAIN_DEVICE
537 GVirConfigDomainDevicePrivate
538623 gvir_config_domain_device_get_type
539624 </SECTION>
540625
556641 GVirConfigDomainDiskClass
557642 GVirConfigDomainDiskType
558643 GVirConfigDomainDiskBus
559 GVirConfigDomainDiskCacheType
560644 GVirConfigDomainDiskGuestDeviceType
561645 GVirConfigDomainDiskSnapshotType
562646 GVirConfigDomainDiskStartupPolicy
563 GVirConfigDomainDiskFormat
564647 GVIR_CONFIG_DOMAIN_DISK_FORMAT_AIO
565648 gvir_config_domain_disk_new
566649 gvir_config_domain_disk_new_from_xml
575658 gvir_config_domain_disk_set_driver_format
576659 gvir_config_domain_disk_set_target_bus
577660 gvir_config_domain_disk_set_target_dev
661 gvir_config_domain_disk_set_driver
662 gvir_config_domain_disk_get_driver
578663 gvir_config_domain_disk_get_disk_type
579664 gvir_config_domain_disk_get_guest_device_type
580665 gvir_config_domain_disk_get_snapshot_type
587672 gvir_config_domain_disk_get_target_bus
588673 gvir_config_domain_disk_get_target_dev
589674 gvir_config_domain_disk_set_readonly
675 GVirConfigDomainDiskPrivate
590676 <SUBSECTION Standard>
591677 GVIR_CONFIG_DOMAIN_DISK
592678 GVIR_CONFIG_DOMAIN_DISK_CLASS
594680 GVIR_CONFIG_IS_DOMAIN_DISK
595681 GVIR_CONFIG_IS_DOMAIN_DISK_CLASS
596682 GVIR_CONFIG_TYPE_DOMAIN_DISK
597 GVirConfigDomainDiskPrivate
598683 gvir_config_domain_disk_get_type
684 </SECTION>
685
686 <SECTION>
687 <FILE>libvirt-gconfig-domain-disk-driver</FILE>
688 <TITLE>GVirConfigDomainDiskDriver</TITLE>
689 GVirConfigDomainDiskDriver
690 GVirConfigDomainDiskDriverClass
691 GVirConfigDomainDiskCacheType
692 GVirConfigDomainDiskFormat
693 GVirConfigDomainDiskDriverErrorPolicy
694 GVirConfigDomainDiskDriverIoPolicy
695 GVirConfigDomainDiskDriverDiscard
696 gvir_config_domain_disk_driver_new
697 gvir_config_domain_disk_driver_new_from_xml
698 gvir_config_domain_disk_driver_set_cache
699 gvir_config_domain_disk_driver_get_cache
700 gvir_config_domain_disk_driver_set_name
701 gvir_config_domain_disk_driver_get_name
702 gvir_config_domain_disk_driver_set_error_policy
703 gvir_config_domain_disk_driver_get_error_policy
704 gvir_config_domain_disk_driver_set_format
705 gvir_config_domain_disk_driver_get_format
706 gvir_config_domain_disk_driver_set_io_policy
707 gvir_config_domain_disk_driver_get_io_policy
708 gvir_config_domain_disk_driver_set_copy_on_read
709 gvir_config_domain_disk_driver_get_copy_on_read
710 gvir_config_domain_disk_driver_set_discard
711 gvir_config_domain_disk_driver_get_discard
712 GVirConfigDomainDiskDriverPrivate
713 <SUBSECTION Standard>
714 GVIR_CONFIG_DOMAIN_DISK_DRIVER
715 GVIR_CONFIG_DOMAIN_DISK_DRIVER_CLASS
716 GVIR_CONFIG_DOMAIN_DISK_DRIVER_GET_CLASS
717 GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER
718 GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER_CLASS
719 GVIR_CONFIG_TYPE_DOMAIN_DISK_DRIVER
720 gvir_config_domain_disk_driver_get_type
599721 </SECTION>
600722
601723 <SECTION>
615737 gvir_config_domain_filesys_set_ram_usage
616738 gvir_config_domain_filesys_set_target
617739 gvir_config_domain_filesys_set_readonly
740 GVirConfigDomainFilesysPrivate
618741 <SUBSECTION Standard>
619742 GVIR_CONFIG_DOMAIN_FILESYS
620743 GVIR_CONFIG_DOMAIN_FILESYS_CLASS
622745 GVIR_CONFIG_IS_DOMAIN_FILESYS
623746 GVIR_CONFIG_IS_DOMAIN_FILESYS_CLASS
624747 GVIR_CONFIG_TYPE_DOMAIN_FILESYS
625 GVirConfigDomainFilesysPrivate
626748 gvir_config_domain_filesys_get_type
627749 </SECTION>
628750
631753 <TITLE>GVirConfigDomainGraphics</TITLE>
632754 GVirConfigDomainGraphics
633755 GVirConfigDomainGraphicsClass
756 GVirConfigDomainGraphicsPrivate
634757 <SUBSECTION Standard>
635758 GVIR_CONFIG_DOMAIN_GRAPHICS
636759 GVIR_CONFIG_DOMAIN_GRAPHICS_CLASS
638761 GVIR_CONFIG_IS_DOMAIN_GRAPHICS
639762 GVIR_CONFIG_IS_DOMAIN_GRAPHICS_CLASS
640763 GVIR_CONFIG_TYPE_DOMAIN_GRAPHICS
641 GVirConfigDomainGraphicsPrivate
642764 gvir_config_domain_graphics_get_type
643765 </SECTION>
644766
649771 GVirConfigDomainGraphicsDesktopClass
650772 gvir_config_domain_graphics_desktop_new
651773 gvir_config_domain_graphics_desktop_new_from_xml
774 gvir_config_domain_graphics_desktop_get_display
652775 gvir_config_domain_graphics_desktop_set_display
776 gvir_config_domain_graphics_desktop_get_fullscreen
653777 gvir_config_domain_graphics_desktop_set_fullscreen
778 GVirConfigDomainGraphicsDesktopPrivate
654779 <SUBSECTION Standard>
655780 GVIR_CONFIG_DOMAIN_GRAPHICS_DESKTOP
656781 GVIR_CONFIG_DOMAIN_GRAPHICS_DESKTOP_CLASS
658783 GVIR_CONFIG_IS_DOMAIN_GRAPHICS_DESKTOP
659784 GVIR_CONFIG_IS_DOMAIN_GRAPHICS_DESKTOP_CLASS
660785 GVIR_CONFIG_TYPE_DOMAIN_GRAPHICS_DESKTOP
661 GVirConfigDomainGraphicsDesktopPrivate
662786 gvir_config_domain_graphics_desktop_get_type
663787 </SECTION>
664788
672796 gvir_config_domain_graphics_rdp_set_autoport
673797 gvir_config_domain_graphics_rdp_get_port
674798 gvir_config_domain_graphics_rdp_set_port
799 gvir_config_domain_graphics_rdp_get_multi_user
675800 gvir_config_domain_graphics_rdp_set_multi_user
801 gvir_config_domain_graphics_rdp_get_replace_user
676802 gvir_config_domain_graphics_rdp_set_replace_user
803 GVirConfigDomainGraphicsRdpPrivate
677804 <SUBSECTION Standard>
678805 GVIR_CONFIG_DOMAIN_GRAPHICS_RDP
679806 GVIR_CONFIG_DOMAIN_GRAPHICS_RDP_CLASS
681808 GVIR_CONFIG_IS_DOMAIN_GRAPHICS_RDP
682809 GVIR_CONFIG_IS_DOMAIN_GRAPHICS_RDP_CLASS
683810 GVIR_CONFIG_TYPE_DOMAIN_GRAPHICS_RDP
684 GVirConfigDomainGraphicsRdpPrivate
685811 gvir_config_domain_graphics_rdp_get_type
686812 </SECTION>
687813
695821 gvir_config_domain_graphics_sdl_set_xauthority
696822 gvir_config_domain_graphics_sdl_set_display
697823 gvir_config_domain_graphics_sdl_set_fullscreen
824 GVirConfigDomainGraphicsSdlPrivate
698825 <SUBSECTION Standard>
699826 GVIR_CONFIG_DOMAIN_GRAPHICS_SDL
700827 GVIR_CONFIG_DOMAIN_GRAPHICS_SDL_CLASS
702829 GVIR_CONFIG_IS_DOMAIN_GRAPHICS_SDL
703830 GVIR_CONFIG_IS_DOMAIN_GRAPHICS_SDL_CLASS
704831 GVIR_CONFIG_TYPE_DOMAIN_GRAPHICS_SDL
705 GVirConfigDomainGraphicsSdlPrivate
706832 gvir_config_domain_graphics_sdl_get_type
707833 </SECTION>
708834
721847 gvir_config_domain_graphics_spice_set_tls_port
722848 gvir_config_domain_graphics_spice_set_image_compression
723849 gvir_config_domain_graphics_spice_get_image_compression
850 GVirConfigDomainGraphicsSpicePrivate
724851 <SUBSECTION Standard>
725852 GVIR_CONFIG_DOMAIN_GRAPHICS_SPICE
726853 GVIR_CONFIG_DOMAIN_GRAPHICS_SPICE_CLASS
728855 GVIR_CONFIG_IS_DOMAIN_GRAPHICS_SPICE
729856 GVIR_CONFIG_IS_DOMAIN_GRAPHICS_SPICE_CLASS
730857 GVIR_CONFIG_TYPE_DOMAIN_GRAPHICS_SPICE
731 GVirConfigDomainGraphicsSpicePrivate
732858 gvir_config_domain_graphics_spice_get_type
733859 </SECTION>
734860
745871 gvir_config_domain_graphics_vnc_get_port
746872 gvir_config_domain_graphics_vnc_set_port
747873 gvir_config_domain_graphics_vnc_set_password
874 GVirConfigDomainGraphicsVncPrivate
748875 <SUBSECTION Standard>
749876 GVIR_CONFIG_DOMAIN_GRAPHICS_VNC
750877 GVIR_CONFIG_DOMAIN_GRAPHICS_VNC_CLASS
752879 GVIR_CONFIG_IS_DOMAIN_GRAPHICS_VNC
753880 GVIR_CONFIG_IS_DOMAIN_GRAPHICS_VNC_CLASS
754881 GVIR_CONFIG_TYPE_DOMAIN_GRAPHICS_VNC
755 GVirConfigDomainGraphicsVncPrivate
756882 gvir_config_domain_graphics_vnc_get_type
757883 </SECTION>
758884
765891 GVirConfigDomainInputBus
766892 gvir_config_domain_input_new
767893 gvir_config_domain_input_new_from_xml
894 gvir_config_domain_input_get_device_type
768895 gvir_config_domain_input_set_device_type
896 gvir_config_domain_input_get_bus
769897 gvir_config_domain_input_set_bus
898 GVirConfigDomainInputPrivate
770899 <SUBSECTION Standard>
771900 GVIR_CONFIG_DOMAIN_INPUT
772901 GVIR_CONFIG_DOMAIN_INPUT_CLASS
774903 GVIR_CONFIG_IS_DOMAIN_INPUT
775904 GVIR_CONFIG_IS_DOMAIN_INPUT_CLASS
776905 GVIR_CONFIG_TYPE_DOMAIN_INPUT
777 GVirConfigDomainInputPrivate
778906 gvir_config_domain_input_get_type
779907 </SECTION>
780908
781909 <SECTION>
782910 <FILE>libvirt-gconfig-domain-interface</FILE>
783911 <TITLE>GVirConfigDomainInterface</TITLE>
784 <TITLE>GVirConfigDomain</TITLE>
785912 GVirConfigDomainInterface
786913 GVirConfigDomainInterfaceClass
787914 GVirConfigDomainInterfaceLinkState
793920 gvir_config_domain_interface_get_link_state
794921 gvir_config_domain_interface_get_mac
795922 gvir_config_domain_interface_get_model
923 gvir_config_domain_interface_set_filterref
924 gvir_config_domain_interface_get_filterref
925 GVirConfigDomainInterfacePrivate
796926 <SUBSECTION Standard>
797927 GVIR_CONFIG_DOMAIN_INTERFACE
798928 GVIR_CONFIG_DOMAIN_INTERFACE_CLASS
800930 GVIR_CONFIG_IS_DOMAIN_INTERFACE
801931 GVIR_CONFIG_IS_DOMAIN_INTERFACE_CLASS
802932 GVIR_CONFIG_TYPE_DOMAIN_INTERFACE
803 GVirConfigDomainInterfacePrivate
804933 gvir_config_domain_interface_get_type
805934 </SECTION>
806935
812941 gvir_config_domain_interface_bridge_new
813942 gvir_config_domain_interface_bridge_new_from_xml
814943 gvir_config_domain_interface_bridge_set_source
944 GVirConfigDomainInterfaceBridgePrivate
815945 <SUBSECTION Standard>
816946 GVIR_CONFIG_DOMAIN_INTERFACE_BRIDGE
817947 GVIR_CONFIG_DOMAIN_INTERFACE_BRIDGE_CLASS
819949 GVIR_CONFIG_IS_DOMAIN_INTERFACE_BRIDGE
820950 GVIR_CONFIG_IS_DOMAIN_INTERFACE_BRIDGE_CLASS
821951 GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_BRIDGE
822 GVirConfigDomainInterfaceBridgePrivate
823952 gvir_config_domain_interface_bridge_get_type
953 </SECTION>
954
955 <SECTION>
956 <FILE>libvirt-gconfig-domain-interface-filterref</FILE>
957 <TITLE>GVirConfigDomainInterfaceFilterref</TITLE>
958 GVirConfigDomainInterfaceFilterref
959 GVirConfigDomainInterfaceFilterrefClass
960 gvir_config_domain_interface_filterref_new
961 gvir_config_domain_interface_filterref_new_from_xml
962 gvir_config_domain_interface_filterref_set_name
963 gvir_config_domain_interface_filterref_get_name
964 gvir_config_domain_interface_filterref_add_parameter
965 gvir_config_domain_interface_filterref_get_parameters
966 GVirConfigDomainInterfaceFilterrefPrivate
967 <SUBSECTION Standard>
968 GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF
969 GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF_CLASS
970 GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF_GET_CLASS
971 GVIR_CONFIG_IS_DOMAIN_INTERFACE_FILTERREF
972 GVIR_CONFIG_IS_DOMAIN_INTERFACE_FILTERREF_CLASS
973 GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF
974 gvir_config_domain_interface_filterref_get_type
975 </SECTION>
976
977 <SECTION>
978 <FILE>libvirt-gconfig-domain-interface-filterref-parameter</FILE>
979 <TITLE>GVirConfigDomainInterfaceFilterrefParameter</TITLE>
980 GVirConfigDomainInterfaceFilterrefParameter
981 GVirConfigDomainInterfaceFilterrefParameterClass
982 gvir_config_domain_interface_filterref_parameter_new
983 gvir_config_domain_interface_filterref_parameter_new_from_xml
984 gvir_config_domain_interface_filterref_parameter_set_name
985 gvir_config_domain_interface_filterref_parameter_set_value
986 gvir_config_domain_interface_filterref_parameter_get_name
987 gvir_config_domain_interface_filterref_parameter_get_value
988 GVirConfigDomainInterfaceFilterrefParameterPrivate
989 <SUBSECTION Standard>
990 GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF_PARAMETER
991 GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF_PARAMETER_CLASS
992 GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF_PARAMETER_GET_CLASS
993 GVIR_CONFIG_IS_DOMAIN_INTERFACE_FILTERREF_PARAMETER
994 GVIR_CONFIG_IS_DOMAIN_INTERFACE_FILTERREF_PARAMETER_CLASS
995 GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF_PARAMETER
996 gvir_config_domain_interface_filterref_parameter_get_type
824997 </SECTION>
825998
826999 <SECTION>
8311004 gvir_config_domain_interface_network_new
8321005 gvir_config_domain_interface_network_new_from_xml
8331006 gvir_config_domain_interface_network_set_source
1007 GVirConfigDomainInterfaceNetworkPrivate
8341008 <SUBSECTION Standard>
8351009 GVIR_CONFIG_DOMAIN_INTERFACE_NETWORK
8361010 GVIR_CONFIG_DOMAIN_INTERFACE_NETWORK_CLASS
8381012 GVIR_CONFIG_IS_DOMAIN_INTERFACE_NETWORK
8391013 GVIR_CONFIG_IS_DOMAIN_INTERFACE_NETWORK_CLASS
8401014 GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_NETWORK
841 GVirConfigDomainInterfaceNetworkPrivate
8421015 gvir_config_domain_interface_network_get_type
8431016 </SECTION>
8441017
8491022 GVirConfigDomainInterfaceUserClass
8501023 gvir_config_domain_interface_user_new
8511024 gvir_config_domain_interface_user_new_from_xml
1025 GVirConfigDomainInterfaceUserPrivate
8521026 <SUBSECTION Standard>
8531027 GVIR_CONFIG_DOMAIN_INTERFACE_USER
8541028 GVIR_CONFIG_DOMAIN_INTERFACE_USER_CLASS
8561030 GVIR_CONFIG_IS_DOMAIN_INTERFACE_USER
8571031 GVIR_CONFIG_IS_DOMAIN_INTERFACE_USER_CLASS
8581032 GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_USER
859 GVirConfigDomainInterfaceUserPrivate
8601033 gvir_config_domain_interface_user_get_type
8611034 </SECTION>
8621035
8691042 gvir_config_domain_memballoon_new
8701043 gvir_config_domain_memballoon_new_from_xml
8711044 gvir_config_domain_memballoon_set_model
1045 GVirConfigDomainMemballoonPrivate
8721046 <SUBSECTION Standard>
8731047 GVIR_CONFIG_DOMAIN_MEMBALLOON
8741048 GVIR_CONFIG_DOMAIN_MEMBALLOON_CLASS
8761050 GVIR_CONFIG_IS_DOMAIN_MEMBALLOON
8771051 GVIR_CONFIG_IS_DOMAIN_MEMBALLOON_CLASS
8781052 GVIR_CONFIG_TYPE_DOMAIN_MEMBALLOON
879 GVirConfigDomainMemballoonPrivate
8801053 gvir_config_domain_memballoon_get_type
8811054 </SECTION>
8821055
9051078 gvir_config_domain_os_set_smbios_mode
9061079 gvir_config_domain_os_enable_boot_menu
9071080 gvir_config_domain_os_bios_enable_serial
1081 GVirConfigDomainOsPrivate
9081082 <SUBSECTION Standard>
9091083 GVIR_CONFIG_DOMAIN_OS
9101084 GVIR_CONFIG_DOMAIN_OS_CLASS
9121086 GVIR_CONFIG_IS_DOMAIN_OS
9131087 GVIR_CONFIG_IS_DOMAIN_OS_CLASS
9141088 GVIR_CONFIG_TYPE_DOMAIN_OS
915 GVirConfigDomainOsPrivate
9161089 gvir_config_domain_os_get_type
9171090 </SECTION>
9181091
9231096 GVirConfigDomainParallelClass
9241097 gvir_config_domain_parallel_new
9251098 gvir_config_domain_parallel_new_from_xml
1099 GVirConfigDomainParallelPrivate
9261100 <SUBSECTION Standard>
9271101 GVIR_CONFIG_DOMAIN_PARALLEL
9281102 GVIR_CONFIG_DOMAIN_PARALLEL_CLASS
9301104 GVIR_CONFIG_IS_DOMAIN_PARALLEL
9311105 GVIR_CONFIG_IS_DOMAIN_PARALLEL_CLASS
9321106 GVIR_CONFIG_TYPE_DOMAIN_PARALLEL
933 GVirConfigDomainParallelPrivate
9341107 gvir_config_domain_parallel_get_type
9351108 </SECTION>
9361109
9431116 gvir_config_domain_power_management_new_from_xml
9441117 gvir_config_domain_power_management_set_mem_suspend_enabled
9451118 gvir_config_domain_power_management_set_disk_suspend_enabled
1119 GVirConfigDomainPowerManagementPrivate
9461120 <SUBSECTION Standard>
9471121 GVIR_CONFIG_DOMAIN_POWER_MANAGEMENT
9481122 GVIR_CONFIG_DOMAIN_POWER_MANAGEMENT_CLASS
9501124 GVIR_CONFIG_IS_DOMAIN_POWER_MANAGEMENT
9511125 GVIR_CONFIG_IS_DOMAIN_POWER_MANAGEMENT_CLASS
9521126 GVIR_CONFIG_TYPE_DOMAIN_POWER_MANAGEMENT
953 GVirConfigDomainPowerManagementPrivate
9541127 gvir_config_domain_power_management_get_type
9551128 </SECTION>
9561129
9641137 gvir_config_domain_redirdev_new_from_xml
9651138 gvir_config_domain_redirdev_set_bus
9661139 gvir_config_domain_redirdev_set_address
1140 GVirConfigDomainRedirdevPrivate
9671141 <SUBSECTION Standard>
9681142 GVIR_CONFIG_DOMAIN_REDIRDEV
9691143 GVIR_CONFIG_DOMAIN_REDIRDEV_CLASS
9711145 GVIR_CONFIG_IS_DOMAIN_REDIRDEV
9721146 GVIR_CONFIG_IS_DOMAIN_REDIRDEV_CLASS
9731147 GVIR_CONFIG_TYPE_DOMAIN_REDIRDEV
974 GVirConfigDomainRedirdevPrivate
9751148 gvir_config_domain_redirdev_get_type
9761149 </SECTION>
9771150
9871160 gvir_config_domain_seclabel_set_model
9881161 gvir_config_domain_seclabel_set_baselabel
9891162 gvir_config_domain_seclabel_set_label
1163 GVirConfigDomainSeclabelPrivate
9901164 <SUBSECTION Standard>
9911165 GVIR_CONFIG_DOMAIN_SECLABEL
9921166 GVIR_CONFIG_DOMAIN_SECLABEL_CLASS
9941168 GVIR_CONFIG_IS_DOMAIN_SECLABEL
9951169 GVIR_CONFIG_IS_DOMAIN_SECLABEL_CLASS
9961170 GVIR_CONFIG_TYPE_DOMAIN_SECLABEL
997 GVirConfigDomainSeclabelPrivate
9981171 gvir_config_domain_seclabel_get_type
9991172 </SECTION>
10001173
10051178 GVirConfigDomainSerialClass
10061179 gvir_config_domain_serial_new
10071180 gvir_config_domain_serial_new_from_xml
1181 GVirConfigDomainSerialPrivate
10081182 <SUBSECTION Standard>
10091183 GVIR_CONFIG_DOMAIN_SERIAL
10101184 GVIR_CONFIG_DOMAIN_SERIAL_CLASS
10121186 GVIR_CONFIG_IS_DOMAIN_SERIAL
10131187 GVIR_CONFIG_IS_DOMAIN_SERIAL_CLASS
10141188 GVIR_CONFIG_TYPE_DOMAIN_SERIAL
1015 GVirConfigDomainSerialPrivate
10161189 gvir_config_domain_serial_get_type
10171190 </SECTION>
10181191
10221195 GVirConfigDomainSmartcard
10231196 GVirConfigDomainSmartcardClass
10241197 gvir_config_domain_smartcard_set_address
1198 GVirConfigDomainSmartcardPrivate
10251199 <SUBSECTION Standard>
10261200 GVIR_CONFIG_DOMAIN_SMARTCARD
10271201 GVIR_CONFIG_DOMAIN_SMARTCARD_CLASS
10291203 GVIR_CONFIG_IS_DOMAIN_SMARTCARD
10301204 GVIR_CONFIG_IS_DOMAIN_SMARTCARD_CLASS
10311205 GVIR_CONFIG_TYPE_DOMAIN_SMARTCARD
1032 GVirConfigDomainSmartcardPrivate
10331206 gvir_config_domain_smartcard_get_type
10341207 </SECTION>
10351208
10401213 GVirConfigDomainSmartcardHostClass
10411214 gvir_config_domain_smartcard_host_new
10421215 gvir_config_domain_smartcard_host_new_from_xml
1216 GVirConfigDomainSmartcardHostPrivate
10431217 <SUBSECTION Standard>
10441218 GVIR_CONFIG_DOMAIN_SMARTCARD_HOST
10451219 GVIR_CONFIG_DOMAIN_SMARTCARD_HOST_CLASS
10471221 GVIR_CONFIG_IS_DOMAIN_SMARTCARD_HOST
10481222 GVIR_CONFIG_IS_DOMAIN_SMARTCARD_HOST_CLASS
10491223 GVIR_CONFIG_TYPE_DOMAIN_SMARTCARD_HOST
1050 GVirConfigDomainSmartcardHostPrivate
10511224 gvir_config_domain_smartcard_host_get_type
10521225 </SECTION>
10531226
10601233 gvir_config_domain_smartcard_host_certificates_new_from_xml
10611234 gvir_config_domain_smartcard_host_certificates_set_database
10621235 gvir_config_domain_smartcard_host_certificates_set_certificates
1236 GVirConfigDomainSmartcardHostCertificatesPrivate
10631237 <SUBSECTION Standard>
10641238 GVIR_CONFIG_DOMAIN_SMARTCARD_HOST_CERTIFICATES
10651239 GVIR_CONFIG_DOMAIN_SMARTCARD_HOST_CERTIFICATES_CLASS
10671241 GVIR_CONFIG_IS_DOMAIN_SMARTCARD_HOST_CERTIFICATES
10681242 GVIR_CONFIG_IS_DOMAIN_SMARTCARD_HOST_CERTIFICATES_CLASS
10691243 GVIR_CONFIG_TYPE_DOMAIN_SMARTCARD_HOST_CERTIFICATES
1070 GVirConfigDomainSmartcardHostCertificatesPrivate
10711244 gvir_config_domain_smartcard_host_certificates_get_type
10721245 </SECTION>
10731246
10791252 gvir_config_domain_smartcard_passthrough_new
10801253 gvir_config_domain_smartcard_passthrough_new_from_xml
10811254 gvir_config_domain_smartcard_passthrough_set_source
1255 GVirConfigDomainSmartcardPassthroughPrivate
10821256 <SUBSECTION Standard>
10831257 GVIR_CONFIG_DOMAIN_SMARTCARD_PASSTHROUGH
10841258 GVIR_CONFIG_DOMAIN_SMARTCARD_PASSTHROUGH_CLASS
10861260 GVIR_CONFIG_IS_DOMAIN_SMARTCARD_PASSTHROUGH
10871261 GVIR_CONFIG_IS_DOMAIN_SMARTCARD_PASSTHROUGH_CLASS
10881262 GVIR_CONFIG_TYPE_DOMAIN_SMARTCARD_PASSTHROUGH
1089 GVirConfigDomainSmartcardPassthroughPrivate
10901263 gvir_config_domain_smartcard_passthrough_get_type
10911264 </SECTION>
10921265
11141287 gvir_config_domain_snapshot_set_disks
11151288 gvir_config_domain_snapshot_add_disk
11161289 gvir_config_domain_snapshot_get_disks
1290 GVirConfigDomainSnapshotPrivate
11171291 <SUBSECTION Standard>
11181292 GVIR_CONFIG_DOMAIN_SNAPSHOT
11191293 GVIR_CONFIG_DOMAIN_SNAPSHOT_CLASS
11211295 GVIR_CONFIG_IS_DOMAIN_SNAPSHOT
11221296 GVIR_CONFIG_IS_DOMAIN_SNAPSHOT_CLASS
11231297 GVIR_CONFIG_TYPE_DOMAIN_SNAPSHOT
1124 GVirConfigDomainSnapshotPrivate
11251298 gvir_config_domain_snapshot_get_type
11261299 </SECTION>
11271300
11401313 gvir_config_domain_snapshot_disk_set_source_file
11411314 gvir_config_domain_snapshot_disk_get_driver_format
11421315 gvir_config_domain_snapshot_disk_set_driver_format
1316 GVirConfigDomainSnapshotDiskPrivate
11431317 <SUBSECTION Standard>
11441318 GVIR_CONFIG_DOMAIN_SNAPSHOT_DISK
11451319 GVIR_CONFIG_DOMAIN_SNAPSHOT_DISK_CLASS
11471321 GVIR_CONFIG_IS_DOMAIN_SNAPSHOT_DISK
11481322 GVIR_CONFIG_IS_DOMAIN_SNAPSHOT_DISK_CLASS
11491323 GVIR_CONFIG_TYPE_DOMAIN_SNAPSHOT_DISK
1150 GVirConfigDomainSnapshotDiskPrivate
11511324 gvir_config_domain_snapshot_disk_get_type
11521325 </SECTION>
11531326
11651338 gvir_config_domain_sound_new
11661339 gvir_config_domain_sound_new_from_xml
11671340 gvir_config_domain_sound_set_model
1341 GVirConfigDomainSoundPrivate
11681342 <SUBSECTION Standard>
11691343 GVIR_CONFIG_DOMAIN_SOUND
11701344 GVIR_CONFIG_DOMAIN_SOUND_CLASS
11721346 GVIR_CONFIG_IS_DOMAIN_SOUND
11731347 GVIR_CONFIG_IS_DOMAIN_SOUND_CLASS
11741348 GVIR_CONFIG_TYPE_DOMAIN_SOUND
1175 GVirConfigDomainSoundPrivate
11761349 gvir_config_domain_sound_get_type
11771350 </SECTION>
11781351
11841357 GVirConfigDomainTimerTickPolicy
11851358 gvir_config_domain_timer_get_tick_policy
11861359 gvir_config_domain_timer_set_tick_policy
1360 gvir_config_domain_timer_get_present
1361 gvir_config_domain_timer_set_present
1362 GVirConfigDomainTimerPrivate
11871363 <SUBSECTION Standard>
11881364 GVIR_CONFIG_DOMAIN_TIMER
11891365 GVIR_CONFIG_DOMAIN_TIMER_CLASS
11911367 GVIR_CONFIG_IS_DOMAIN_TIMER
11921368 GVIR_CONFIG_IS_DOMAIN_TIMER_CLASS
11931369 GVIR_CONFIG_TYPE_DOMAIN_TIMER
1194 GVirConfigDomainTimerPrivate
11951370 gvir_config_domain_timer_get_type
1371 </SECTION>
1372
1373 <SECTION>
1374 <FILE>libvirt-gconfig-domain-timer-hpet</FILE>
1375 <TITLE>GVirConfigDomainTimerHpet</TITLE>
1376 GVirConfigDomainTimerHpet
1377 GVirConfigDomainTimerHpetClass
1378 gvir_config_domain_timer_hpet_new
1379 gvir_config_domain_timer_hpet_new_from_xml
1380 GVirConfigDomainTimerHpetPrivate
1381 <SUBSECTION Standard>
1382 GVIR_CONFIG_DOMAIN_TIMER_HPET
1383 GVIR_CONFIG_DOMAIN_TIMER_HPET_CLASS
1384 GVIR_CONFIG_DOMAIN_TIMER_HPET_GET_CLASS
1385 GVIR_CONFIG_IS_DOMAIN_TIMER_HPET
1386 GVIR_CONFIG_IS_DOMAIN_TIMER_HPET_CLASS
1387 GVIR_CONFIG_TYPE_DOMAIN_TIMER_HPET
1388 gvir_config_domain_timer_hpet_get_type
11961389 </SECTION>
11971390
11981391 <SECTION>
12021395 GVirConfigDomainTimerPitClass
12031396 gvir_config_domain_timer_pit_new
12041397 gvir_config_domain_timer_pit_new_from_xml
1398 GVirConfigDomainTimerPitPrivate
12051399 <SUBSECTION Standard>
12061400 GVIR_CONFIG_DOMAIN_TIMER_PIT
12071401 GVIR_CONFIG_DOMAIN_TIMER_PIT_CLASS
12091403 GVIR_CONFIG_IS_DOMAIN_TIMER_PIT
12101404 GVIR_CONFIG_IS_DOMAIN_TIMER_PIT_CLASS
12111405 GVIR_CONFIG_TYPE_DOMAIN_TIMER_PIT
1212 GVirConfigDomainTimerPitPrivate
12131406 gvir_config_domain_timer_pit_get_type
12141407 </SECTION>
12151408
12201413 GVirConfigDomainTimerRtcClass
12211414 gvir_config_domain_timer_rtc_new
12221415 gvir_config_domain_timer_rtc_new_from_xml
1416 GVirConfigDomainTimerRtcPrivate
12231417 <SUBSECTION Standard>
12241418 GVIR_CONFIG_DOMAIN_TIMER_RTC
12251419 GVIR_CONFIG_DOMAIN_TIMER_RTC_CLASS
12271421 GVIR_CONFIG_IS_DOMAIN_TIMER_RTC
12281422 GVIR_CONFIG_IS_DOMAIN_TIMER_RTC_CLASS
12291423 GVIR_CONFIG_TYPE_DOMAIN_TIMER_RTC
1230 GVirConfigDomainTimerRtcPrivate
12311424 gvir_config_domain_timer_rtc_get_type
12321425 </SECTION>
12331426
12421435 gvir_config_domain_video_set_model
12431436 gvir_config_domain_video_set_vram
12441437 gvir_config_domain_video_set_heads
1438 GVirConfigDomainVideoPrivate
12451439 <SUBSECTION Standard>
12461440 GVIR_CONFIG_DOMAIN_VIDEO
12471441 GVIR_CONFIG_DOMAIN_VIDEO_CLASS
12491443 GVIR_CONFIG_IS_DOMAIN_VIDEO
12501444 GVIR_CONFIG_IS_DOMAIN_VIDEO_CLASS
12511445 GVIR_CONFIG_TYPE_DOMAIN_VIDEO
1252 GVirConfigDomainVideoPrivate
12531446 gvir_config_domain_video_get_type
12541447 </SECTION>
12551448
12791472 <SECTION>
12801473 <FILE>libvirt-gconfig-interface</FILE>
12811474 <TITLE>GVirConfigInterface</TITLE>
1282 <TITLE>GVirConfig</TITLE>
12831475 GVirConfigInterface
12841476 GVirConfigInterfaceClass
12851477 gvir_config_interface_new
12861478 gvir_config_interface_new_from_xml
1479 GVirConfigInterfacePrivate
12871480 <SUBSECTION Standard>
12881481 GVIR_CONFIG_INTERFACE
12891482 GVIR_CONFIG_INTERFACE_CLASS
12911484 GVIR_CONFIG_IS_INTERFACE
12921485 GVIR_CONFIG_IS_INTERFACE_CLASS
12931486 GVIR_CONFIG_TYPE_INTERFACE
1294 GVirConfigInterfacePrivate
12951487 gvir_config_interface_get_type
12961488 </SECTION>
12971489
13081500 GVirConfigNetworkClass
13091501 gvir_config_network_new
13101502 gvir_config_network_new_from_xml
1503 GVirConfigNetworkPrivate
13111504 <SUBSECTION Standard>
13121505 GVIR_CONFIG_IS_NETWORK
13131506 GVIR_CONFIG_IS_NETWORK_CLASS
13151508 GVIR_CONFIG_NETWORK_CLASS
13161509 GVIR_CONFIG_NETWORK_GET_CLASS
13171510 GVIR_CONFIG_TYPE_NETWORK
1318 GVirConfigNetworkPrivate
13191511 gvir_config_network_get_type
13201512 </SECTION>
13211513
13261518 GVirConfigNetworkFilterClass
13271519 gvir_config_network_filter_new
13281520 gvir_config_network_filter_new_from_xml
1521 GVirConfigNetworkFilterPrivate
13291522 <SUBSECTION Standard>
13301523 GVIR_CONFIG_IS_NETWORK_FILTER
13311524 GVIR_CONFIG_IS_NETWORK_FILTER_CLASS
13331526 GVIR_CONFIG_NETWORK_FILTER_CLASS
13341527 GVIR_CONFIG_NETWORK_FILTER_GET_CLASS
13351528 GVIR_CONFIG_TYPE_NETWORK_FILTER
1336 GVirConfigNetworkFilterPrivate
13371529 gvir_config_network_filter_get_type
13381530 </SECTION>
13391531
13441536 GVirConfigNodeDeviceClass
13451537 gvir_config_node_device_new
13461538 gvir_config_node_device_new_from_xml
1539 GVirConfigNodeDevicePrivate
13471540 <SUBSECTION Standard>
13481541 GVIR_CONFIG_IS_NODE_DEVICE
13491542 GVIR_CONFIG_IS_NODE_DEVICE_CLASS
13511544 GVIR_CONFIG_NODE_DEVICE_CLASS
13521545 GVIR_CONFIG_NODE_DEVICE_GET_CLASS
13531546 GVIR_CONFIG_TYPE_NODE_DEVICE
1354 GVirConfigNodeDevicePrivate
13551547 gvir_config_node_device_get_type
13561548 </SECTION>
13571549
13651557 gvir_config_object_validate
13661558 gvir_config_object_to_xml
13671559 gvir_config_object_get_schema
1560 GVirConfigObjectPrivate
13681561 <SUBSECTION Standard>
13691562 GVIR_CONFIG_IS_OBJECT
13701563 GVIR_CONFIG_IS_OBJECT_CLASS
13721565 GVIR_CONFIG_OBJECT_CLASS
13731566 GVIR_CONFIG_OBJECT_GET_CLASS
13741567 GVIR_CONFIG_TYPE_OBJECT
1375 GVirConfigObjectPrivate
13761568 gvir_config_object_get_type
13771569 </SECTION>
13781570
13871579 gvir_config_object_get_attribute
13881580 gvir_config_object_get_attribute_uint64
13891581 gvir_config_object_get_attribute_genum
1582 gvir_config_object_get_attribute_boolean
13901583 gvir_config_object_set_node_content
13911584 gvir_config_object_set_node_content_uint64
13921585 gvir_config_object_add_child
14161609 GVirConfigSecretClass
14171610 gvir_config_secret_new
14181611 gvir_config_secret_new_from_xml
1612 GVirConfigSecretPrivate
14191613 <SUBSECTION Standard>
14201614 GVIR_CONFIG_IS_SECRET
14211615 GVIR_CONFIG_IS_SECRET_CLASS
14231617 GVIR_CONFIG_SECRET_CLASS
14241618 GVIR_CONFIG_SECRET_GET_CLASS
14251619 GVIR_CONFIG_TYPE_SECRET
1426 GVirConfigSecretPrivate
14271620 gvir_config_secret_get_type
14281621 </SECTION>
14291622
14421635 gvir_config_storage_permissions_set_mode
14431636 gvir_config_storage_permissions_get_owner
14441637 gvir_config_storage_permissions_set_owner
1638 GVirConfigStoragePermissionsPrivate
14451639 <SUBSECTION Standard>
14461640 GVIR_CONFIG_IS_STORAGE_PERMISSIONS
14471641 GVIR_CONFIG_IS_STORAGE_PERMISSIONS_CLASS
14491643 GVIR_CONFIG_STORAGE_PERMISSIONS_CLASS
14501644 GVIR_CONFIG_STORAGE_PERMISSIONS_GET_CLASS
14511645 GVIR_CONFIG_TYPE_STORAGE_PERMISSIONS
1452 GVirConfigStoragePermissionsPrivate
14531646 gvir_config_storage_permissions_get_type
14541647 </SECTION>
14551648
14771670 gvir_config_storage_pool_set_target
14781671 gvir_config_storage_pool_get_uuid
14791672 gvir_config_storage_pool_set_uuid
1673 GVirConfigStoragePoolPrivate
14801674 <SUBSECTION Standard>
14811675 GVIR_CONFIG_IS_STORAGE_POOL
14821676 GVIR_CONFIG_IS_STORAGE_POOL_CLASS
14841678 GVIR_CONFIG_STORAGE_POOL_CLASS
14851679 GVIR_CONFIG_STORAGE_POOL_GET_CLASS
14861680 GVIR_CONFIG_TYPE_STORAGE_POOL
1487 GVirConfigStoragePoolPrivate
14881681 gvir_config_storage_pool_get_type
14891682 </SECTION>
14901683
15111704 gvir_config_storage_pool_source_set_product
15121705 gvir_config_storage_pool_source_get_vendor
15131706 gvir_config_storage_pool_source_set_vendor
1707 GVirConfigStoragePoolSourcePrivate
15141708 <SUBSECTION Standard>
15151709 GVIR_CONFIG_IS_STORAGE_POOL_SOURCE
15161710 GVIR_CONFIG_IS_STORAGE_POOL_SOURCE_CLASS
15181712 GVIR_CONFIG_STORAGE_POOL_SOURCE_CLASS
15191713 GVIR_CONFIG_STORAGE_POOL_SOURCE_GET_CLASS
15201714 GVIR_CONFIG_TYPE_STORAGE_POOL_SOURCE
1521 GVirConfigStoragePoolSourcePrivate
15221715 gvir_config_storage_pool_source_get_type
15231716 </SECTION>
15241717
15331726 gvir_config_storage_pool_target_set_path
15341727 gvir_config_storage_pool_target_get_permissions
15351728 gvir_config_storage_pool_target_set_permissions
1729 GVirConfigStoragePoolTargetPrivate
15361730 <SUBSECTION Standard>
15371731 GVIR_CONFIG_IS_STORAGE_POOL_TARGET
15381732 GVIR_CONFIG_IS_STORAGE_POOL_TARGET_CLASS
15401734 GVIR_CONFIG_STORAGE_POOL_TARGET_CLASS
15411735 GVIR_CONFIG_STORAGE_POOL_TARGET_GET_CLASS
15421736 GVIR_CONFIG_TYPE_STORAGE_POOL_TARGET
1543 GVirConfigStoragePoolTargetPrivate
15441737 gvir_config_storage_pool_target_get_type
15451738 </SECTION>
15461739
15561749 gvir_config_storage_vol_set_capacity
15571750 gvir_config_storage_vol_set_name
15581751 gvir_config_storage_vol_set_target
1752 GVirConfigStorageVolPrivate
15591753 <SUBSECTION Standard>
15601754 GVIR_CONFIG_IS_STORAGE_VOL
15611755 GVIR_CONFIG_IS_STORAGE_VOL_CLASS
15631757 GVIR_CONFIG_STORAGE_VOL_CLASS
15641758 GVIR_CONFIG_STORAGE_VOL_GET_CLASS
15651759 GVIR_CONFIG_TYPE_STORAGE_VOL
1566 GVirConfigStorageVolPrivate
15671760 gvir_config_storage_vol_get_type
15681761 </SECTION>
15691762
15761769 gvir_config_storage_vol_backing_store_new_from_xml
15771770 gvir_config_storage_vol_backing_store_set_format
15781771 gvir_config_storage_vol_backing_store_set_path
1772 GVirConfigStorageVolBackingStorePrivate
15791773 <SUBSECTION Standard>
15801774 GVIR_CONFIG_IS_STORAGE_VOL_BACKING_STORE
15811775 GVIR_CONFIG_IS_STORAGE_VOL_BACKING_STORE_CLASS
15831777 GVIR_CONFIG_STORAGE_VOL_BACKING_STORE_CLASS
15841778 GVIR_CONFIG_STORAGE_VOL_BACKING_STORE_GET_CLASS
15851779 GVIR_CONFIG_TYPE_STORAGE_VOL_BACKING_STORE
1586 GVirConfigStorageVolBackingStorePrivate
15871780 gvir_config_storage_vol_backing_store_get_type
15881781 </SECTION>
15891782
15961789 gvir_config_storage_vol_target_new_from_xml
15971790 gvir_config_storage_vol_target_set_format
15981791 gvir_config_storage_vol_target_set_permissions
1792 GVirConfigStorageVolTargetPrivate
15991793 <SUBSECTION Standard>
16001794 GVIR_CONFIG_IS_STORAGE_VOL_TARGET
16011795 GVIR_CONFIG_IS_STORAGE_VOL_TARGET_CLASS
16031797 GVIR_CONFIG_STORAGE_VOL_TARGET_CLASS
16041798 GVIR_CONFIG_STORAGE_VOL_TARGET_GET_CLASS
16051799 GVIR_CONFIG_TYPE_STORAGE_VOL_TARGET
1606 GVirConfigStorageVolTargetPrivate
16071800 gvir_config_storage_vol_target_get_type
16081801 </SECTION>
16091802
16131806 GVirConfigXmlDoc
16141807 GVirConfigXmlDocClass
16151808 gvir_config_xml_doc_new
1809 GVirConfigXmlDocPrivate
16161810 <SUBSECTION Standard>
16171811 GVIR_CONFIG_IS_XML_DOC
16181812 GVIR_CONFIG_IS_XML_DOC_CLASS
16201814 GVIR_CONFIG_XML_DOC
16211815 GVIR_CONFIG_XML_DOC_CLASS
16221816 GVIR_CONFIG_XML_DOC_GET_CLASS
1623 GVirConfigXmlDocPrivate
16241817 gvir_config_xml_doc_get_type
16251818 </SECTION>
16261819
00 gvir_config_capabilities_cpu_feature_get_type
11 gvir_config_capabilities_cpu_get_type
2 gvir_config_capabilities_cpu_model_get_type
23 gvir_config_capabilities_cpu_topology_get_type
34 gvir_config_capabilities_get_type
45 gvir_config_capabilities_guest_arch_get_type
67 gvir_config_capabilities_guest_feature_get_type
78 gvir_config_capabilities_guest_get_type
89 gvir_config_capabilities_host_get_type
10 gvir_config_capabilities_host_secmodel_get_type
911 gvir_config_domain_address_get_type
1012 gvir_config_domain_address_pci_get_type
1113 gvir_config_domain_address_usb_get_type
1315 gvir_config_domain_chardev_get_type
1416 gvir_config_domain_chardev_source_get_type
1517 gvir_config_domain_chardev_source_pty_get_type
18 gvir_config_domain_chardev_source_spiceport_get_type
1619 gvir_config_domain_chardev_source_spicevmc_get_type
1720 gvir_config_domain_clock_get_type
1821 gvir_config_domain_console_get_type
2023 gvir_config_domain_controller_usb_get_type
2124 gvir_config_domain_cpu_feature_get_type
2225 gvir_config_domain_cpu_get_type
26 gvir_config_domain_cpu_model_get_type
2327 gvir_config_domain_device_get_type
28 gvir_config_domain_disk_driver_get_type
2429 gvir_config_domain_disk_get_type
2530 gvir_config_domain_filesys_get_type
2631 gvir_config_domain_get_type
3237 gvir_config_domain_graphics_vnc_get_type
3338 gvir_config_domain_input_get_type
3439 gvir_config_domain_interface_bridge_get_type
40 gvir_config_domain_interface_filterref_get_type
41 gvir_config_domain_interface_filterref_parameter_get_type
3542 gvir_config_domain_interface_get_type
3643 gvir_config_domain_interface_network_get_type
3744 gvir_config_domain_interface_user_get_type
5057 gvir_config_domain_snapshot_get_type
5158 gvir_config_domain_sound_get_type
5259 gvir_config_domain_timer_get_type
60 gvir_config_domain_timer_hpet_get_type
5361 gvir_config_domain_timer_pit_get_type
5462 gvir_config_domain_timer_rtc_get_type
5563 gvir_config_domain_video_get_type
0 # Makefile.in generated by automake 1.13.2 from Makefile.am.
0 # Makefile.in generated by automake 1.13.4 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
8686 $(srcdir)/Makefile.am
8787 subdir = docs/libvirt-gconfig
8888 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
89 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
90 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
91 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
92 $(top_srcdir)/m4/lt~obsolete.m4 \
89 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
90 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
91 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
92 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
9393 $(top_srcdir)/m4/manywarnings.m4 \
9494 $(top_srcdir)/m4/virt-compile-warnings.m4 \
9595 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
160160 GIO2_LIBS = @GIO2_LIBS@
161161 GLIB2_CFLAGS = @GLIB2_CFLAGS@
162162 GLIB2_LIBS = @GLIB2_LIBS@
163 GLIB2_REQUIRED = @GLIB2_REQUIRED@
163164 GLIB_MKENUMS = @GLIB_MKENUMS@
164165 GMSGFMT = @GMSGFMT@
165166 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
166167 GOBJECT2_LIBS = @GOBJECT2_LIBS@
167 GOBJECT_INTROSPECTION_CFLAGS = @GOBJECT_INTROSPECTION_CFLAGS@
168 GOBJECT_INTROSPECTION_LIBS = @GOBJECT_INTROSPECTION_LIBS@
169168 GREP = @GREP@
170169 GTHREAD2_CFLAGS = @GTHREAD2_CFLAGS@
171170 GTHREAD2_LIBS = @GTHREAD2_LIBS@
172171 GTKDOC_CHECK = @GTKDOC_CHECK@
172 GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
173173 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
174174 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
175175 GTKDOC_MKPDF = @GTKDOC_MKPDF@
176176 GTKDOC_REBASE = @GTKDOC_REBASE@
177 G_IR_COMPILER = @G_IR_COMPILER@
178 G_IR_SCANNER = @G_IR_SCANNER@
179177 HTML_DIR = @HTML_DIR@
180178 INSTALL = @INSTALL@
181179 INSTALL_DATA = @INSTALL_DATA@
190188 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
191189 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
192190 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
191 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
192 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
193 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
194 INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
195 INTROSPECTION_LIBS = @INTROSPECTION_LIBS@
196 INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@
197 INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
198 INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
193199 LD = @LD@
194200 LDFLAGS = @LDFLAGS@
195201 LIBOBJS = @LIBOBJS@
280286 includedir = @includedir@
281287 infodir = @infodir@
282288 install_sh = @install_sh@
289 installed_test_metadir = @installed_test_metadir@
290 installed_testdir = @installed_testdir@
283291 intltool__v_merge_options_ = @intltool__v_merge_options_@
284292 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
285293 libdir = @libdir@
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirConfigCapabilities</title>
4 <title>Libvirt-gconfig Reference Manual: GVirConfigCapabilities</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">
99 <link rel="next" href="object-tree.html" title="Object Hierarchy">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirConfigStorageVol.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gconfig Reference Manual</th>
20 <td><a accesskey="n" href="object-tree.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirConfigCapabilities.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirConfigCapabilities.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirConfigCapabilities.object-hierarchy" class="shortcut">Object Hierarchy</a>
28 </td></tr>
29 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirConfigCapabilities.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirConfigCapabilities.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
19 </td>
20 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
22 <td><a accesskey="p" href="GVirConfigStorageVol.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23 <td><a accesskey="n" href="object-tree.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24 </tr></table>
3025 <div class="refentry">
3126 <a name="GVirConfigCapabilities"></a><div class="titlepage"></div>
3227 <div class="refnamediv"><table width="100%"><tr>
3429 <h2><span class="refentrytitle"><a name="GVirConfigCapabilities.top_of_page"></a>GVirConfigCapabilities</span></h2>
3530 <p>GVirConfigCapabilities</p>
3631 </td>
37 <td valign="top" align="right"></td>
32 <td class="gallery_image" valign="top" align="right"></td>
3833 </tr></table></div>
39 <div class="refsynopsisdiv">
40 <a name="GVirConfigCapabilities.synopsis"></a><h2>Synopsis</h2>
41 <pre class="synopsis">struct <a class="link" href="GVirConfigCapabilities.html#GVirConfigCapabilities-struct" title="struct GVirConfigCapabilities">GVirConfigCapabilities</a>;
42 struct <a class="link" href="GVirConfigCapabilities.html#GVirConfigCapabilitiesClass" title="struct GVirConfigCapabilitiesClass">GVirConfigCapabilitiesClass</a>;
43 <a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities"><span class="returnvalue">GVirConfigCapabilities</span></a> * <a class="link" href="GVirConfigCapabilities.html#gvir-config-capabilities-new" title="gvir_config_capabilities_new ()">gvir_config_capabilities_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
44 <a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities"><span class="returnvalue">GVirConfigCapabilities</span></a> * <a class="link" href="GVirConfigCapabilities.html#gvir-config-capabilities-new-from-xml" title="gvir_config_capabilities_new_from_xml ()">gvir_config_capabilities_new_from_xml</a>
45 (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
46 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
47 <span class="returnvalue">GVirConfigCapabilitiesHost</span> * <a class="link" href="GVirConfigCapabilities.html#gvir-config-capabilities-get-host" title="gvir_config_capabilities_get_host ()">gvir_config_capabilities_get_host</a>
48 (<em class="parameter"><code><a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities"><span class="type">GVirConfigCapabilities</span></a> *caps</code></em>);
49 <span class="returnvalue">GList</span> * <a class="link" href="GVirConfigCapabilities.html#gvir-config-capabilities-get-guests" title="gvir_config_capabilities_get_guests ()">gvir_config_capabilities_get_guests</a> (<em class="parameter"><code><a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities"><span class="type">GVirConfigCapabilities</span></a> *caps</code></em>);
50 </pre>
34 <div class="refsect1">
35 <a name="GVirConfigCapabilities.functions"></a><h2>Functions</h2>
36 <div class="informaltable"><table width="100%" border="0">
37 <colgroup>
38 <col width="150px" class="functions_return">
39 <col class="functions_name">
40 </colgroup>
41 <tbody>
42 <tr>
43 <td class="function_type">
44 <a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities"><span class="returnvalue">GVirConfigCapabilities</span></a> *
45 </td>
46 <td class="function_name">
47 <a class="link" href="GVirConfigCapabilities.html#gvir-config-capabilities-new" title="gvir_config_capabilities_new ()">gvir_config_capabilities_new</a> <span class="c_punctuation">()</span>
48 </td>
49 </tr>
50 <tr>
51 <td class="function_type">
52 <a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities"><span class="returnvalue">GVirConfigCapabilities</span></a> *
53 </td>
54 <td class="function_name">
55 <a class="link" href="GVirConfigCapabilities.html#gvir-config-capabilities-new-from-xml" title="gvir_config_capabilities_new_from_xml ()">gvir_config_capabilities_new_from_xml</a> <span class="c_punctuation">()</span>
56 </td>
57 </tr>
58 <tr>
59 <td class="function_type">
60 <span class="returnvalue">GVirConfigCapabilitiesHost</span> *
61 </td>
62 <td class="function_name">
63 <a class="link" href="GVirConfigCapabilities.html#gvir-config-capabilities-get-host" title="gvir_config_capabilities_get_host ()">gvir_config_capabilities_get_host</a> <span class="c_punctuation">()</span>
64 </td>
65 </tr>
66 <tr>
67 <td class="function_type">
68 <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
69 </td>
70 <td class="function_name">
71 <a class="link" href="GVirConfigCapabilities.html#gvir-config-capabilities-get-guests" title="gvir_config_capabilities_get_guests ()">gvir_config_capabilities_get_guests</a> <span class="c_punctuation">()</span>
72 </td>
73 </tr>
74 </tbody>
75 </table></div>
76 </div>
77 <div class="refsect1">
78 <a name="GVirConfigCapabilities.other"></a><h2>Types and Values</h2>
79 <div class="informaltable"><table width="100%" border="0">
80 <colgroup>
81 <col width="150px" class="name">
82 <col class="description">
83 </colgroup>
84 <tbody>
85 <tr>
86 <td class="datatype_keyword">struct</td>
87 <td class="function_name"><a class="link" href="GVirConfigCapabilities.html#GVirConfigCapabilities-struct" title="struct GVirConfigCapabilities">GVirConfigCapabilities</a></td>
88 </tr>
89 <tr>
90 <td class="datatype_keyword">struct</td>
91 <td class="function_name"><a class="link" href="GVirConfigCapabilities.html#GVirConfigCapabilitiesClass" title="struct GVirConfigCapabilitiesClass">GVirConfigCapabilitiesClass</a></td>
92 </tr>
93 <tr>
94 <td class="datatype_keyword"> </td>
95 <td class="function_name"><a class="link" href="GVirConfigCapabilities.html#GVirConfigCapabilitiesPrivate" title="GVirConfigCapabilitiesPrivate">GVirConfigCapabilitiesPrivate</a></td>
96 </tr>
97 </tbody>
98 </table></div>
5199 </div>
52100 <div class="refsect1">
53101 <a name="GVirConfigCapabilities.object-hierarchy"></a><h2>Object Hierarchy</h2>
54 <pre class="synopsis">
55 GObject
56 +----<a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
57 +----GVirConfigCapabilities
102 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
103 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
104 <span class="lineart">╰──</span> GVirConfigCapabilities
58105 </pre>
59106 </div>
60107 <div class="refsect1">
61108 <a name="GVirConfigCapabilities.description"></a><h2>Description</h2>
62109 </div>
63110 <div class="refsect1">
64 <a name="GVirConfigCapabilities.details"></a><h2>Details</h2>
111 <a name="GVirConfigCapabilities.functions_details"></a><h2>Functions</h2>
112 <div class="refsect2">
113 <a name="gvir-config-capabilities-new"></a><h3>gvir_config_capabilities_new ()</h3>
114 <pre class="programlisting"><a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities"><span class="returnvalue">GVirConfigCapabilities</span></a> *
115 gvir_config_capabilities_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
116 </div>
117 <hr>
118 <div class="refsect2">
119 <a name="gvir-config-capabilities-new-from-xml"></a><h3>gvir_config_capabilities_new_from_xml ()</h3>
120 <pre class="programlisting"><a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities"><span class="returnvalue">GVirConfigCapabilities</span></a> *
121 gvir_config_capabilities_new_from_xml (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
122 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
123 </div>
124 <hr>
125 <div class="refsect2">
126 <a name="gvir-config-capabilities-get-host"></a><h3>gvir_config_capabilities_get_host ()</h3>
127 <pre class="programlisting"><span class="returnvalue">GVirConfigCapabilitiesHost</span> *
128 gvir_config_capabilities_get_host (<em class="parameter"><code><a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities"><span class="type">GVirConfigCapabilities</span></a> *caps</code></em>);</pre>
129 <p>Gets the host capabilities.</p>
130 <div class="refsect3">
131 <a name="id-1.2.12.7.4.5"></a><h4>Returns</h4>
132 <p> a new <span class="type">GVirConfigCapabilitiesHost</span>. </p>
133 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
134 </div>
135 </div>
136 <hr>
137 <div class="refsect2">
138 <a name="gvir-config-capabilities-get-guests"></a><h3>gvir_config_capabilities_get_guests ()</h3>
139 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
140 gvir_config_capabilities_get_guests (<em class="parameter"><code><a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities"><span class="type">GVirConfigCapabilities</span></a> *caps</code></em>);</pre>
141 <p>Gets the list of guest capabilities.</p>
142 <div class="refsect3">
143 <a name="id-1.2.12.7.5.5"></a><h4>Returns</h4>
144 <p>a newly allocated <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of <span class="type">GVirConfigCapabilitiesGuest</span>. </p>
145 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGConfig.CapabilitiesGuest][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
146 </div>
147 </div>
148 </div>
149 <div class="refsect1">
150 <a name="GVirConfigCapabilities.other_details"></a><h2>Types and Values</h2>
65151 <div class="refsect2">
66152 <a name="GVirConfigCapabilities-struct"></a><h3>struct GVirConfigCapabilities</h3>
67153 <pre class="programlisting">struct GVirConfigCapabilities;</pre>
78164 </div>
79165 <hr>
80166 <div class="refsect2">
81 <a name="gvir-config-capabilities-new"></a><h3>gvir_config_capabilities_new ()</h3>
82 <pre class="programlisting"><a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities"><span class="returnvalue">GVirConfigCapabilities</span></a> * gvir_config_capabilities_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
83 </div>
84 <hr>
85 <div class="refsect2">
86 <a name="gvir-config-capabilities-new-from-xml"></a><h3>gvir_config_capabilities_new_from_xml ()</h3>
87 <pre class="programlisting"><a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities"><span class="returnvalue">GVirConfigCapabilities</span></a> * gvir_config_capabilities_new_from_xml
88 (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
89 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
90 </div>
91 <hr>
92 <div class="refsect2">
93 <a name="gvir-config-capabilities-get-host"></a><h3>gvir_config_capabilities_get_host ()</h3>
94 <pre class="programlisting"><span class="returnvalue">GVirConfigCapabilitiesHost</span> * gvir_config_capabilities_get_host
95 (<em class="parameter"><code><a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities"><span class="type">GVirConfigCapabilities</span></a> *caps</code></em>);</pre>
96 <p>
97 Gets the host capabilities.
98 </p>
99 <div class="variablelist"><table border="0" class="variablelist">
100 <colgroup>
101 <col align="left" valign="top">
102 <col>
103 </colgroup>
104 <tbody><tr>
105 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
106 <td>a new <span class="type">GVirConfigCapabilitiesHost</span>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
107 </td>
108 </tr></tbody>
109 </table></div>
110 </div>
111 <hr>
112 <div class="refsect2">
113 <a name="gvir-config-capabilities-get-guests"></a><h3>gvir_config_capabilities_get_guests ()</h3>
114 <pre class="programlisting"><span class="returnvalue">GList</span> * gvir_config_capabilities_get_guests (<em class="parameter"><code><a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities"><span class="type">GVirConfigCapabilities</span></a> *caps</code></em>);</pre>
115 <p>
116 Gets the list of guest capabilities.
117 </p>
118 <div class="variablelist"><table border="0" class="variablelist">
119 <colgroup>
120 <col align="left" valign="top">
121 <col>
122 </colgroup>
123 <tbody><tr>
124 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
125 <td>a newly allocated <span class="type">GList</span> of <span class="type">GVirConfigCapabilitiesGuest</span>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGConfig.CapabilitiesGuest][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
126 </td>
127 </tr></tbody>
128 </table></div>
167 <a name="GVirConfigCapabilitiesPrivate"></a><h3>GVirConfigCapabilitiesPrivate</h3>
168 <pre class="programlisting">typedef struct _GVirConfigCapabilitiesPrivate GVirConfigCapabilitiesPrivate;</pre>
129169 </div>
130170 </div>
131171 </div>
132172 <div class="footer">
133173 <hr>
134 Generated by GTK-Doc V1.19</div>
174 Generated by GTK-Doc V1.21</div>
135175 </body>
136176 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirConfigDomain</title>
4 <title>Libvirt-gconfig Reference Manual: GVirConfigDomain</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigObject.html" title="GVirConfigObject">
99 <link rel="next" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirConfigObject.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gconfig Reference Manual</th>
20 <td><a accesskey="n" href="GVirConfigDomainSnapshot.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirConfigDomain.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirConfigDomain.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirConfigDomain.object-hierarchy" class="shortcut">Object Hierarchy</a>
28  | 
29 <a href="#GVirConfigDomain.properties" class="shortcut">Properties</a>
30 </td></tr>
31 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirConfigDomain.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirConfigDomain.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
19 <a href="#GVirConfigDomain.properties" class="shortcut">Properties</a></span>
20 </td>
21 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23 <td><a accesskey="p" href="GVirConfigObject.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24 <td><a accesskey="n" href="GVirConfigDomainSnapshot.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25 </tr></table>
3226 <div class="refentry">
3327 <a name="GVirConfigDomain"></a><div class="titlepage"></div>
3428 <div class="refnamediv"><table width="100%"><tr>
3630 <h2><span class="refentrytitle"><a name="GVirConfigDomain.top_of_page"></a>GVirConfigDomain</span></h2>
3731 <p>GVirConfigDomain</p>
3832 </td>
39 <td valign="top" align="right"></td>
33 <td class="gallery_image" valign="top" align="right"></td>
4034 </tr></table></div>
41 <div class="refsynopsisdiv">
42 <a name="GVirConfigDomain.synopsis"></a><h2>Synopsis</h2>
43 <pre class="synopsis">struct <a class="link" href="GVirConfigDomain.html#GVirConfigDomain-struct" title="struct GVirConfigDomain">GVirConfigDomain</a>;
44 struct <a class="link" href="GVirConfigDomain.html#GVirConfigDomainClass" title="struct GVirConfigDomainClass">GVirConfigDomainClass</a>;
45 enum <a class="link" href="GVirConfigDomain.html#GVirConfigDomainVirtType" title="enum GVirConfigDomainVirtType">GVirConfigDomainVirtType</a>;
46 enum <a class="link" href="GVirConfigDomain.html#GVirConfigDomainLifecycleEvent" title="enum GVirConfigDomainLifecycleEvent">GVirConfigDomainLifecycleEvent</a>;
47 enum <a class="link" href="GVirConfigDomain.html#GVirConfigDomainLifecycleAction" title="enum GVirConfigDomainLifecycleAction">GVirConfigDomainLifecycleAction</a>;
48 <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="returnvalue">GVirConfigDomain</span></a> * <a class="link" href="GVirConfigDomain.html#gvir-config-domain-new-from-xml" title="gvir_config_domain_new_from_xml ()">gvir_config_domain_new_from_xml</a> (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
49 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
50 <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="returnvalue">GVirConfigDomain</span></a> * <a class="link" href="GVirConfigDomain.html#gvir-config-domain-new" title="gvir_config_domain_new ()">gvir_config_domain_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
51 <a class="link" href="GVirConfigDomain.html#GVirConfigDomainVirtType" title="enum GVirConfigDomainVirtType"><span class="returnvalue">GVirConfigDomainVirtType</span></a> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-virt-type" title="gvir_config_domain_get_virt_type ()">gvir_config_domain_get_virt_type</a>
52 (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);
53 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-virt-type" title="gvir_config_domain_set_virt_type ()">gvir_config_domain_set_virt_type</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
54 <em class="parameter"><code><a class="link" href="GVirConfigDomain.html#GVirConfigDomainVirtType" title="enum GVirConfigDomainVirtType"><span class="type">GVirConfigDomainVirtType</span></a> type</code></em>);
55 const <span class="returnvalue">char</span> * <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-name" title="gvir_config_domain_get_name ()">gvir_config_domain_get_name</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);
56 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-name" title="gvir_config_domain_set_name ()">gvir_config_domain_set_name</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
57 <em class="parameter"><code>const <span class="type">char</span> *name</code></em>);
58 const <span class="returnvalue">char</span> * <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-description" title="gvir_config_domain_get_description ()">gvir_config_domain_get_description</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);
59 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-description" title="gvir_config_domain_set_description ()">gvir_config_domain_set_description</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
60 <em class="parameter"><code>const <span class="type">char</span> *description</code></em>);
61 <span class="returnvalue">guint64</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-memory" title="gvir_config_domain_get_memory ()">gvir_config_domain_get_memory</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);
62 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-memory" title="gvir_config_domain_set_memory ()">gvir_config_domain_set_memory</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
63 <em class="parameter"><code><span class="type">guint64</span> memory</code></em>);
64 <span class="returnvalue">guint64</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-current-memory" title="gvir_config_domain_get_current_memory ()">gvir_config_domain_get_current_memory</a>
65 (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);
66 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-current-memory" title="gvir_config_domain_set_current_memory ()">gvir_config_domain_set_current_memory</a>
67 (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
68 <em class="parameter"><code><span class="type">guint64</span> memory</code></em>);
69 <span class="returnvalue">guint64</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-vcpus" title="gvir_config_domain_get_vcpus ()">gvir_config_domain_get_vcpus</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);
70 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-vcpus" title="gvir_config_domain_set_vcpus ()">gvir_config_domain_set_vcpus</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
71 <em class="parameter"><code><span class="type">guint64</span> vcpu_count</code></em>);
72 <span class="returnvalue">GStrv</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-features" title="gvir_config_domain_get_features ()">gvir_config_domain_get_features</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);
73 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-features" title="gvir_config_domain_set_features ()">gvir_config_domain_set_features</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
74 <em class="parameter"><code>const <span class="type">GStrv</span> features</code></em>);
75 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-clock" title="gvir_config_domain_set_clock ()">gvir_config_domain_set_clock</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
76 <em class="parameter"><code><span class="type">GVirConfigDomainClock</span> *klock</code></em>);
77 <span class="returnvalue">GVirConfigDomainOs</span> * <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-os" title="gvir_config_domain_get_os ()">gvir_config_domain_get_os</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);
78 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-os" title="gvir_config_domain_set_os ()">gvir_config_domain_set_os</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
79 <em class="parameter"><code><span class="type">GVirConfigDomainOs</span> *os</code></em>);
80 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-seclabel" title="gvir_config_domain_set_seclabel ()">gvir_config_domain_set_seclabel</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
81 <em class="parameter"><code><span class="type">GVirConfigDomainSeclabel</span> *seclabel</code></em>);
82 const <span class="returnvalue">char</span> * <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-title" title="gvir_config_domain_get_title ()">gvir_config_domain_get_title</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);
83 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-title" title="gvir_config_domain_set_title ()">gvir_config_domain_set_title</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
84 <em class="parameter"><code>const <span class="type">char</span> *title</code></em>);
85 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-devices" title="gvir_config_domain_set_devices ()">gvir_config_domain_set_devices</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
86 <em class="parameter"><code><span class="type">GList</span> *devices</code></em>);
87 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-add-device" title="gvir_config_domain_add_device ()">gvir_config_domain_add_device</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
88 <em class="parameter"><code><span class="type">GVirConfigDomainDevice</span> *device</code></em>);
89 <span class="returnvalue">GList</span> * <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-devices" title="gvir_config_domain_get_devices ()">gvir_config_domain_get_devices</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);
90 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-lifecycle" title="gvir_config_domain_set_lifecycle ()">gvir_config_domain_set_lifecycle</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
91 <em class="parameter"><code><a class="link" href="GVirConfigDomain.html#GVirConfigDomainLifecycleEvent" title="enum GVirConfigDomainLifecycleEvent"><span class="type">GVirConfigDomainLifecycleEvent</span></a> event</code></em>,
92 <em class="parameter"><code><a class="link" href="GVirConfigDomain.html#GVirConfigDomainLifecycleAction" title="enum GVirConfigDomainLifecycleAction"><span class="type">GVirConfigDomainLifecycleAction</span></a> action</code></em>);
93 <span class="returnvalue">gboolean</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-custom-xml" title="gvir_config_domain_set_custom_xml ()">gvir_config_domain_set_custom_xml</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
94 <em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
95 <em class="parameter"><code>const <span class="type">gchar</span> *ns</code></em>,
96 <em class="parameter"><code>const <span class="type">gchar</span> *ns_uri</code></em>,
97 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
98 <span class="returnvalue">gchar</span> * <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-custom-xml" title="gvir_config_domain_get_custom_xml ()">gvir_config_domain_get_custom_xml</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
99 <em class="parameter"><code>const <span class="type">gchar</span> *ns_uri</code></em>);
100 <span class="returnvalue">GVirConfigDomainCpu</span> * <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-cpu" title="gvir_config_domain_get_cpu ()">gvir_config_domain_get_cpu</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);
101 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-cpu" title="gvir_config_domain_set_cpu ()">gvir_config_domain_set_cpu</a> (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
102 <em class="parameter"><code><span class="type">GVirConfigDomainCpu</span> *cpu</code></em>);
103 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-power-management" title="gvir_config_domain_set_power_management ()">gvir_config_domain_set_power_management</a>
104 (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
105 <em class="parameter"><code><span class="type">GVirConfigDomainPowerManagement</span> *pm</code></em>);
106 </pre>
35 <div class="refsect1">
36 <a name="GVirConfigDomain.functions"></a><h2>Functions</h2>
37 <div class="informaltable"><table width="100%" border="0">
38 <colgroup>
39 <col width="150px" class="functions_return">
40 <col class="functions_name">
41 </colgroup>
42 <tbody>
43 <tr>
44 <td class="function_type">
45 <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="returnvalue">GVirConfigDomain</span></a> *
46 </td>
47 <td class="function_name">
48 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-new-from-xml" title="gvir_config_domain_new_from_xml ()">gvir_config_domain_new_from_xml</a> <span class="c_punctuation">()</span>
49 </td>
50 </tr>
51 <tr>
52 <td class="function_type">
53 <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="returnvalue">GVirConfigDomain</span></a> *
54 </td>
55 <td class="function_name">
56 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-new" title="gvir_config_domain_new ()">gvir_config_domain_new</a> <span class="c_punctuation">()</span>
57 </td>
58 </tr>
59 <tr>
60 <td class="function_type">
61 <a class="link" href="GVirConfigDomain.html#GVirConfigDomainVirtType" title="enum GVirConfigDomainVirtType"><span class="returnvalue">GVirConfigDomainVirtType</span></a>
62 </td>
63 <td class="function_name">
64 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-virt-type" title="gvir_config_domain_get_virt_type ()">gvir_config_domain_get_virt_type</a> <span class="c_punctuation">()</span>
65 </td>
66 </tr>
67 <tr>
68 <td class="function_type">
69 <span class="returnvalue">void</span>
70 </td>
71 <td class="function_name">
72 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-virt-type" title="gvir_config_domain_set_virt_type ()">gvir_config_domain_set_virt_type</a> <span class="c_punctuation">()</span>
73 </td>
74 </tr>
75 <tr>
76 <td class="function_type">const <span class="returnvalue">char</span> *
77 </td>
78 <td class="function_name">
79 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-name" title="gvir_config_domain_get_name ()">gvir_config_domain_get_name</a> <span class="c_punctuation">()</span>
80 </td>
81 </tr>
82 <tr>
83 <td class="function_type">
84 <span class="returnvalue">void</span>
85 </td>
86 <td class="function_name">
87 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-name" title="gvir_config_domain_set_name ()">gvir_config_domain_set_name</a> <span class="c_punctuation">()</span>
88 </td>
89 </tr>
90 <tr>
91 <td class="function_type">const <span class="returnvalue">char</span> *
92 </td>
93 <td class="function_name">
94 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-uuid" title="gvir_config_domain_get_uuid ()">gvir_config_domain_get_uuid</a> <span class="c_punctuation">()</span>
95 </td>
96 </tr>
97 <tr>
98 <td class="function_type">
99 <span class="returnvalue">void</span>
100 </td>
101 <td class="function_name">
102 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-uuid" title="gvir_config_domain_set_uuid ()">gvir_config_domain_set_uuid</a> <span class="c_punctuation">()</span>
103 </td>
104 </tr>
105 <tr>
106 <td class="function_type">const <span class="returnvalue">char</span> *
107 </td>
108 <td class="function_name">
109 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-description" title="gvir_config_domain_get_description ()">gvir_config_domain_get_description</a> <span class="c_punctuation">()</span>
110 </td>
111 </tr>
112 <tr>
113 <td class="function_type">
114 <span class="returnvalue">void</span>
115 </td>
116 <td class="function_name">
117 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-description" title="gvir_config_domain_set_description ()">gvir_config_domain_set_description</a> <span class="c_punctuation">()</span>
118 </td>
119 </tr>
120 <tr>
121 <td class="function_type">
122 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
123 </td>
124 <td class="function_name">
125 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-memory" title="gvir_config_domain_get_memory ()">gvir_config_domain_get_memory</a> <span class="c_punctuation">()</span>
126 </td>
127 </tr>
128 <tr>
129 <td class="function_type">
130 <span class="returnvalue">void</span>
131 </td>
132 <td class="function_name">
133 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-memory" title="gvir_config_domain_set_memory ()">gvir_config_domain_set_memory</a> <span class="c_punctuation">()</span>
134 </td>
135 </tr>
136 <tr>
137 <td class="function_type">
138 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
139 </td>
140 <td class="function_name">
141 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-current-memory" title="gvir_config_domain_get_current_memory ()">gvir_config_domain_get_current_memory</a> <span class="c_punctuation">()</span>
142 </td>
143 </tr>
144 <tr>
145 <td class="function_type">
146 <span class="returnvalue">void</span>
147 </td>
148 <td class="function_name">
149 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-current-memory" title="gvir_config_domain_set_current_memory ()">gvir_config_domain_set_current_memory</a> <span class="c_punctuation">()</span>
150 </td>
151 </tr>
152 <tr>
153 <td class="function_type">
154 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
155 </td>
156 <td class="function_name">
157 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-vcpus" title="gvir_config_domain_get_vcpus ()">gvir_config_domain_get_vcpus</a> <span class="c_punctuation">()</span>
158 </td>
159 </tr>
160 <tr>
161 <td class="function_type">
162 <span class="returnvalue">void</span>
163 </td>
164 <td class="function_name">
165 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-vcpus" title="gvir_config_domain_set_vcpus ()">gvir_config_domain_set_vcpus</a> <span class="c_punctuation">()</span>
166 </td>
167 </tr>
168 <tr>
169 <td class="function_type">
170 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="returnvalue">GStrv</span></a>
171 </td>
172 <td class="function_name">
173 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-features" title="gvir_config_domain_get_features ()">gvir_config_domain_get_features</a> <span class="c_punctuation">()</span>
174 </td>
175 </tr>
176 <tr>
177 <td class="function_type">
178 <span class="returnvalue">void</span>
179 </td>
180 <td class="function_name">
181 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-features" title="gvir_config_domain_set_features ()">gvir_config_domain_set_features</a> <span class="c_punctuation">()</span>
182 </td>
183 </tr>
184 <tr>
185 <td class="function_type">
186 <span class="returnvalue">GVirConfigDomainClock</span> *
187 </td>
188 <td class="function_name">
189 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-clock" title="gvir_config_domain_get_clock ()">gvir_config_domain_get_clock</a> <span class="c_punctuation">()</span>
190 </td>
191 </tr>
192 <tr>
193 <td class="function_type">
194 <span class="returnvalue">void</span>
195 </td>
196 <td class="function_name">
197 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-clock" title="gvir_config_domain_set_clock ()">gvir_config_domain_set_clock</a> <span class="c_punctuation">()</span>
198 </td>
199 </tr>
200 <tr>
201 <td class="function_type">
202 <span class="returnvalue">GVirConfigDomainOs</span> *
203 </td>
204 <td class="function_name">
205 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-os" title="gvir_config_domain_get_os ()">gvir_config_domain_get_os</a> <span class="c_punctuation">()</span>
206 </td>
207 </tr>
208 <tr>
209 <td class="function_type">
210 <span class="returnvalue">void</span>
211 </td>
212 <td class="function_name">
213 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-os" title="gvir_config_domain_set_os ()">gvir_config_domain_set_os</a> <span class="c_punctuation">()</span>
214 </td>
215 </tr>
216 <tr>
217 <td class="function_type">
218 <span class="returnvalue">void</span>
219 </td>
220 <td class="function_name">
221 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-seclabel" title="gvir_config_domain_set_seclabel ()">gvir_config_domain_set_seclabel</a> <span class="c_punctuation">()</span>
222 </td>
223 </tr>
224 <tr>
225 <td class="function_type">const <span class="returnvalue">char</span> *
226 </td>
227 <td class="function_name">
228 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-title" title="gvir_config_domain_get_title ()">gvir_config_domain_get_title</a> <span class="c_punctuation">()</span>
229 </td>
230 </tr>
231 <tr>
232 <td class="function_type">
233 <span class="returnvalue">void</span>
234 </td>
235 <td class="function_name">
236 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-title" title="gvir_config_domain_set_title ()">gvir_config_domain_set_title</a> <span class="c_punctuation">()</span>
237 </td>
238 </tr>
239 <tr>
240 <td class="function_type">
241 <span class="returnvalue">void</span>
242 </td>
243 <td class="function_name">
244 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-devices" title="gvir_config_domain_set_devices ()">gvir_config_domain_set_devices</a> <span class="c_punctuation">()</span>
245 </td>
246 </tr>
247 <tr>
248 <td class="function_type">
249 <span class="returnvalue">void</span>
250 </td>
251 <td class="function_name">
252 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-add-device" title="gvir_config_domain_add_device ()">gvir_config_domain_add_device</a> <span class="c_punctuation">()</span>
253 </td>
254 </tr>
255 <tr>
256 <td class="function_type">
257 <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
258 </td>
259 <td class="function_name">
260 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-devices" title="gvir_config_domain_get_devices ()">gvir_config_domain_get_devices</a> <span class="c_punctuation">()</span>
261 </td>
262 </tr>
263 <tr>
264 <td class="function_type">
265 <span class="returnvalue">void</span>
266 </td>
267 <td class="function_name">
268 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-lifecycle" title="gvir_config_domain_set_lifecycle ()">gvir_config_domain_set_lifecycle</a> <span class="c_punctuation">()</span>
269 </td>
270 </tr>
271 <tr>
272 <td class="function_type">
273 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
274 </td>
275 <td class="function_name">
276 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-custom-xml" title="gvir_config_domain_set_custom_xml ()">gvir_config_domain_set_custom_xml</a> <span class="c_punctuation">()</span>
277 </td>
278 </tr>
279 <tr>
280 <td class="function_type">
281 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
282 </td>
283 <td class="function_name">
284 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-custom-xml" title="gvir_config_domain_get_custom_xml ()">gvir_config_domain_get_custom_xml</a> <span class="c_punctuation">()</span>
285 </td>
286 </tr>
287 <tr>
288 <td class="function_type">
289 <span class="returnvalue">GVirConfigDomainCpu</span> *
290 </td>
291 <td class="function_name">
292 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-cpu" title="gvir_config_domain_get_cpu ()">gvir_config_domain_get_cpu</a> <span class="c_punctuation">()</span>
293 </td>
294 </tr>
295 <tr>
296 <td class="function_type">
297 <span class="returnvalue">void</span>
298 </td>
299 <td class="function_name">
300 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-cpu" title="gvir_config_domain_set_cpu ()">gvir_config_domain_set_cpu</a> <span class="c_punctuation">()</span>
301 </td>
302 </tr>
303 <tr>
304 <td class="function_type">
305 <span class="returnvalue">void</span>
306 </td>
307 <td class="function_name">
308 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-power-management" title="gvir_config_domain_set_power_management ()">gvir_config_domain_set_power_management</a> <span class="c_punctuation">()</span>
309 </td>
310 </tr>
311 </tbody>
312 </table></div>
313 </div>
314 <div class="refsect1">
315 <a name="GVirConfigDomain.properties"></a><h2>Properties</h2>
316 <div class="informaltable"><table border="0">
317 <colgroup>
318 <col width="150px" class="properties_type">
319 <col width="300px" class="properties_name">
320 <col width="200px" class="properties_flags">
321 </colgroup>
322 <tbody>
323 <tr>
324 <td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a></td>
325 <td class="property_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomain--current-memory" title="The “current-memory” property">current-memory</a></td>
326 <td class="property_flags">Read / Write</td>
327 </tr>
328 <tr>
329 <td class="property_type">
330 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
331 <td class="property_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomain--description" title="The “description” property">description</a></td>
332 <td class="property_flags">Read / Write</td>
333 </tr>
334 <tr>
335 <td class="property_type"><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a></td>
336 <td class="property_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomain--features" title="The “features” property">features</a></td>
337 <td class="property_flags">Read / Write</td>
338 </tr>
339 <tr>
340 <td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a></td>
341 <td class="property_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomain--memory" title="The “memory” property">memory</a></td>
342 <td class="property_flags">Read / Write</td>
343 </tr>
344 <tr>
345 <td class="property_type">
346 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
347 <td class="property_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomain--name" title="The “name” property">name</a></td>
348 <td class="property_flags">Read / Write</td>
349 </tr>
350 <tr>
351 <td class="property_type">
352 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
353 <td class="property_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomain--title" title="The “title” property">title</a></td>
354 <td class="property_flags">Read / Write</td>
355 </tr>
356 <tr>
357 <td class="property_type">
358 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
359 <td class="property_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomain--uuid" title="The “uuid” property">uuid</a></td>
360 <td class="property_flags">Read / Write</td>
361 </tr>
362 <tr>
363 <td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a></td>
364 <td class="property_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomain--vcpu" title="The “vcpu” property">vcpu</a></td>
365 <td class="property_flags">Read / Write</td>
366 </tr>
367 </tbody>
368 </table></div>
369 </div>
370 <div class="refsect1">
371 <a name="GVirConfigDomain.other"></a><h2>Types and Values</h2>
372 <div class="informaltable"><table width="100%" border="0">
373 <colgroup>
374 <col width="150px" class="name">
375 <col class="description">
376 </colgroup>
377 <tbody>
378 <tr>
379 <td class="datatype_keyword">struct</td>
380 <td class="function_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomain-struct" title="struct GVirConfigDomain">GVirConfigDomain</a></td>
381 </tr>
382 <tr>
383 <td class="datatype_keyword">struct</td>
384 <td class="function_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomainClass" title="struct GVirConfigDomainClass">GVirConfigDomainClass</a></td>
385 </tr>
386 <tr>
387 <td class="datatype_keyword">enum</td>
388 <td class="function_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomainVirtType" title="enum GVirConfigDomainVirtType">GVirConfigDomainVirtType</a></td>
389 </tr>
390 <tr>
391 <td class="datatype_keyword">enum</td>
392 <td class="function_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomainLifecycleEvent" title="enum GVirConfigDomainLifecycleEvent">GVirConfigDomainLifecycleEvent</a></td>
393 </tr>
394 <tr>
395 <td class="datatype_keyword">enum</td>
396 <td class="function_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomainLifecycleAction" title="enum GVirConfigDomainLifecycleAction">GVirConfigDomainLifecycleAction</a></td>
397 </tr>
398 <tr>
399 <td class="datatype_keyword"> </td>
400 <td class="function_name"><a class="link" href="GVirConfigDomain.html#GVirConfigDomainPrivate" title="GVirConfigDomainPrivate">GVirConfigDomainPrivate</a></td>
401 </tr>
402 </tbody>
403 </table></div>
107404 </div>
108405 <div class="refsect1">
109406 <a name="GVirConfigDomain.object-hierarchy"></a><h2>Object Hierarchy</h2>
110 <pre class="synopsis">
111 GObject
112 +----<a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
113 +----GVirConfigDomain
114 </pre>
115 </div>
116 <div class="refsect1">
117 <a name="GVirConfigDomain.properties"></a><h2>Properties</h2>
118 <pre class="synopsis">
119 "<a class="link" href="GVirConfigDomain.html#GVirConfigDomain--current-memory" title='The "current-memory" property'>current-memory</a>" <span class="type">guint64</span> : Read / Write
120 "<a class="link" href="GVirConfigDomain.html#GVirConfigDomain--description" title='The "description" property'>description</a>" <span class="type">gchar</span>* : Read / Write
121 "<a class="link" href="GVirConfigDomain.html#GVirConfigDomain--features" title='The "features" property'>features</a>" <span class="type">GStrv</span> : Read / Write
122 "<a class="link" href="GVirConfigDomain.html#GVirConfigDomain--memory" title='The "memory" property'>memory</a>" <span class="type">guint64</span> : Read / Write
123 "<a class="link" href="GVirConfigDomain.html#GVirConfigDomain--name" title='The "name" property'>name</a>" <span class="type">gchar</span>* : Read / Write
124 "<a class="link" href="GVirConfigDomain.html#GVirConfigDomain--title" title='The "title" property'>title</a>" <span class="type">gchar</span>* : Read / Write
125 "<a class="link" href="GVirConfigDomain.html#GVirConfigDomain--vcpu" title='The "vcpu" property'>vcpu</a>" <span class="type">guint64</span> : Read / Write
407 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
408 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
409 <span class="lineart">╰──</span> GVirConfigDomain
126410 </pre>
127411 </div>
128412 <div class="refsect1">
129413 <a name="GVirConfigDomain.description"></a><h2>Description</h2>
130414 </div>
131415 <div class="refsect1">
132 <a name="GVirConfigDomain.details"></a><h2>Details</h2>
416 <a name="GVirConfigDomain.functions_details"></a><h2>Functions</h2>
417 <div class="refsect2">
418 <a name="gvir-config-domain-new-from-xml"></a><h3>gvir_config_domain_new_from_xml ()</h3>
419 <pre class="programlisting"><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="returnvalue">GVirConfigDomain</span></a> *
420 gvir_config_domain_new_from_xml (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
421 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
422 </div>
423 <hr>
424 <div class="refsect2">
425 <a name="gvir-config-domain-new"></a><h3>gvir_config_domain_new ()</h3>
426 <pre class="programlisting"><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="returnvalue">GVirConfigDomain</span></a> *
427 gvir_config_domain_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
428 </div>
429 <hr>
430 <div class="refsect2">
431 <a name="gvir-config-domain-get-virt-type"></a><h3>gvir_config_domain_get_virt_type ()</h3>
432 <pre class="programlisting"><a class="link" href="GVirConfigDomain.html#GVirConfigDomainVirtType" title="enum GVirConfigDomainVirtType"><span class="returnvalue">GVirConfigDomainVirtType</span></a>
433 gvir_config_domain_get_virt_type (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
434 </div>
435 <hr>
436 <div class="refsect2">
437 <a name="gvir-config-domain-set-virt-type"></a><h3>gvir_config_domain_set_virt_type ()</h3>
438 <pre class="programlisting"><span class="returnvalue">void</span>
439 gvir_config_domain_set_virt_type (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
440 <em class="parameter"><code><a class="link" href="GVirConfigDomain.html#GVirConfigDomainVirtType" title="enum GVirConfigDomainVirtType"><span class="type">GVirConfigDomainVirtType</span></a> type</code></em>);</pre>
441 </div>
442 <hr>
443 <div class="refsect2">
444 <a name="gvir-config-domain-get-name"></a><h3>gvir_config_domain_get_name ()</h3>
445 <pre class="programlisting">const <span class="returnvalue">char</span> *
446 gvir_config_domain_get_name (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
447 </div>
448 <hr>
449 <div class="refsect2">
450 <a name="gvir-config-domain-set-name"></a><h3>gvir_config_domain_set_name ()</h3>
451 <pre class="programlisting"><span class="returnvalue">void</span>
452 gvir_config_domain_set_name (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
453 <em class="parameter"><code>const <span class="type">char</span> *name</code></em>);</pre>
454 <div class="refsect3">
455 <a name="id-1.2.3.8.7.4"></a><h4>Parameters</h4>
456 <div class="informaltable"><table width="100%" border="0">
457 <colgroup>
458 <col width="150px" class="parameters_name">
459 <col class="parameters_description">
460 <col width="200px" class="parameters_annotations">
461 </colgroup>
462 <tbody>
463 <tr>
464 <td class="parameter_name"><p>domain</p></td>
465 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
466 <td class="parameter_annotations"> </td>
467 </tr>
468 <tr>
469 <td class="parameter_name"><p>name</p></td>
470 <td class="parameter_description"><p>. </p></td>
471 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
472 </tr>
473 </tbody>
474 </table></div>
475 </div>
476 </div>
477 <hr>
478 <div class="refsect2">
479 <a name="gvir-config-domain-get-uuid"></a><h3>gvir_config_domain_get_uuid ()</h3>
480 <pre class="programlisting">const <span class="returnvalue">char</span> *
481 gvir_config_domain_get_uuid (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
482 </div>
483 <hr>
484 <div class="refsect2">
485 <a name="gvir-config-domain-set-uuid"></a><h3>gvir_config_domain_set_uuid ()</h3>
486 <pre class="programlisting"><span class="returnvalue">void</span>
487 gvir_config_domain_set_uuid (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
488 <em class="parameter"><code>const <span class="type">char</span> *uuid</code></em>);</pre>
489 <div class="refsect3">
490 <a name="id-1.2.3.8.9.4"></a><h4>Parameters</h4>
491 <div class="informaltable"><table width="100%" border="0">
492 <colgroup>
493 <col width="150px" class="parameters_name">
494 <col class="parameters_description">
495 <col width="200px" class="parameters_annotations">
496 </colgroup>
497 <tbody>
498 <tr>
499 <td class="parameter_name"><p>domain</p></td>
500 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
501 <td class="parameter_annotations"> </td>
502 </tr>
503 <tr>
504 <td class="parameter_name"><p>uuid</p></td>
505 <td class="parameter_description"><p>. </p></td>
506 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
507 </tr>
508 </tbody>
509 </table></div>
510 </div>
511 </div>
512 <hr>
513 <div class="refsect2">
514 <a name="gvir-config-domain-get-description"></a><h3>gvir_config_domain_get_description ()</h3>
515 <pre class="programlisting">const <span class="returnvalue">char</span> *
516 gvir_config_domain_get_description (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
517 </div>
518 <hr>
519 <div class="refsect2">
520 <a name="gvir-config-domain-set-description"></a><h3>gvir_config_domain_set_description ()</h3>
521 <pre class="programlisting"><span class="returnvalue">void</span>
522 gvir_config_domain_set_description (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
523 <em class="parameter"><code>const <span class="type">char</span> *description</code></em>);</pre>
524 <div class="refsect3">
525 <a name="id-1.2.3.8.11.4"></a><h4>Parameters</h4>
526 <div class="informaltable"><table width="100%" border="0">
527 <colgroup>
528 <col width="150px" class="parameters_name">
529 <col class="parameters_description">
530 <col width="200px" class="parameters_annotations">
531 </colgroup>
532 <tbody>
533 <tr>
534 <td class="parameter_name"><p>domain</p></td>
535 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
536 <td class="parameter_annotations"> </td>
537 </tr>
538 <tr>
539 <td class="parameter_name"><p>description</p></td>
540 <td class="parameter_description"><p>. </p></td>
541 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
542 </tr>
543 </tbody>
544 </table></div>
545 </div>
546 </div>
547 <hr>
548 <div class="refsect2">
549 <a name="gvir-config-domain-get-memory"></a><h3>gvir_config_domain_get_memory ()</h3>
550 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
551 gvir_config_domain_get_memory (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
552 <div class="refsect3">
553 <a name="id-1.2.3.8.12.4"></a><h4>Parameters</h4>
554 <div class="informaltable"><table width="100%" border="0">
555 <colgroup>
556 <col width="150px" class="parameters_name">
557 <col class="parameters_description">
558 <col width="200px" class="parameters_annotations">
559 </colgroup>
560 <tbody><tr>
561 <td class="parameter_name"><p>domain</p></td>
562 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
563 <td class="parameter_annotations"> </td>
564 </tr></tbody>
565 </table></div>
566 </div>
567 <div class="refsect3">
568 <a name="id-1.2.3.8.12.5"></a><h4>Returns</h4>
569 <p> maximum amount of RAM in kilobytes (i.e. blocks of 1024 bytes).</p>
570 <p></p>
571 </div>
572 </div>
573 <hr>
574 <div class="refsect2">
575 <a name="gvir-config-domain-set-memory"></a><h3>gvir_config_domain_set_memory ()</h3>
576 <pre class="programlisting"><span class="returnvalue">void</span>
577 gvir_config_domain_set_memory (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
578 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> memory</code></em>);</pre>
579 <p>Sets the maximum amount of RAM allocated to <em class="parameter"><code>domain</code></em>
580 in kilobytes (i.e.
581 blocks of 1024 bytes).</p>
582 <div class="refsect3">
583 <a name="id-1.2.3.8.13.5"></a><h4>Parameters</h4>
584 <div class="informaltable"><table width="100%" border="0">
585 <colgroup>
586 <col width="150px" class="parameters_name">
587 <col class="parameters_description">
588 <col width="200px" class="parameters_annotations">
589 </colgroup>
590 <tbody>
591 <tr>
592 <td class="parameter_name"><p>domain</p></td>
593 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
594 <td class="parameter_annotations"> </td>
595 </tr>
596 <tr>
597 <td class="parameter_name"><p>memory</p></td>
598 <td class="parameter_description"><p>The maximum amount of RAM in kilobytes.</p></td>
599 <td class="parameter_annotations"> </td>
600 </tr>
601 </tbody>
602 </table></div>
603 </div>
604 </div>
605 <hr>
606 <div class="refsect2">
607 <a name="gvir-config-domain-get-current-memory"></a><h3>gvir_config_domain_get_current_memory ()</h3>
608 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
609 gvir_config_domain_get_current_memory (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
610 <div class="refsect3">
611 <a name="id-1.2.3.8.14.4"></a><h4>Parameters</h4>
612 <div class="informaltable"><table width="100%" border="0">
613 <colgroup>
614 <col width="150px" class="parameters_name">
615 <col class="parameters_description">
616 <col width="200px" class="parameters_annotations">
617 </colgroup>
618 <tbody><tr>
619 <td class="parameter_name"><p>domain</p></td>
620 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
621 <td class="parameter_annotations"> </td>
622 </tr></tbody>
623 </table></div>
624 </div>
625 <div class="refsect3">
626 <a name="id-1.2.3.8.14.5"></a><h4>Returns</h4>
627 <p> current amount of RAM in kilobytes (i.e. blocks of 1024 bytes).</p>
628 <p></p>
629 </div>
630 </div>
631 <hr>
632 <div class="refsect2">
633 <a name="gvir-config-domain-set-current-memory"></a><h3>gvir_config_domain_set_current_memory ()</h3>
634 <pre class="programlisting"><span class="returnvalue">void</span>
635 gvir_config_domain_set_current_memory (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
636 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> memory</code></em>);</pre>
637 <p>Sets the current amount of RAM allocated to <em class="parameter"><code>domain</code></em>
638 in kilobytes (i.e.
639 blocks of 1024 bytes). This can be set to less than the maximum domain
640 memory to allow to balloon the guest memory on the fly. Be aware that
641 libvirt will set it automatically if it's not explictly set, which means
642 you may need to set this value in addition to 'memory' if you want to
643 change the available domain memory after creation.</p>
644 <div class="refsect3">
645 <a name="id-1.2.3.8.15.5"></a><h4>Parameters</h4>
646 <div class="informaltable"><table width="100%" border="0">
647 <colgroup>
648 <col width="150px" class="parameters_name">
649 <col class="parameters_description">
650 <col width="200px" class="parameters_annotations">
651 </colgroup>
652 <tbody>
653 <tr>
654 <td class="parameter_name"><p>domain</p></td>
655 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
656 <td class="parameter_annotations"> </td>
657 </tr>
658 <tr>
659 <td class="parameter_name"><p>memory</p></td>
660 <td class="parameter_description"><p>The current amount of RAM in kilobytes.</p></td>
661 <td class="parameter_annotations"> </td>
662 </tr>
663 </tbody>
664 </table></div>
665 </div>
666 </div>
667 <hr>
668 <div class="refsect2">
669 <a name="gvir-config-domain-get-vcpus"></a><h3>gvir_config_domain_get_vcpus ()</h3>
670 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
671 gvir_config_domain_get_vcpus (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
672 </div>
673 <hr>
674 <div class="refsect2">
675 <a name="gvir-config-domain-set-vcpus"></a><h3>gvir_config_domain_set_vcpus ()</h3>
676 <pre class="programlisting"><span class="returnvalue">void</span>
677 gvir_config_domain_set_vcpus (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
678 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> vcpu_count</code></em>);</pre>
679 </div>
680 <hr>
681 <div class="refsect2">
682 <a name="gvir-config-domain-get-features"></a><h3>gvir_config_domain_get_features ()</h3>
683 <pre class="programlisting"><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="returnvalue">GStrv</span></a>
684 gvir_config_domain_get_features (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
685 <div class="refsect3">
686 <a name="id-1.2.3.8.18.4"></a><h4>Parameters</h4>
687 <div class="informaltable"><table width="100%" border="0">
688 <colgroup>
689 <col width="150px" class="parameters_name">
690 <col class="parameters_description">
691 <col width="200px" class="parameters_annotations">
692 </colgroup>
693 <tbody><tr>
694 <td class="parameter_name"><p>domain</p></td>
695 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
696 <td class="parameter_annotations"> </td>
697 </tr></tbody>
698 </table></div>
699 </div>
700 <div class="refsect3">
701 <a name="id-1.2.3.8.18.5"></a><h4>Returns</h4>
702 <p> The returned list should be freed with
703 <a href="http://library.gnome.org/devel/glib/unstable/glib-String-Utility-Functions.html#g-strfreev"><code class="function">g_strfreev()</code></a> when no longer needed. </p>
704 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
705 </div>
706 </div>
707 <hr>
708 <div class="refsect2">
709 <a name="gvir-config-domain-set-features"></a><h3>gvir_config_domain_set_features ()</h3>
710 <pre class="programlisting"><span class="returnvalue">void</span>
711 gvir_config_domain_set_features (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
712 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a> features</code></em>);</pre>
713 </div>
714 <hr>
715 <div class="refsect2">
716 <a name="gvir-config-domain-get-clock"></a><h3>gvir_config_domain_get_clock ()</h3>
717 <pre class="programlisting"><span class="returnvalue">GVirConfigDomainClock</span> *
718 gvir_config_domain_get_clock (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
719 <p>Gets the clock configuration of <em class="parameter"><code>domain</code></em>
720 </p>
721 <div class="refsect3">
722 <a name="id-1.2.3.8.20.5"></a><h4>Parameters</h4>
723 <div class="informaltable"><table width="100%" border="0">
724 <colgroup>
725 <col width="150px" class="parameters_name">
726 <col class="parameters_description">
727 <col width="200px" class="parameters_annotations">
728 </colgroup>
729 <tbody><tr>
730 <td class="parameter_name"><p>domain</p></td>
731 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
732 <td class="parameter_annotations"> </td>
733 </tr></tbody>
734 </table></div>
735 </div>
736 <div class="refsect3">
737 <a name="id-1.2.3.8.20.6"></a><h4>Returns</h4>
738 <p> A <span class="type">GVirConfigDomainClock</span>. The returned
739 object should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
740 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
741 </div>
742 </div>
743 <hr>
744 <div class="refsect2">
745 <a name="gvir-config-domain-set-clock"></a><h3>gvir_config_domain_set_clock ()</h3>
746 <pre class="programlisting"><span class="returnvalue">void</span>
747 gvir_config_domain_set_clock (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
748 <em class="parameter"><code><span class="type">GVirConfigDomainClock</span> *klock</code></em>);</pre>
749 <div class="refsect3">
750 <a name="id-1.2.3.8.21.4"></a><h4>Parameters</h4>
751 <div class="informaltable"><table width="100%" border="0">
752 <colgroup>
753 <col width="150px" class="parameters_name">
754 <col class="parameters_description">
755 <col width="200px" class="parameters_annotations">
756 </colgroup>
757 <tbody>
758 <tr>
759 <td class="parameter_name"><p>domain</p></td>
760 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
761 <td class="parameter_annotations"> </td>
762 </tr>
763 <tr>
764 <td class="parameter_name"><p>klock</p></td>
765 <td class="parameter_description"><p>. </p></td>
766 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
767 </tr>
768 </tbody>
769 </table></div>
770 </div>
771 </div>
772 <hr>
773 <div class="refsect2">
774 <a name="gvir-config-domain-get-os"></a><h3>gvir_config_domain_get_os ()</h3>
775 <pre class="programlisting"><span class="returnvalue">GVirConfigDomainOs</span> *
776 gvir_config_domain_get_os (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
777 <p>Gets the operating system configuration of <em class="parameter"><code>domain</code></em>
778 </p>
779 <div class="refsect3">
780 <a name="id-1.2.3.8.22.5"></a><h4>Parameters</h4>
781 <div class="informaltable"><table width="100%" border="0">
782 <colgroup>
783 <col width="150px" class="parameters_name">
784 <col class="parameters_description">
785 <col width="200px" class="parameters_annotations">
786 </colgroup>
787 <tbody><tr>
788 <td class="parameter_name"><p>domain</p></td>
789 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
790 <td class="parameter_annotations"> </td>
791 </tr></tbody>
792 </table></div>
793 </div>
794 <div class="refsect3">
795 <a name="id-1.2.3.8.22.6"></a><h4>Returns</h4>
796 <p> A <span class="type">GVirConfigDomainOs</span>. The returned
797 object should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
798 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
799 </div>
800 </div>
801 <hr>
802 <div class="refsect2">
803 <a name="gvir-config-domain-set-os"></a><h3>gvir_config_domain_set_os ()</h3>
804 <pre class="programlisting"><span class="returnvalue">void</span>
805 gvir_config_domain_set_os (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
806 <em class="parameter"><code><span class="type">GVirConfigDomainOs</span> *os</code></em>);</pre>
807 <div class="refsect3">
808 <a name="id-1.2.3.8.23.4"></a><h4>Parameters</h4>
809 <div class="informaltable"><table width="100%" border="0">
810 <colgroup>
811 <col width="150px" class="parameters_name">
812 <col class="parameters_description">
813 <col width="200px" class="parameters_annotations">
814 </colgroup>
815 <tbody>
816 <tr>
817 <td class="parameter_name"><p>domain</p></td>
818 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
819 <td class="parameter_annotations"> </td>
820 </tr>
821 <tr>
822 <td class="parameter_name"><p>os</p></td>
823 <td class="parameter_description"><p> the os configuration to set. </p></td>
824 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
825 </tr>
826 </tbody>
827 </table></div>
828 </div>
829 </div>
830 <hr>
831 <div class="refsect2">
832 <a name="gvir-config-domain-set-seclabel"></a><h3>gvir_config_domain_set_seclabel ()</h3>
833 <pre class="programlisting"><span class="returnvalue">void</span>
834 gvir_config_domain_set_seclabel (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
835 <em class="parameter"><code><span class="type">GVirConfigDomainSeclabel</span> *seclabel</code></em>);</pre>
836 <div class="refsect3">
837 <a name="id-1.2.3.8.24.4"></a><h4>Parameters</h4>
838 <div class="informaltable"><table width="100%" border="0">
839 <colgroup>
840 <col width="150px" class="parameters_name">
841 <col class="parameters_description">
842 <col width="200px" class="parameters_annotations">
843 </colgroup>
844 <tbody>
845 <tr>
846 <td class="parameter_name"><p>domain</p></td>
847 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
848 <td class="parameter_annotations"> </td>
849 </tr>
850 <tr>
851 <td class="parameter_name"><p>seclabel</p></td>
852 <td class="parameter_description"><p> the security label configuration to set. </p></td>
853 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
854 </tr>
855 </tbody>
856 </table></div>
857 </div>
858 </div>
859 <hr>
860 <div class="refsect2">
861 <a name="gvir-config-domain-get-title"></a><h3>gvir_config_domain_get_title ()</h3>
862 <pre class="programlisting">const <span class="returnvalue">char</span> *
863 gvir_config_domain_get_title (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
864 </div>
865 <hr>
866 <div class="refsect2">
867 <a name="gvir-config-domain-set-title"></a><h3>gvir_config_domain_set_title ()</h3>
868 <pre class="programlisting"><span class="returnvalue">void</span>
869 gvir_config_domain_set_title (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
870 <em class="parameter"><code>const <span class="type">char</span> *title</code></em>);</pre>
871 <p>Sets the title of the domain. This is an optional short textual description of the domain. Passing a NULL <em class="parameter"><code>title</code></em>
872
873 unsets the current domain title.</p>
874 <div class="refsect3">
875 <a name="id-1.2.3.8.26.5"></a><h4>Parameters</h4>
876 <div class="informaltable"><table width="100%" border="0">
877 <colgroup>
878 <col width="150px" class="parameters_name">
879 <col class="parameters_description">
880 <col width="200px" class="parameters_annotations">
881 </colgroup>
882 <tbody>
883 <tr>
884 <td class="parameter_name"><p>domain</p></td>
885 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
886 <td class="parameter_annotations"> </td>
887 </tr>
888 <tr>
889 <td class="parameter_name"><p>title</p></td>
890 <td class="parameter_description"><p> title of the domain. </p></td>
891 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
892 </tr>
893 </tbody>
894 </table></div>
895 </div>
896 </div>
897 <hr>
898 <div class="refsect2">
899 <a name="gvir-config-domain-set-devices"></a><h3>gvir_config_domain_set_devices ()</h3>
900 <pre class="programlisting"><span class="returnvalue">void</span>
901 gvir_config_domain_set_devices (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
902 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> *devices</code></em>);</pre>
903 <div class="refsect3">
904 <a name="id-1.2.3.8.27.4"></a><h4>Parameters</h4>
905 <div class="informaltable"><table width="100%" border="0">
906 <colgroup>
907 <col width="150px" class="parameters_name">
908 <col class="parameters_description">
909 <col width="200px" class="parameters_annotations">
910 </colgroup>
911 <tbody>
912 <tr>
913 <td class="parameter_name"><p>domain</p></td>
914 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
915 <td class="parameter_annotations"> </td>
916 </tr>
917 <tr>
918 <td class="parameter_name"><p>devices</p></td>
919 <td class="parameter_description"><p>. </p></td>
920 <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input. Default is transfer none."><span class="acronym">in</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGConfig.DomainDevice]</span></td>
921 </tr>
922 </tbody>
923 </table></div>
924 </div>
925 </div>
926 <hr>
927 <div class="refsect2">
928 <a name="gvir-config-domain-add-device"></a><h3>gvir_config_domain_add_device ()</h3>
929 <pre class="programlisting"><span class="returnvalue">void</span>
930 gvir_config_domain_add_device (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
931 <em class="parameter"><code><span class="type">GVirConfigDomainDevice</span> *device</code></em>);</pre>
932 </div>
933 <hr>
934 <div class="refsect2">
935 <a name="gvir-config-domain-get-devices"></a><h3>gvir_config_domain_get_devices ()</h3>
936 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
937 gvir_config_domain_get_devices (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
938 <p>Gets the list of devices attached to <em class="parameter"><code>domain</code></em>
939 . The returned list should
940 be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>, after its elements have been unreffed with
941 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>.</p>
942 <div class="refsect3">
943 <a name="id-1.2.3.8.29.5"></a><h4>Parameters</h4>
944 <div class="informaltable"><table width="100%" border="0">
945 <colgroup>
946 <col width="150px" class="parameters_name">
947 <col class="parameters_description">
948 <col width="200px" class="parameters_annotations">
949 </colgroup>
950 <tbody><tr>
951 <td class="parameter_name"><p>domain</p></td>
952 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
953 <td class="parameter_annotations"> </td>
954 </tr></tbody>
955 </table></div>
956 </div>
957 <div class="refsect3">
958 <a name="id-1.2.3.8.29.6"></a><h4>Returns</h4>
959 <p>a newly allocated <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of <span class="type">GVirConfigDomainDevice</span>. </p>
960 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGConfig.DomainDevice][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
961 </div>
962 </div>
963 <hr>
964 <div class="refsect2">
965 <a name="gvir-config-domain-set-lifecycle"></a><h3>gvir_config_domain_set_lifecycle ()</h3>
966 <pre class="programlisting"><span class="returnvalue">void</span>
967 gvir_config_domain_set_lifecycle (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
968 <em class="parameter"><code><a class="link" href="GVirConfigDomain.html#GVirConfigDomainLifecycleEvent" title="enum GVirConfigDomainLifecycleEvent"><span class="type">GVirConfigDomainLifecycleEvent</span></a> event</code></em>,
969 <em class="parameter"><code><a class="link" href="GVirConfigDomain.html#GVirConfigDomainLifecycleAction" title="enum GVirConfigDomainLifecycleAction"><span class="type">GVirConfigDomainLifecycleAction</span></a> action</code></em>);</pre>
970 </div>
971 <hr>
972 <div class="refsect2">
973 <a name="gvir-config-domain-set-custom-xml"></a><h3>gvir_config_domain_set_custom_xml ()</h3>
974 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
975 gvir_config_domain_set_custom_xml (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
976 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
977 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *ns</code></em>,
978 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *ns_uri</code></em>,
979 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
980 </div>
981 <hr>
982 <div class="refsect2">
983 <a name="gvir-config-domain-get-custom-xml"></a><h3>gvir_config_domain_get_custom_xml ()</h3>
984 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
985 gvir_config_domain_get_custom_xml (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
986 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *ns_uri</code></em>);</pre>
987 </div>
988 <hr>
989 <div class="refsect2">
990 <a name="gvir-config-domain-get-cpu"></a><h3>gvir_config_domain_get_cpu ()</h3>
991 <pre class="programlisting"><span class="returnvalue">GVirConfigDomainCpu</span> *
992 gvir_config_domain_get_cpu (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
993 <p>Gets the CPU configuration of <em class="parameter"><code>domain</code></em>
994 </p>
995 <div class="refsect3">
996 <a name="id-1.2.3.8.33.5"></a><h4>Parameters</h4>
997 <div class="informaltable"><table width="100%" border="0">
998 <colgroup>
999 <col width="150px" class="parameters_name">
1000 <col class="parameters_description">
1001 <col width="200px" class="parameters_annotations">
1002 </colgroup>
1003 <tbody><tr>
1004 <td class="parameter_name"><p>domain</p></td>
1005 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
1006 <td class="parameter_annotations"> </td>
1007 </tr></tbody>
1008 </table></div>
1009 </div>
1010 <div class="refsect3">
1011 <a name="id-1.2.3.8.33.6"></a><h4>Returns</h4>
1012 <p> A <span class="type">GVirConfigDomainCpu</span>. The returned object
1013 should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
1014 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1015 </div>
1016 </div>
1017 <hr>
1018 <div class="refsect2">
1019 <a name="gvir-config-domain-set-cpu"></a><h3>gvir_config_domain_set_cpu ()</h3>
1020 <pre class="programlisting"><span class="returnvalue">void</span>
1021 gvir_config_domain_set_cpu (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
1022 <em class="parameter"><code><span class="type">GVirConfigDomainCpu</span> *cpu</code></em>);</pre>
1023 <div class="refsect3">
1024 <a name="id-1.2.3.8.34.4"></a><h4>Parameters</h4>
1025 <div class="informaltable"><table width="100%" border="0">
1026 <colgroup>
1027 <col width="150px" class="parameters_name">
1028 <col class="parameters_description">
1029 <col width="200px" class="parameters_annotations">
1030 </colgroup>
1031 <tbody>
1032 <tr>
1033 <td class="parameter_name"><p>domain</p></td>
1034 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
1035 <td class="parameter_annotations"> </td>
1036 </tr>
1037 <tr>
1038 <td class="parameter_name"><p>cpu</p></td>
1039 <td class="parameter_description"><p>. </p></td>
1040 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1041 </tr>
1042 </tbody>
1043 </table></div>
1044 </div>
1045 </div>
1046 <hr>
1047 <div class="refsect2">
1048 <a name="gvir-config-domain-set-power-management"></a><h3>gvir_config_domain_set_power_management ()</h3>
1049 <pre class="programlisting"><span class="returnvalue">void</span>
1050 gvir_config_domain_set_power_management
1051 (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
1052 <em class="parameter"><code><span class="type">GVirConfigDomainPowerManagement</span> *pm</code></em>);</pre>
1053 <div class="refsect3">
1054 <a name="id-1.2.3.8.35.4"></a><h4>Parameters</h4>
1055 <div class="informaltable"><table width="100%" border="0">
1056 <colgroup>
1057 <col width="150px" class="parameters_name">
1058 <col class="parameters_description">
1059 <col width="200px" class="parameters_annotations">
1060 </colgroup>
1061 <tbody>
1062 <tr>
1063 <td class="parameter_name"><p>domain</p></td>
1064 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a></p></td>
1065 <td class="parameter_annotations"> </td>
1066 </tr>
1067 <tr>
1068 <td class="parameter_name"><p>pm</p></td>
1069 <td class="parameter_description"><p> a <span class="type">GVirPowerManagement</span> instance. </p></td>
1070 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1071 </tr>
1072 </tbody>
1073 </table></div>
1074 </div>
1075 </div>
1076 </div>
1077 <div class="refsect1">
1078 <a name="GVirConfigDomain.other_details"></a><h2>Types and Values</h2>
1331079 <div class="refsect2">
1341080 <a name="GVirConfigDomain-struct"></a><h3>struct GVirConfigDomain</h3>
1351081 <pre class="programlisting">struct GVirConfigDomain;</pre>
1471093 <hr>
1481094 <div class="refsect2">
1491095 <a name="GVirConfigDomainVirtType"></a><h3>enum GVirConfigDomainVirtType</h3>
150 <pre class="programlisting">typedef enum {
151 GVIR_CONFIG_DOMAIN_VIRT_QEMU,
152 GVIR_CONFIG_DOMAIN_VIRT_KQEMU,
153 GVIR_CONFIG_DOMAIN_VIRT_KVM,
154 GVIR_CONFIG_DOMAIN_VIRT_XEN,
155 GVIR_CONFIG_DOMAIN_VIRT_LXC,
156 GVIR_CONFIG_DOMAIN_VIRT_UML,
157 GVIR_CONFIG_DOMAIN_VIRT_OPENVZ,
158 GVIR_CONFIG_DOMAIN_VIRT_VSERVER,
159 GVIR_CONFIG_DOMAIN_VIRT_LDOM,
160 GVIR_CONFIG_DOMAIN_VIRT_TEST,
161 GVIR_CONFIG_DOMAIN_VIRT_VMWARE,
162 GVIR_CONFIG_DOMAIN_VIRT_HYPERV,
163 GVIR_CONFIG_DOMAIN_VIRT_VBOX,
164 GVIR_CONFIG_DOMAIN_VIRT_ONE,
165 GVIR_CONFIG_DOMAIN_VIRT_PHYP
166 } GVirConfigDomainVirtType;
167 </pre>
168 <div class="variablelist"><table border="0" class="variablelist">
169 <colgroup>
170 <col align="left" valign="top">
171 <col>
172 </colgroup>
173 <tbody>
174 <tr>
175 <td><p><a name="GVIR-CONFIG-DOMAIN-VIRT-QEMU:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_VIRT_QEMU</code></span></p></td>
176 <td></td>
177 </tr>
178 <tr>
179 <td><p><a name="GVIR-CONFIG-DOMAIN-VIRT-KQEMU:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_VIRT_KQEMU</code></span></p></td>
180 <td></td>
181 </tr>
182 <tr>
183 <td><p><a name="GVIR-CONFIG-DOMAIN-VIRT-KVM:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_VIRT_KVM</code></span></p></td>
184 <td></td>
185 </tr>
186 <tr>
187 <td><p><a name="GVIR-CONFIG-DOMAIN-VIRT-XEN:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_VIRT_XEN</code></span></p></td>
188 <td></td>
189 </tr>
190 <tr>
191 <td><p><a name="GVIR-CONFIG-DOMAIN-VIRT-LXC:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_VIRT_LXC</code></span></p></td>
192 <td></td>
193 </tr>
194 <tr>
195 <td><p><a name="GVIR-CONFIG-DOMAIN-VIRT-UML:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_VIRT_UML</code></span></p></td>
196 <td></td>
197 </tr>
198 <tr>
199 <td><p><a name="GVIR-CONFIG-DOMAIN-VIRT-OPENVZ:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_VIRT_OPENVZ</code></span></p></td>
200 <td></td>
201 </tr>
202 <tr>
203 <td><p><a name="GVIR-CONFIG-DOMAIN-VIRT-VSERVER:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_VIRT_VSERVER</code></span></p></td>
204 <td></td>
205 </tr>
206 <tr>
207 <td><p><a name="GVIR-CONFIG-DOMAIN-VIRT-LDOM:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_VIRT_LDOM</code></span></p></td>
208 <td></td>
209 </tr>
210 <tr>
211 <td><p><a name="GVIR-CONFIG-DOMAIN-VIRT-TEST:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_VIRT_TEST</code></span></p></td>
212 <td></td>
213 </tr>
214 <tr>
215 <td><p><a name="GVIR-CONFIG-DOMAIN-VIRT-VMWARE:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_VIRT_VMWARE</code></span></p></td>
216 <td></td>
217 </tr>
218 <tr>
219 <td><p><a name="GVIR-CONFIG-DOMAIN-VIRT-HYPERV:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_VIRT_HYPERV</code></span></p></td>
220 <td></td>
221 </tr>
222 <tr>
223 <td><p><a name="GVIR-CONFIG-DOMAIN-VIRT-VBOX:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_VIRT_VBOX</code></span></p></td>
224 <td></td>
225 </tr>
226 <tr>
227 <td><p><a name="GVIR-CONFIG-DOMAIN-VIRT-ONE:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_VIRT_ONE</code></span></p></td>
228 <td></td>
229 </tr>
230 <tr>
231 <td><p><a name="GVIR-CONFIG-DOMAIN-VIRT-PHYP:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_VIRT_PHYP</code></span></p></td>
232 <td></td>
233 </tr>
234 </tbody>
235 </table></div>
1096 <div class="refsect3">
1097 <a name="id-1.2.3.9.4.3"></a><h4>Members</h4>
1098 <div class="informaltable"><table width="100%" border="0">
1099 <colgroup>
1100 <col width="300px" class="enum_members_name">
1101 <col class="enum_members_description">
1102 <col width="200px" class="enum_members_annotations">
1103 </colgroup>
1104 <tbody>
1105 <tr>
1106 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-VIRT-QEMU:CAPS"></a>GVIR_CONFIG_DOMAIN_VIRT_QEMU</p></td>
1107 <td> </td>
1108 <td> </td>
1109 </tr>
1110 <tr>
1111 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-VIRT-KQEMU:CAPS"></a>GVIR_CONFIG_DOMAIN_VIRT_KQEMU</p></td>
1112 <td> </td>
1113 <td> </td>
1114 </tr>
1115 <tr>
1116 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-VIRT-KVM:CAPS"></a>GVIR_CONFIG_DOMAIN_VIRT_KVM</p></td>
1117 <td> </td>
1118 <td> </td>
1119 </tr>
1120 <tr>
1121 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-VIRT-XEN:CAPS"></a>GVIR_CONFIG_DOMAIN_VIRT_XEN</p></td>
1122 <td> </td>
1123 <td> </td>
1124 </tr>
1125 <tr>
1126 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-VIRT-LXC:CAPS"></a>GVIR_CONFIG_DOMAIN_VIRT_LXC</p></td>
1127 <td> </td>
1128 <td> </td>
1129 </tr>
1130 <tr>
1131 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-VIRT-UML:CAPS"></a>GVIR_CONFIG_DOMAIN_VIRT_UML</p></td>
1132 <td> </td>
1133 <td> </td>
1134 </tr>
1135 <tr>
1136 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-VIRT-OPENVZ:CAPS"></a>GVIR_CONFIG_DOMAIN_VIRT_OPENVZ</p></td>
1137 <td> </td>
1138 <td> </td>
1139 </tr>
1140 <tr>
1141 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-VIRT-VSERVER:CAPS"></a>GVIR_CONFIG_DOMAIN_VIRT_VSERVER</p></td>
1142 <td> </td>
1143 <td> </td>
1144 </tr>
1145 <tr>
1146 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-VIRT-LDOM:CAPS"></a>GVIR_CONFIG_DOMAIN_VIRT_LDOM</p></td>
1147 <td> </td>
1148 <td> </td>
1149 </tr>
1150 <tr>
1151 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-VIRT-TEST:CAPS"></a>GVIR_CONFIG_DOMAIN_VIRT_TEST</p></td>
1152 <td> </td>
1153 <td> </td>
1154 </tr>
1155 <tr>
1156 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-VIRT-VMWARE:CAPS"></a>GVIR_CONFIG_DOMAIN_VIRT_VMWARE</p></td>
1157 <td> </td>
1158 <td> </td>
1159 </tr>
1160 <tr>
1161 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-VIRT-HYPERV:CAPS"></a>GVIR_CONFIG_DOMAIN_VIRT_HYPERV</p></td>
1162 <td> </td>
1163 <td> </td>
1164 </tr>
1165 <tr>
1166 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-VIRT-VBOX:CAPS"></a>GVIR_CONFIG_DOMAIN_VIRT_VBOX</p></td>
1167 <td> </td>
1168 <td> </td>
1169 </tr>
1170 <tr>
1171 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-VIRT-ONE:CAPS"></a>GVIR_CONFIG_DOMAIN_VIRT_ONE</p></td>
1172 <td> </td>
1173 <td> </td>
1174 </tr>
1175 <tr>
1176 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-VIRT-PHYP:CAPS"></a>GVIR_CONFIG_DOMAIN_VIRT_PHYP</p></td>
1177 <td> </td>
1178 <td> </td>
1179 </tr>
1180 </tbody>
1181 </table></div>
1182 </div>
2361183 </div>
2371184 <hr>
2381185 <div class="refsect2">
2391186 <a name="GVirConfigDomainLifecycleEvent"></a><h3>enum GVirConfigDomainLifecycleEvent</h3>
240 <pre class="programlisting">typedef enum {
241 GVIR_CONFIG_DOMAIN_LIFECYCLE_ON_POWEROFF, /*&lt; nick=on_poweroff &gt;*/
242 GVIR_CONFIG_DOMAIN_LIFECYCLE_ON_REBOOT, /*&lt; nick=on_reboot &gt;*/
243 GVIR_CONFIG_DOMAIN_LIFECYCLE_ON_CRASH /*&lt; nick=on_crash &gt;*/
244 } GVirConfigDomainLifecycleEvent;
245 </pre>
246 <div class="variablelist"><table border="0" class="variablelist">
247 <colgroup>
248 <col align="left" valign="top">
249 <col>
250 </colgroup>
251 <tbody>
252 <tr>
253 <td><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-ON-POWEROFF:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_LIFECYCLE_ON_POWEROFF</code></span></p></td>
254 <td></td>
255 </tr>
256 <tr>
257 <td><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-ON-REBOOT:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_LIFECYCLE_ON_REBOOT</code></span></p></td>
258 <td></td>
259 </tr>
260 <tr>
261 <td><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-ON-CRASH:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_LIFECYCLE_ON_CRASH</code></span></p></td>
262 <td></td>
263 </tr>
264 </tbody>
265 </table></div>
1187 <div class="refsect3">
1188 <a name="id-1.2.3.9.5.3"></a><h4>Members</h4>
1189 <div class="informaltable"><table width="100%" border="0">
1190 <colgroup>
1191 <col width="300px" class="enum_members_name">
1192 <col class="enum_members_description">
1193 <col width="200px" class="enum_members_annotations">
1194 </colgroup>
1195 <tbody>
1196 <tr>
1197 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-ON-POWEROFF:CAPS"></a>GVIR_CONFIG_DOMAIN_LIFECYCLE_ON_POWEROFF</p></td>
1198 <td> </td>
1199 <td> </td>
1200 </tr>
1201 <tr>
1202 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-ON-REBOOT:CAPS"></a>GVIR_CONFIG_DOMAIN_LIFECYCLE_ON_REBOOT</p></td>
1203 <td> </td>
1204 <td> </td>
1205 </tr>
1206 <tr>
1207 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-ON-CRASH:CAPS"></a>GVIR_CONFIG_DOMAIN_LIFECYCLE_ON_CRASH</p></td>
1208 <td> </td>
1209 <td> </td>
1210 </tr>
1211 </tbody>
1212 </table></div>
1213 </div>
2661214 </div>
2671215 <hr>
2681216 <div class="refsect2">
2691217 <a name="GVirConfigDomainLifecycleAction"></a><h3>enum GVirConfigDomainLifecycleAction</h3>
270 <pre class="programlisting">typedef enum {
271 GVIR_CONFIG_DOMAIN_LIFECYCLE_DESTROY,
272 GVIR_CONFIG_DOMAIN_LIFECYCLE_RESTART,
273 GVIR_CONFIG_DOMAIN_LIFECYCLE_PRESERVE,
274 GVIR_CONFIG_DOMAIN_LIFECYCLE_RENAME_RESTART,
275 GVIR_CONFIG_DOMAIN_LIFECYCLE_COREDUMP_DESTROY,
276 GVIR_CONFIG_DOMAIN_LIFECYCLE_COREDUMP_RESTART
277 } GVirConfigDomainLifecycleAction;
278 </pre>
279 <div class="variablelist"><table border="0" class="variablelist">
280 <colgroup>
281 <col align="left" valign="top">
282 <col>
283 </colgroup>
284 <tbody>
285 <tr>
286 <td><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-DESTROY:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_LIFECYCLE_DESTROY</code></span></p></td>
287 <td></td>
288 </tr>
289 <tr>
290 <td><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-RESTART:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_LIFECYCLE_RESTART</code></span></p></td>
291 <td></td>
292 </tr>
293 <tr>
294 <td><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-PRESERVE:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_LIFECYCLE_PRESERVE</code></span></p></td>
295 <td></td>
296 </tr>
297 <tr>
298 <td><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-RENAME-RESTART:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_LIFECYCLE_RENAME_RESTART</code></span></p></td>
299 <td></td>
300 </tr>
301 <tr>
302 <td><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-COREDUMP-DESTROY:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_LIFECYCLE_COREDUMP_DESTROY</code></span></p></td>
303 <td></td>
304 </tr>
305 <tr>
306 <td><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-COREDUMP-RESTART:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_LIFECYCLE_COREDUMP_RESTART</code></span></p></td>
307 <td></td>
308 </tr>
309 </tbody>
310 </table></div>
311 </div>
312 <hr>
313 <div class="refsect2">
314 <a name="gvir-config-domain-new-from-xml"></a><h3>gvir_config_domain_new_from_xml ()</h3>
315 <pre class="programlisting"><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="returnvalue">GVirConfigDomain</span></a> * gvir_config_domain_new_from_xml (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
316 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
317 </div>
318 <hr>
319 <div class="refsect2">
320 <a name="gvir-config-domain-new"></a><h3>gvir_config_domain_new ()</h3>
321 <pre class="programlisting"><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="returnvalue">GVirConfigDomain</span></a> * gvir_config_domain_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
322 </div>
323 <hr>
324 <div class="refsect2">
325 <a name="gvir-config-domain-get-virt-type"></a><h3>gvir_config_domain_get_virt_type ()</h3>
326 <pre class="programlisting"><a class="link" href="GVirConfigDomain.html#GVirConfigDomainVirtType" title="enum GVirConfigDomainVirtType"><span class="returnvalue">GVirConfigDomainVirtType</span></a> gvir_config_domain_get_virt_type
327 (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
328 </div>
329 <hr>
330 <div class="refsect2">
331 <a name="gvir-config-domain-set-virt-type"></a><h3>gvir_config_domain_set_virt_type ()</h3>
332 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_set_virt_type (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
333 <em class="parameter"><code><a class="link" href="GVirConfigDomain.html#GVirConfigDomainVirtType" title="enum GVirConfigDomainVirtType"><span class="type">GVirConfigDomainVirtType</span></a> type</code></em>);</pre>
334 </div>
335 <hr>
336 <div class="refsect2">
337 <a name="gvir-config-domain-get-name"></a><h3>gvir_config_domain_get_name ()</h3>
338 <pre class="programlisting">const <span class="returnvalue">char</span> * gvir_config_domain_get_name (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
339 </div>
340 <hr>
341 <div class="refsect2">
342 <a name="gvir-config-domain-set-name"></a><h3>gvir_config_domain_set_name ()</h3>
343 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_set_name (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
344 <em class="parameter"><code>const <span class="type">char</span> *name</code></em>);</pre>
345 <div class="variablelist"><table border="0" class="variablelist">
346 <colgroup>
347 <col align="left" valign="top">
348 <col>
349 </colgroup>
350 <tbody>
351 <tr>
352 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
353 <td>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>
354 </td>
355 </tr>
356 <tr>
357 <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
358 <td>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
359 </td>
360 </tr>
361 </tbody>
362 </table></div>
363 </div>
364 <hr>
365 <div class="refsect2">
366 <a name="gvir-config-domain-get-description"></a><h3>gvir_config_domain_get_description ()</h3>
367 <pre class="programlisting">const <span class="returnvalue">char</span> * gvir_config_domain_get_description (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
368 </div>
369 <hr>
370 <div class="refsect2">
371 <a name="gvir-config-domain-set-description"></a><h3>gvir_config_domain_set_description ()</h3>
372 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_set_description (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
373 <em class="parameter"><code>const <span class="type">char</span> *description</code></em>);</pre>
374 <div class="variablelist"><table border="0" class="variablelist">
375 <colgroup>
376 <col align="left" valign="top">
377 <col>
378 </colgroup>
379 <tbody>
380 <tr>
381 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
382 <td>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>
383 </td>
384 </tr>
385 <tr>
386 <td><p><span class="term"><em class="parameter"><code>description</code></em> :</span></p></td>
387 <td>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
388 </td>
389 </tr>
390 </tbody>
391 </table></div>
392 </div>
393 <hr>
394 <div class="refsect2">
395 <a name="gvir-config-domain-get-memory"></a><h3>gvir_config_domain_get_memory ()</h3>
396 <pre class="programlisting"><span class="returnvalue">guint64</span> gvir_config_domain_get_memory (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
397 <div class="variablelist"><table border="0" class="variablelist">
398 <colgroup>
399 <col align="left" valign="top">
400 <col>
401 </colgroup>
402 <tbody>
403 <tr>
404 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
405 <td>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>
406 </td>
407 </tr>
408 <tr>
409 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
410 <td>maximum amount of RAM in kilobytes (i.e. blocks of 1024 bytes).</td>
411 </tr>
412 </tbody>
413 </table></div>
414 </div>
415 <hr>
416 <div class="refsect2">
417 <a name="gvir-config-domain-set-memory"></a><h3>gvir_config_domain_set_memory ()</h3>
418 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_set_memory (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
419 <em class="parameter"><code><span class="type">guint64</span> memory</code></em>);</pre>
420 <p>
421 Sets the maximum amount of RAM allocated to <em class="parameter"><code>domain</code></em> in kilobytes (i.e.
422 blocks of 1024 bytes).
423 </p>
424 <div class="variablelist"><table border="0" class="variablelist">
425 <colgroup>
426 <col align="left" valign="top">
427 <col>
428 </colgroup>
429 <tbody>
430 <tr>
431 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
432 <td>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>
433 </td>
434 </tr>
435 <tr>
436 <td><p><span class="term"><em class="parameter"><code>memory</code></em> :</span></p></td>
437 <td>The maximum amount of RAM in kilobytes.</td>
438 </tr>
439 </tbody>
440 </table></div>
441 </div>
442 <hr>
443 <div class="refsect2">
444 <a name="gvir-config-domain-get-current-memory"></a><h3>gvir_config_domain_get_current_memory ()</h3>
445 <pre class="programlisting"><span class="returnvalue">guint64</span> gvir_config_domain_get_current_memory
446 (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
447 <div class="variablelist"><table border="0" class="variablelist">
448 <colgroup>
449 <col align="left" valign="top">
450 <col>
451 </colgroup>
452 <tbody>
453 <tr>
454 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
455 <td>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>
456 </td>
457 </tr>
458 <tr>
459 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
460 <td>current amount of RAM in kilobytes (i.e. blocks of 1024 bytes).</td>
461 </tr>
462 </tbody>
463 </table></div>
464 </div>
465 <hr>
466 <div class="refsect2">
467 <a name="gvir-config-domain-set-current-memory"></a><h3>gvir_config_domain_set_current_memory ()</h3>
468 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_set_current_memory
469 (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
470 <em class="parameter"><code><span class="type">guint64</span> memory</code></em>);</pre>
471 <p>
472 Sets the current amount of RAM allocated to <em class="parameter"><code>domain</code></em> in kilobytes (i.e.
473 blocks of 1024 bytes). This can be set to less than the maximum domain
474 memory to allow to balloon the guest memory on the fly. Be aware that
475 libvirt will set it automatically if it's not explictly set, which means
476 you may need to set this value in addition to 'memory' if you want to
477 change the available domain memory after creation.
478 </p>
479 <div class="variablelist"><table border="0" class="variablelist">
480 <colgroup>
481 <col align="left" valign="top">
482 <col>
483 </colgroup>
484 <tbody>
485 <tr>
486 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
487 <td>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>
488 </td>
489 </tr>
490 <tr>
491 <td><p><span class="term"><em class="parameter"><code>memory</code></em> :</span></p></td>
492 <td>The current amount of RAM in kilobytes.</td>
493 </tr>
494 </tbody>
495 </table></div>
496 </div>
497 <hr>
498 <div class="refsect2">
499 <a name="gvir-config-domain-get-vcpus"></a><h3>gvir_config_domain_get_vcpus ()</h3>
500 <pre class="programlisting"><span class="returnvalue">guint64</span> gvir_config_domain_get_vcpus (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
501 </div>
502 <hr>
503 <div class="refsect2">
504 <a name="gvir-config-domain-set-vcpus"></a><h3>gvir_config_domain_set_vcpus ()</h3>
505 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_set_vcpus (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
506 <em class="parameter"><code><span class="type">guint64</span> vcpu_count</code></em>);</pre>
507 </div>
508 <hr>
509 <div class="refsect2">
510 <a name="gvir-config-domain-get-features"></a><h3>gvir_config_domain_get_features ()</h3>
511 <pre class="programlisting"><span class="returnvalue">GStrv</span> gvir_config_domain_get_features (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
512 <div class="variablelist"><table border="0" class="variablelist">
513 <colgroup>
514 <col align="left" valign="top">
515 <col>
516 </colgroup>
517 <tbody>
518 <tr>
519 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
520 <td>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>
521 </td>
522 </tr>
523 <tr>
524 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
525 <td>The returned list should be freed with
526 <code class="function">g_strfreev()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
527 </td>
528 </tr>
529 </tbody>
530 </table></div>
531 </div>
532 <hr>
533 <div class="refsect2">
534 <a name="gvir-config-domain-set-features"></a><h3>gvir_config_domain_set_features ()</h3>
535 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_set_features (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
536 <em class="parameter"><code>const <span class="type">GStrv</span> features</code></em>);</pre>
537 </div>
538 <hr>
539 <div class="refsect2">
540 <a name="gvir-config-domain-set-clock"></a><h3>gvir_config_domain_set_clock ()</h3>
541 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_set_clock (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
542 <em class="parameter"><code><span class="type">GVirConfigDomainClock</span> *klock</code></em>);</pre>
543 <div class="variablelist"><table border="0" class="variablelist">
544 <colgroup>
545 <col align="left" valign="top">
546 <col>
547 </colgroup>
548 <tbody>
549 <tr>
550 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
551 <td>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>
552 </td>
553 </tr>
554 <tr>
555 <td><p><span class="term"><em class="parameter"><code>klock</code></em> :</span></p></td>
556 <td>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
557 </td>
558 </tr>
559 </tbody>
560 </table></div>
561 </div>
562 <hr>
563 <div class="refsect2">
564 <a name="gvir-config-domain-get-os"></a><h3>gvir_config_domain_get_os ()</h3>
565 <pre class="programlisting"><span class="returnvalue">GVirConfigDomainOs</span> * gvir_config_domain_get_os (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
566 <p>
567 Gets the operating system configuration of <em class="parameter"><code>domain</code></em>
568 </p>
569 <div class="variablelist"><table border="0" class="variablelist">
570 <colgroup>
571 <col align="left" valign="top">
572 <col>
573 </colgroup>
574 <tbody>
575 <tr>
576 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
577 <td>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>
578 </td>
579 </tr>
580 <tr>
581 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
582 <td>A <span class="type">GVirConfigDomainOs</span>. The returned
583 object should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
584 </td>
585 </tr>
586 </tbody>
587 </table></div>
588 </div>
589 <hr>
590 <div class="refsect2">
591 <a name="gvir-config-domain-set-os"></a><h3>gvir_config_domain_set_os ()</h3>
592 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_set_os (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
593 <em class="parameter"><code><span class="type">GVirConfigDomainOs</span> *os</code></em>);</pre>
594 <div class="variablelist"><table border="0" class="variablelist">
595 <colgroup>
596 <col align="left" valign="top">
597 <col>
598 </colgroup>
599 <tbody>
600 <tr>
601 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
602 <td>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>
603 </td>
604 </tr>
605 <tr>
606 <td><p><span class="term"><em class="parameter"><code>os</code></em> :</span></p></td>
607 <td>the os configuration to set. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
608 </td>
609 </tr>
610 </tbody>
611 </table></div>
612 </div>
613 <hr>
614 <div class="refsect2">
615 <a name="gvir-config-domain-set-seclabel"></a><h3>gvir_config_domain_set_seclabel ()</h3>
616 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_set_seclabel (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
617 <em class="parameter"><code><span class="type">GVirConfigDomainSeclabel</span> *seclabel</code></em>);</pre>
618 <div class="variablelist"><table border="0" class="variablelist">
619 <colgroup>
620 <col align="left" valign="top">
621 <col>
622 </colgroup>
623 <tbody>
624 <tr>
625 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
626 <td>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>
627 </td>
628 </tr>
629 <tr>
630 <td><p><span class="term"><em class="parameter"><code>seclabel</code></em> :</span></p></td>
631 <td>the security label configuration to set. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
632 </td>
633 </tr>
634 </tbody>
635 </table></div>
636 </div>
637 <hr>
638 <div class="refsect2">
639 <a name="gvir-config-domain-get-title"></a><h3>gvir_config_domain_get_title ()</h3>
640 <pre class="programlisting">const <span class="returnvalue">char</span> * gvir_config_domain_get_title (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
641 </div>
642 <hr>
643 <div class="refsect2">
644 <a name="gvir-config-domain-set-title"></a><h3>gvir_config_domain_set_title ()</h3>
645 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_set_title (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
646 <em class="parameter"><code>const <span class="type">char</span> *title</code></em>);</pre>
647 <p>
648 Sets the title of the domain. This is an optional short textual description of the domain. Passing a NULL <em class="parameter"><code>title</code></em>
649 unsets the current domain title.
650 </p>
651 <div class="variablelist"><table border="0" class="variablelist">
652 <colgroup>
653 <col align="left" valign="top">
654 <col>
655 </colgroup>
656 <tbody>
657 <tr>
658 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
659 <td>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>
660 </td>
661 </tr>
662 <tr>
663 <td><p><span class="term"><em class="parameter"><code>title</code></em> :</span></p></td>
664 <td>title of the domain. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
665 </td>
666 </tr>
667 </tbody>
668 </table></div>
669 </div>
670 <hr>
671 <div class="refsect2">
672 <a name="gvir-config-domain-set-devices"></a><h3>gvir_config_domain_set_devices ()</h3>
673 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_set_devices (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
674 <em class="parameter"><code><span class="type">GList</span> *devices</code></em>);</pre>
675 <div class="variablelist"><table border="0" class="variablelist">
676 <colgroup>
677 <col align="left" valign="top">
678 <col>
679 </colgroup>
680 <tbody>
681 <tr>
682 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
683 <td>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>
684 </td>
685 </tr>
686 <tr>
687 <td><p><span class="term"><em class="parameter"><code>devices</code></em> :</span></p></td>
688 <td>. <span class="annotation">[<acronym title="Parameter for input. Default is transfer none."><span class="acronym">in</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGConfig.DomainDevice]</span>
689 </td>
690 </tr>
691 </tbody>
692 </table></div>
693 </div>
694 <hr>
695 <div class="refsect2">
696 <a name="gvir-config-domain-add-device"></a><h3>gvir_config_domain_add_device ()</h3>
697 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_add_device (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
698 <em class="parameter"><code><span class="type">GVirConfigDomainDevice</span> *device</code></em>);</pre>
699 </div>
700 <hr>
701 <div class="refsect2">
702 <a name="gvir-config-domain-get-devices"></a><h3>gvir_config_domain_get_devices ()</h3>
703 <pre class="programlisting"><span class="returnvalue">GList</span> * gvir_config_domain_get_devices (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
704 <p>
705 Gets the list of devices attached to <em class="parameter"><code>domain</code></em>. The returned list should
706 be freed with <code class="function">g_list_free()</code>, after its elements have been unreffed with
707 <code class="function">g_object_unref()</code>.
708 </p>
709 <div class="variablelist"><table border="0" class="variablelist">
710 <colgroup>
711 <col align="left" valign="top">
712 <col>
713 </colgroup>
714 <tbody>
715 <tr>
716 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
717 <td>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>
718 </td>
719 </tr>
720 <tr>
721 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
722 <td>a newly allocated <span class="type">GList</span> of <span class="type">GVirConfigDomainDevice</span>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGConfig.DomainDevice][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
723 </td>
724 </tr>
725 </tbody>
726 </table></div>
727 </div>
728 <hr>
729 <div class="refsect2">
730 <a name="gvir-config-domain-set-lifecycle"></a><h3>gvir_config_domain_set_lifecycle ()</h3>
731 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_set_lifecycle (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
732 <em class="parameter"><code><a class="link" href="GVirConfigDomain.html#GVirConfigDomainLifecycleEvent" title="enum GVirConfigDomainLifecycleEvent"><span class="type">GVirConfigDomainLifecycleEvent</span></a> event</code></em>,
733 <em class="parameter"><code><a class="link" href="GVirConfigDomain.html#GVirConfigDomainLifecycleAction" title="enum GVirConfigDomainLifecycleAction"><span class="type">GVirConfigDomainLifecycleAction</span></a> action</code></em>);</pre>
734 </div>
735 <hr>
736 <div class="refsect2">
737 <a name="gvir-config-domain-set-custom-xml"></a><h3>gvir_config_domain_set_custom_xml ()</h3>
738 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_config_domain_set_custom_xml (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
739 <em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
740 <em class="parameter"><code>const <span class="type">gchar</span> *ns</code></em>,
741 <em class="parameter"><code>const <span class="type">gchar</span> *ns_uri</code></em>,
742 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
743 </div>
744 <hr>
745 <div class="refsect2">
746 <a name="gvir-config-domain-get-custom-xml"></a><h3>gvir_config_domain_get_custom_xml ()</h3>
747 <pre class="programlisting"><span class="returnvalue">gchar</span> * gvir_config_domain_get_custom_xml (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
748 <em class="parameter"><code>const <span class="type">gchar</span> *ns_uri</code></em>);</pre>
749 </div>
750 <hr>
751 <div class="refsect2">
752 <a name="gvir-config-domain-get-cpu"></a><h3>gvir_config_domain_get_cpu ()</h3>
753 <pre class="programlisting"><span class="returnvalue">GVirConfigDomainCpu</span> * gvir_config_domain_get_cpu (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>);</pre>
754 <p>
755 Gets the CPU configuration of <em class="parameter"><code>domain</code></em>
756 </p>
757 <div class="variablelist"><table border="0" class="variablelist">
758 <colgroup>
759 <col align="left" valign="top">
760 <col>
761 </colgroup>
762 <tbody>
763 <tr>
764 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
765 <td>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>
766 </td>
767 </tr>
768 <tr>
769 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
770 <td>A <span class="type">GVirConfigDomainCpu</span>. The returned object
771 should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
772 </td>
773 </tr>
774 </tbody>
775 </table></div>
776 </div>
777 <hr>
778 <div class="refsect2">
779 <a name="gvir-config-domain-set-cpu"></a><h3>gvir_config_domain_set_cpu ()</h3>
780 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_set_cpu (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
781 <em class="parameter"><code><span class="type">GVirConfigDomainCpu</span> *cpu</code></em>);</pre>
782 <div class="variablelist"><table border="0" class="variablelist">
783 <colgroup>
784 <col align="left" valign="top">
785 <col>
786 </colgroup>
787 <tbody>
788 <tr>
789 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
790 <td>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>
791 </td>
792 </tr>
793 <tr>
794 <td><p><span class="term"><em class="parameter"><code>cpu</code></em> :</span></p></td>
795 <td>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
796 </td>
797 </tr>
798 </tbody>
799 </table></div>
800 </div>
801 <hr>
802 <div class="refsect2">
803 <a name="gvir-config-domain-set-power-management"></a><h3>gvir_config_domain_set_power_management ()</h3>
804 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_set_power_management
805 (<em class="parameter"><code><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a> *domain</code></em>,
806 <em class="parameter"><code><span class="type">GVirConfigDomainPowerManagement</span> *pm</code></em>);</pre>
807 <div class="variablelist"><table border="0" class="variablelist">
808 <colgroup>
809 <col align="left" valign="top">
810 <col>
811 </colgroup>
812 <tbody>
813 <tr>
814 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
815 <td>a <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>
816 </td>
817 </tr>
818 <tr>
819 <td><p><span class="term"><em class="parameter"><code>pm</code></em> :</span></p></td>
820 <td>a <span class="type">GVirPowerManagement</span> instance. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
821 </td>
822 </tr>
823 </tbody>
824 </table></div>
1218 <div class="refsect3">
1219 <a name="id-1.2.3.9.6.3"></a><h4>Members</h4>
1220 <div class="informaltable"><table width="100%" border="0">
1221 <colgroup>
1222 <col width="300px" class="enum_members_name">
1223 <col class="enum_members_description">
1224 <col width="200px" class="enum_members_annotations">
1225 </colgroup>
1226 <tbody>
1227 <tr>
1228 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-DESTROY:CAPS"></a>GVIR_CONFIG_DOMAIN_LIFECYCLE_DESTROY</p></td>
1229 <td> </td>
1230 <td> </td>
1231 </tr>
1232 <tr>
1233 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-RESTART:CAPS"></a>GVIR_CONFIG_DOMAIN_LIFECYCLE_RESTART</p></td>
1234 <td> </td>
1235 <td> </td>
1236 </tr>
1237 <tr>
1238 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-PRESERVE:CAPS"></a>GVIR_CONFIG_DOMAIN_LIFECYCLE_PRESERVE</p></td>
1239 <td> </td>
1240 <td> </td>
1241 </tr>
1242 <tr>
1243 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-RENAME-RESTART:CAPS"></a>GVIR_CONFIG_DOMAIN_LIFECYCLE_RENAME_RESTART</p></td>
1244 <td> </td>
1245 <td> </td>
1246 </tr>
1247 <tr>
1248 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-COREDUMP-DESTROY:CAPS"></a>GVIR_CONFIG_DOMAIN_LIFECYCLE_COREDUMP_DESTROY</p></td>
1249 <td> </td>
1250 <td> </td>
1251 </tr>
1252 <tr>
1253 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-LIFECYCLE-COREDUMP-RESTART:CAPS"></a>GVIR_CONFIG_DOMAIN_LIFECYCLE_COREDUMP_RESTART</p></td>
1254 <td> </td>
1255 <td> </td>
1256 </tr>
1257 </tbody>
1258 </table></div>
1259 </div>
1260 </div>
1261 <hr>
1262 <div class="refsect2">
1263 <a name="GVirConfigDomainPrivate"></a><h3>GVirConfigDomainPrivate</h3>
1264 <pre class="programlisting">typedef struct _GVirConfigDomainPrivate GVirConfigDomainPrivate;</pre>
8251265 </div>
8261266 </div>
8271267 <div class="refsect1">
8281268 <a name="GVirConfigDomain.property-details"></a><h2>Property Details</h2>
8291269 <div class="refsect2">
830 <a name="GVirConfigDomain--current-memory"></a><h3>The <code class="literal">"current-memory"</code> property</h3>
831 <pre class="programlisting"> "current-memory" <span class="type">guint64</span> : Read / Write</pre>
1270 <a name="GVirConfigDomain--current-memory"></a><h3>The <code class="literal">“current-memory”</code> property</h3>
1271 <pre class="programlisting"> “current-memory” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a></pre>
8321272 <p>Current Guest Memory (in kilobytes).</p>
1273 <p>Flags: Read / Write</p>
8331274 <p>Default value: 0</p>
8341275 </div>
8351276 <hr>
8361277 <div class="refsect2">
837 <a name="GVirConfigDomain--description"></a><h3>The <code class="literal">"description"</code> property</h3>
838 <pre class="programlisting"> "description" <span class="type">gchar</span>* : Read / Write</pre>
1278 <a name="GVirConfigDomain--description"></a><h3>The <code class="literal">“description”</code> property</h3>
1279 <pre class="programlisting"> “description” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
8391280 <p>Some human readable description (could be anything).</p>
1281 <p>Flags: Read / Write</p>
8401282 <p>Default value: NULL</p>
8411283 </div>
8421284 <hr>
8431285 <div class="refsect2">
844 <a name="GVirConfigDomain--features"></a><h3>The <code class="literal">"features"</code> property</h3>
845 <pre class="programlisting"> "features" <span class="type">GStrv</span> : Read / Write</pre>
1286 <a name="GVirConfigDomain--features"></a><h3>The <code class="literal">“features”</code> property</h3>
1287 <pre class="programlisting"> “features” <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a></pre>
8461288 <p>Hypervisor Features.</p>
847 </div>
848 <hr>
849 <div class="refsect2">
850 <a name="GVirConfigDomain--memory"></a><h3>The <code class="literal">"memory"</code> property</h3>
851 <pre class="programlisting"> "memory" <span class="type">guint64</span> : Read / Write</pre>
1289 <p>Flags: Read / Write</p>
1290 </div>
1291 <hr>
1292 <div class="refsect2">
1293 <a name="GVirConfigDomain--memory"></a><h3>The <code class="literal">“memory”</code> property</h3>
1294 <pre class="programlisting"> “memory” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a></pre>
8521295 <p>Maximum Guest Memory (in kilobytes).</p>
1296 <p>Flags: Read / Write</p>
8531297 <p>Default value: 0</p>
8541298 </div>
8551299 <hr>
8561300 <div class="refsect2">
857 <a name="GVirConfigDomain--name"></a><h3>The <code class="literal">"name"</code> property</h3>
858 <pre class="programlisting"> "name" <span class="type">gchar</span>* : Read / Write</pre>
1301 <a name="GVirConfigDomain--name"></a><h3>The <code class="literal">“name”</code> property</h3>
1302 <pre class="programlisting"> “name” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
8591303 <p>Domain Name.</p>
1304 <p>Flags: Read / Write</p>
8601305 <p>Default value: NULL</p>
8611306 </div>
8621307 <hr>
8631308 <div class="refsect2">
864 <a name="GVirConfigDomain--title"></a><h3>The <code class="literal">"title"</code> property</h3>
865 <pre class="programlisting"> "title" <span class="type">gchar</span>* : Read / Write</pre>
1309 <a name="GVirConfigDomain--title"></a><h3>The <code class="literal">“title”</code> property</h3>
1310 <pre class="programlisting"> “title” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
8661311 <p>A short description - title - of the domain.</p>
1312 <p>Flags: Read / Write</p>
8671313 <p>Default value: NULL</p>
8681314 </div>
8691315 <hr>
8701316 <div class="refsect2">
871 <a name="GVirConfigDomain--vcpu"></a><h3>The <code class="literal">"vcpu"</code> property</h3>
872 <pre class="programlisting"> "vcpu" <span class="type">guint64</span> : Read / Write</pre>
1317 <a name="GVirConfigDomain--uuid"></a><h3>The <code class="literal">“uuid”</code> property</h3>
1318 <pre class="programlisting"> “uuid” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
1319 <p>Domain UUID.</p>
1320 <p>Flags: Read / Write</p>
1321 <p>Default value: NULL</p>
1322 </div>
1323 <hr>
1324 <div class="refsect2">
1325 <a name="GVirConfigDomain--vcpu"></a><h3>The <code class="literal">“vcpu”</code> property</h3>
1326 <pre class="programlisting"> “vcpu” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a></pre>
8731327 <p>Maximum Number of Guest Virtual CPUs.</p>
1328 <p>Flags: Read / Write</p>
8741329 <p>Default value: 1</p>
8751330 </div>
8761331 </div>
8771332 </div>
8781333 <div class="footer">
8791334 <hr>
880 Generated by GTK-Doc V1.19</div>
1335 Generated by GTK-Doc V1.21</div>
8811336 </body>
8821337 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirConfigDomainSnapshot</title>
4 <title>Libvirt-gconfig Reference Manual: GVirConfigDomainSnapshot</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigDomain.html" title="GVirConfigDomain">
9 <link rel="next" href="Libvirt-gconfig-GVirConfig.html" title="GVirConfig">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
9 <link rel="next" href="GVirConfigInterface.html" title="GVirConfigInterface">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirConfigDomain.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gconfig Reference Manual</th>
20 <td><a accesskey="n" href="Libvirt-gconfig-GVirConfig.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirConfigDomainSnapshot.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirConfigDomainSnapshot.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirConfigDomainSnapshot.object-hierarchy" class="shortcut">Object Hierarchy</a>
28 </td></tr>
29 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirConfigDomainSnapshot.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirConfigDomainSnapshot.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
19 </td>
20 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
22 <td><a accesskey="p" href="GVirConfigDomain.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23 <td><a accesskey="n" href="GVirConfigInterface.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24 </tr></table>
3025 <div class="refentry">
3126 <a name="GVirConfigDomainSnapshot"></a><div class="titlepage"></div>
3227 <div class="refnamediv"><table width="100%"><tr>
3429 <h2><span class="refentrytitle"><a name="GVirConfigDomainSnapshot.top_of_page"></a>GVirConfigDomainSnapshot</span></h2>
3530 <p>GVirConfigDomainSnapshot</p>
3631 </td>
37 <td valign="top" align="right"></td>
32 <td class="gallery_image" valign="top" align="right"></td>
3833 </tr></table></div>
39 <div class="refsynopsisdiv">
40 <a name="GVirConfigDomainSnapshot.synopsis"></a><h2>Synopsis</h2>
41 <pre class="synopsis">struct <a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot-struct" title="struct GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>;
42 struct <a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotClass" title="struct GVirConfigDomainSnapshotClass">GVirConfigDomainSnapshotClass</a>;
43 enum <a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotDomainState" title="enum GVirConfigDomainSnapshotDomainState">GVirConfigDomainSnapshotDomainState</a>;
44 enum <a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotMemoryState" title="enum GVirConfigDomainSnapshotMemoryState">GVirConfigDomainSnapshotMemoryState</a>;
45 <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="returnvalue">GVirConfigDomainSnapshot</span></a> * <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-new" title="gvir_config_domain_snapshot_new ()">gvir_config_domain_snapshot_new</a>
46 (<em class="parameter"><code><span class="type">void</span></code></em>);
47 <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="returnvalue">GVirConfigDomainSnapshot</span></a> * <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-new-from-xml" title="gvir_config_domain_snapshot_new_from_xml ()">gvir_config_domain_snapshot_new_from_xml</a>
48 (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
49 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
50 const <span class="returnvalue">char</span> * <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-name" title="gvir_config_domain_snapshot_get_name ()">gvir_config_domain_snapshot_get_name</a>
51 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);
52 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-name" title="gvir_config_domain_snapshot_set_name ()">gvir_config_domain_snapshot_set_name</a>
53 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
54 <em class="parameter"><code>const <span class="type">char</span> *name</code></em>);
55 const <span class="returnvalue">char</span> * <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-description" title="gvir_config_domain_snapshot_get_description ()">gvir_config_domain_snapshot_get_description</a>
56 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);
57 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-description" title="gvir_config_domain_snapshot_set_description ()">gvir_config_domain_snapshot_set_description</a>
58 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
59 <em class="parameter"><code>const <span class="type">char</span> *description</code></em>);
60 <a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotMemoryState" title="enum GVirConfigDomainSnapshotMemoryState"><span class="returnvalue">GVirConfigDomainSnapshotMemoryState</span></a> <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-memory-state" title="gvir_config_domain_snapshot_get_memory_state ()">gvir_config_domain_snapshot_get_memory_state</a>
61 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);
62 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-memory-state" title="gvir_config_domain_snapshot_set_memory_state ()">gvir_config_domain_snapshot_set_memory_state</a>
63 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
64 <em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotMemoryState" title="enum GVirConfigDomainSnapshotMemoryState"><span class="type">GVirConfigDomainSnapshotMemoryState</span></a> state</code></em>);
65 const <span class="returnvalue">char</span> * <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-memory-file" title="gvir_config_domain_snapshot_get_memory_file ()">gvir_config_domain_snapshot_get_memory_file</a>
66 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);
67 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-memory-file" title="gvir_config_domain_snapshot_set_memory_file ()">gvir_config_domain_snapshot_set_memory_file</a>
68 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
69 <em class="parameter"><code>const <span class="type">char</span> *filename</code></em>);
70 <span class="returnvalue">time_t</span> <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-creation-time" title="gvir_config_domain_snapshot_get_creation_time ()">gvir_config_domain_snapshot_get_creation_time</a>
71 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);
72 <a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotDomainState" title="enum GVirConfigDomainSnapshotDomainState"><span class="returnvalue">GVirConfigDomainSnapshotDomainState</span></a> <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-state" title="gvir_config_domain_snapshot_get_state ()">gvir_config_domain_snapshot_get_state</a>
73 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);
74 const <span class="returnvalue">char</span> * <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-parent" title="gvir_config_domain_snapshot_get_parent ()">gvir_config_domain_snapshot_get_parent</a>
75 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);
76 <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="returnvalue">GVirConfigDomain</span></a> * <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-domain" title="gvir_config_domain_snapshot_get_domain ()">gvir_config_domain_snapshot_get_domain</a>
77 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);
78 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-disks" title="gvir_config_domain_snapshot_set_disks ()">gvir_config_domain_snapshot_set_disks</a>
79 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
80 <em class="parameter"><code><span class="type">GList</span> *disks</code></em>);
81 <span class="returnvalue">void</span> <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-add-disk" title="gvir_config_domain_snapshot_add_disk ()">gvir_config_domain_snapshot_add_disk</a>
82 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
83 <em class="parameter"><code><span class="type">GVirConfigDomainSnapshotDisk</span> *disk</code></em>);
84 <span class="returnvalue">GList</span> * <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-disks" title="gvir_config_domain_snapshot_get_disks ()">gvir_config_domain_snapshot_get_disks</a>
85 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);
86 </pre>
34 <div class="refsect1">
35 <a name="GVirConfigDomainSnapshot.functions"></a><h2>Functions</h2>
36 <div class="informaltable"><table width="100%" border="0">
37 <colgroup>
38 <col width="150px" class="functions_return">
39 <col class="functions_name">
40 </colgroup>
41 <tbody>
42 <tr>
43 <td class="function_type">
44 <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="returnvalue">GVirConfigDomainSnapshot</span></a> *
45 </td>
46 <td class="function_name">
47 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-new" title="gvir_config_domain_snapshot_new ()">gvir_config_domain_snapshot_new</a> <span class="c_punctuation">()</span>
48 </td>
49 </tr>
50 <tr>
51 <td class="function_type">
52 <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="returnvalue">GVirConfigDomainSnapshot</span></a> *
53 </td>
54 <td class="function_name">
55 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-new-from-xml" title="gvir_config_domain_snapshot_new_from_xml ()">gvir_config_domain_snapshot_new_from_xml</a> <span class="c_punctuation">()</span>
56 </td>
57 </tr>
58 <tr>
59 <td class="function_type">const <span class="returnvalue">char</span> *
60 </td>
61 <td class="function_name">
62 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-name" title="gvir_config_domain_snapshot_get_name ()">gvir_config_domain_snapshot_get_name</a> <span class="c_punctuation">()</span>
63 </td>
64 </tr>
65 <tr>
66 <td class="function_type">
67 <span class="returnvalue">void</span>
68 </td>
69 <td class="function_name">
70 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-name" title="gvir_config_domain_snapshot_set_name ()">gvir_config_domain_snapshot_set_name</a> <span class="c_punctuation">()</span>
71 </td>
72 </tr>
73 <tr>
74 <td class="function_type">const <span class="returnvalue">char</span> *
75 </td>
76 <td class="function_name">
77 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-description" title="gvir_config_domain_snapshot_get_description ()">gvir_config_domain_snapshot_get_description</a> <span class="c_punctuation">()</span>
78 </td>
79 </tr>
80 <tr>
81 <td class="function_type">
82 <span class="returnvalue">void</span>
83 </td>
84 <td class="function_name">
85 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-description" title="gvir_config_domain_snapshot_set_description ()">gvir_config_domain_snapshot_set_description</a> <span class="c_punctuation">()</span>
86 </td>
87 </tr>
88 <tr>
89 <td class="function_type">
90 <a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotMemoryState" title="enum GVirConfigDomainSnapshotMemoryState"><span class="returnvalue">GVirConfigDomainSnapshotMemoryState</span></a>
91 </td>
92 <td class="function_name">
93 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-memory-state" title="gvir_config_domain_snapshot_get_memory_state ()">gvir_config_domain_snapshot_get_memory_state</a> <span class="c_punctuation">()</span>
94 </td>
95 </tr>
96 <tr>
97 <td class="function_type">
98 <span class="returnvalue">void</span>
99 </td>
100 <td class="function_name">
101 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-memory-state" title="gvir_config_domain_snapshot_set_memory_state ()">gvir_config_domain_snapshot_set_memory_state</a> <span class="c_punctuation">()</span>
102 </td>
103 </tr>
104 <tr>
105 <td class="function_type">const <span class="returnvalue">char</span> *
106 </td>
107 <td class="function_name">
108 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-memory-file" title="gvir_config_domain_snapshot_get_memory_file ()">gvir_config_domain_snapshot_get_memory_file</a> <span class="c_punctuation">()</span>
109 </td>
110 </tr>
111 <tr>
112 <td class="function_type">
113 <span class="returnvalue">void</span>
114 </td>
115 <td class="function_name">
116 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-memory-file" title="gvir_config_domain_snapshot_set_memory_file ()">gvir_config_domain_snapshot_set_memory_file</a> <span class="c_punctuation">()</span>
117 </td>
118 </tr>
119 <tr>
120 <td class="function_type">
121 <span class="returnvalue">time_t</span>
122 </td>
123 <td class="function_name">
124 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-creation-time" title="gvir_config_domain_snapshot_get_creation_time ()">gvir_config_domain_snapshot_get_creation_time</a> <span class="c_punctuation">()</span>
125 </td>
126 </tr>
127 <tr>
128 <td class="function_type">
129 <a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotDomainState" title="enum GVirConfigDomainSnapshotDomainState"><span class="returnvalue">GVirConfigDomainSnapshotDomainState</span></a>
130 </td>
131 <td class="function_name">
132 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-state" title="gvir_config_domain_snapshot_get_state ()">gvir_config_domain_snapshot_get_state</a> <span class="c_punctuation">()</span>
133 </td>
134 </tr>
135 <tr>
136 <td class="function_type">const <span class="returnvalue">char</span> *
137 </td>
138 <td class="function_name">
139 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-parent" title="gvir_config_domain_snapshot_get_parent ()">gvir_config_domain_snapshot_get_parent</a> <span class="c_punctuation">()</span>
140 </td>
141 </tr>
142 <tr>
143 <td class="function_type">
144 <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="returnvalue">GVirConfigDomain</span></a> *
145 </td>
146 <td class="function_name">
147 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-domain" title="gvir_config_domain_snapshot_get_domain ()">gvir_config_domain_snapshot_get_domain</a> <span class="c_punctuation">()</span>
148 </td>
149 </tr>
150 <tr>
151 <td class="function_type">
152 <span class="returnvalue">void</span>
153 </td>
154 <td class="function_name">
155 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-disks" title="gvir_config_domain_snapshot_set_disks ()">gvir_config_domain_snapshot_set_disks</a> <span class="c_punctuation">()</span>
156 </td>
157 </tr>
158 <tr>
159 <td class="function_type">
160 <span class="returnvalue">void</span>
161 </td>
162 <td class="function_name">
163 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-add-disk" title="gvir_config_domain_snapshot_add_disk ()">gvir_config_domain_snapshot_add_disk</a> <span class="c_punctuation">()</span>
164 </td>
165 </tr>
166 <tr>
167 <td class="function_type">
168 <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
169 </td>
170 <td class="function_name">
171 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-disks" title="gvir_config_domain_snapshot_get_disks ()">gvir_config_domain_snapshot_get_disks</a> <span class="c_punctuation">()</span>
172 </td>
173 </tr>
174 </tbody>
175 </table></div>
176 </div>
177 <div class="refsect1">
178 <a name="GVirConfigDomainSnapshot.other"></a><h2>Types and Values</h2>
179 <div class="informaltable"><table width="100%" border="0">
180 <colgroup>
181 <col width="150px" class="name">
182 <col class="description">
183 </colgroup>
184 <tbody>
185 <tr>
186 <td class="datatype_keyword">struct</td>
187 <td class="function_name"><a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot-struct" title="struct GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a></td>
188 </tr>
189 <tr>
190 <td class="datatype_keyword">struct</td>
191 <td class="function_name"><a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotClass" title="struct GVirConfigDomainSnapshotClass">GVirConfigDomainSnapshotClass</a></td>
192 </tr>
193 <tr>
194 <td class="datatype_keyword">enum</td>
195 <td class="function_name"><a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotDomainState" title="enum GVirConfigDomainSnapshotDomainState">GVirConfigDomainSnapshotDomainState</a></td>
196 </tr>
197 <tr>
198 <td class="datatype_keyword">enum</td>
199 <td class="function_name"><a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotMemoryState" title="enum GVirConfigDomainSnapshotMemoryState">GVirConfigDomainSnapshotMemoryState</a></td>
200 </tr>
201 <tr>
202 <td class="datatype_keyword"> </td>
203 <td class="function_name"><a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotPrivate" title="GVirConfigDomainSnapshotPrivate">GVirConfigDomainSnapshotPrivate</a></td>
204 </tr>
205 </tbody>
206 </table></div>
87207 </div>
88208 <div class="refsect1">
89209 <a name="GVirConfigDomainSnapshot.object-hierarchy"></a><h2>Object Hierarchy</h2>
90 <pre class="synopsis">
91 GObject
92 +----<a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
93 +----GVirConfigDomainSnapshot
210 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
211 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
212 <span class="lineart">╰──</span> GVirConfigDomainSnapshot
94213 </pre>
95214 </div>
96215 <div class="refsect1">
97216 <a name="GVirConfigDomainSnapshot.description"></a><h2>Description</h2>
98217 </div>
99218 <div class="refsect1">
100 <a name="GVirConfigDomainSnapshot.details"></a><h2>Details</h2>
219 <a name="GVirConfigDomainSnapshot.functions_details"></a><h2>Functions</h2>
220 <div class="refsect2">
221 <a name="gvir-config-domain-snapshot-new"></a><h3>gvir_config_domain_snapshot_new ()</h3>
222 <pre class="programlisting"><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="returnvalue">GVirConfigDomainSnapshot</span></a> *
223 gvir_config_domain_snapshot_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
224 </div>
225 <hr>
226 <div class="refsect2">
227 <a name="gvir-config-domain-snapshot-new-from-xml"></a><h3>gvir_config_domain_snapshot_new_from_xml ()</h3>
228 <pre class="programlisting"><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="returnvalue">GVirConfigDomainSnapshot</span></a> *
229 gvir_config_domain_snapshot_new_from_xml
230 (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
231 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
232 </div>
233 <hr>
234 <div class="refsect2">
235 <a name="gvir-config-domain-snapshot-get-name"></a><h3>gvir_config_domain_snapshot_get_name ()</h3>
236 <pre class="programlisting">const <span class="returnvalue">char</span> *
237 gvir_config_domain_snapshot_get_name (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
238 </div>
239 <hr>
240 <div class="refsect2">
241 <a name="gvir-config-domain-snapshot-set-name"></a><h3>gvir_config_domain_snapshot_set_name ()</h3>
242 <pre class="programlisting"><span class="returnvalue">void</span>
243 gvir_config_domain_snapshot_set_name (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
244 <em class="parameter"><code>const <span class="type">char</span> *name</code></em>);</pre>
245 </div>
246 <hr>
247 <div class="refsect2">
248 <a name="gvir-config-domain-snapshot-get-description"></a><h3>gvir_config_domain_snapshot_get_description ()</h3>
249 <pre class="programlisting">const <span class="returnvalue">char</span> *
250 gvir_config_domain_snapshot_get_description
251 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
252 </div>
253 <hr>
254 <div class="refsect2">
255 <a name="gvir-config-domain-snapshot-set-description"></a><h3>gvir_config_domain_snapshot_set_description ()</h3>
256 <pre class="programlisting"><span class="returnvalue">void</span>
257 gvir_config_domain_snapshot_set_description
258 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
259 <em class="parameter"><code>const <span class="type">char</span> *description</code></em>);</pre>
260 </div>
261 <hr>
262 <div class="refsect2">
263 <a name="gvir-config-domain-snapshot-get-memory-state"></a><h3>gvir_config_domain_snapshot_get_memory_state ()</h3>
264 <pre class="programlisting"><a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotMemoryState" title="enum GVirConfigDomainSnapshotMemoryState"><span class="returnvalue">GVirConfigDomainSnapshotMemoryState</span></a>
265 gvir_config_domain_snapshot_get_memory_state
266 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
267 </div>
268 <hr>
269 <div class="refsect2">
270 <a name="gvir-config-domain-snapshot-set-memory-state"></a><h3>gvir_config_domain_snapshot_set_memory_state ()</h3>
271 <pre class="programlisting"><span class="returnvalue">void</span>
272 gvir_config_domain_snapshot_set_memory_state
273 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
274 <em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotMemoryState" title="enum GVirConfigDomainSnapshotMemoryState"><span class="type">GVirConfigDomainSnapshotMemoryState</span></a> state</code></em>);</pre>
275 </div>
276 <hr>
277 <div class="refsect2">
278 <a name="gvir-config-domain-snapshot-get-memory-file"></a><h3>gvir_config_domain_snapshot_get_memory_file ()</h3>
279 <pre class="programlisting">const <span class="returnvalue">char</span> *
280 gvir_config_domain_snapshot_get_memory_file
281 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
282 </div>
283 <hr>
284 <div class="refsect2">
285 <a name="gvir-config-domain-snapshot-set-memory-file"></a><h3>gvir_config_domain_snapshot_set_memory_file ()</h3>
286 <pre class="programlisting"><span class="returnvalue">void</span>
287 gvir_config_domain_snapshot_set_memory_file
288 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
289 <em class="parameter"><code>const <span class="type">char</span> *filename</code></em>);</pre>
290 </div>
291 <hr>
292 <div class="refsect2">
293 <a name="gvir-config-domain-snapshot-get-creation-time"></a><h3>gvir_config_domain_snapshot_get_creation_time ()</h3>
294 <pre class="programlisting"><span class="returnvalue">time_t</span>
295 gvir_config_domain_snapshot_get_creation_time
296 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
297 </div>
298 <hr>
299 <div class="refsect2">
300 <a name="gvir-config-domain-snapshot-get-state"></a><h3>gvir_config_domain_snapshot_get_state ()</h3>
301 <pre class="programlisting"><a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotDomainState" title="enum GVirConfigDomainSnapshotDomainState"><span class="returnvalue">GVirConfigDomainSnapshotDomainState</span></a>
302 gvir_config_domain_snapshot_get_state (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
303 </div>
304 <hr>
305 <div class="refsect2">
306 <a name="gvir-config-domain-snapshot-get-parent"></a><h3>gvir_config_domain_snapshot_get_parent ()</h3>
307 <pre class="programlisting">const <span class="returnvalue">char</span> *
308 gvir_config_domain_snapshot_get_parent
309 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
310 </div>
311 <hr>
312 <div class="refsect2">
313 <a name="gvir-config-domain-snapshot-get-domain"></a><h3>gvir_config_domain_snapshot_get_domain ()</h3>
314 <pre class="programlisting"><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="returnvalue">GVirConfigDomain</span></a> *
315 gvir_config_domain_snapshot_get_domain
316 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
317 <p>Gets the configuration of the domain <em class="parameter"><code>snapshot</code></em>
318 is a snapshot of.</p>
319 <div class="refsect3">
320 <a name="id-1.2.4.7.15.5"></a><h4>Parameters</h4>
321 <div class="informaltable"><table width="100%" border="0">
322 <colgroup>
323 <col width="150px" class="parameters_name">
324 <col class="parameters_description">
325 <col width="200px" class="parameters_annotations">
326 </colgroup>
327 <tbody><tr>
328 <td class="parameter_name"><p>snapshot</p></td>
329 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a></p></td>
330 <td class="parameter_annotations"> </td>
331 </tr></tbody>
332 </table></div>
333 </div>
334 <div class="refsect3">
335 <a name="id-1.2.4.7.15.6"></a><h4>Returns</h4>
336 <p> A <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>. The returned object
337 should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
338 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
339 </div>
340 </div>
341 <hr>
342 <div class="refsect2">
343 <a name="gvir-config-domain-snapshot-set-disks"></a><h3>gvir_config_domain_snapshot_set_disks ()</h3>
344 <pre class="programlisting"><span class="returnvalue">void</span>
345 gvir_config_domain_snapshot_set_disks (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
346 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> *disks</code></em>);</pre>
347 <div class="refsect3">
348 <a name="id-1.2.4.7.16.4"></a><h4>Parameters</h4>
349 <div class="informaltable"><table width="100%" border="0">
350 <colgroup>
351 <col width="150px" class="parameters_name">
352 <col class="parameters_description">
353 <col width="200px" class="parameters_annotations">
354 </colgroup>
355 <tbody>
356 <tr>
357 <td class="parameter_name"><p>snapshot</p></td>
358 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a></p></td>
359 <td class="parameter_annotations"> </td>
360 </tr>
361 <tr>
362 <td class="parameter_name"><p>disks</p></td>
363 <td class="parameter_description"><p>. </p></td>
364 <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input. Default is transfer none."><span class="acronym">in</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGConfig.DomainSnapshotDisk]</span></td>
365 </tr>
366 </tbody>
367 </table></div>
368 </div>
369 </div>
370 <hr>
371 <div class="refsect2">
372 <a name="gvir-config-domain-snapshot-add-disk"></a><h3>gvir_config_domain_snapshot_add_disk ()</h3>
373 <pre class="programlisting"><span class="returnvalue">void</span>
374 gvir_config_domain_snapshot_add_disk (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
375 <em class="parameter"><code><span class="type">GVirConfigDomainSnapshotDisk</span> *disk</code></em>);</pre>
376 </div>
377 <hr>
378 <div class="refsect2">
379 <a name="gvir-config-domain-snapshot-get-disks"></a><h3>gvir_config_domain_snapshot_get_disks ()</h3>
380 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
381 gvir_config_domain_snapshot_get_disks (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
382 <p>Gets the list of disks attached to <em class="parameter"><code>snapshot</code></em>
383 . The returned list should
384 be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>, after its elements have been unreffed with
385 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>.</p>
386 <div class="refsect3">
387 <a name="id-1.2.4.7.18.5"></a><h4>Parameters</h4>
388 <div class="informaltable"><table width="100%" border="0">
389 <colgroup>
390 <col width="150px" class="parameters_name">
391 <col class="parameters_description">
392 <col width="200px" class="parameters_annotations">
393 </colgroup>
394 <tbody><tr>
395 <td class="parameter_name"><p>snapshot</p></td>
396 <td class="parameter_description"><p>a <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a></p></td>
397 <td class="parameter_annotations"> </td>
398 </tr></tbody>
399 </table></div>
400 </div>
401 <div class="refsect3">
402 <a name="id-1.2.4.7.18.6"></a><h4>Returns</h4>
403 <p>a newly allocated <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of <span class="type">GVirConfigDomainSnapshotDisk</span>. </p>
404 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGConfig.DomainSnapshotDisk][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
405 </div>
406 </div>
407 </div>
408 <div class="refsect1">
409 <a name="GVirConfigDomainSnapshot.other_details"></a><h2>Types and Values</h2>
101410 <div class="refsect2">
102411 <a name="GVirConfigDomainSnapshot-struct"></a><h3>struct GVirConfigDomainSnapshot</h3>
103412 <pre class="programlisting">struct GVirConfigDomainSnapshot;</pre>
115424 <hr>
116425 <div class="refsect2">
117426 <a name="GVirConfigDomainSnapshotDomainState"></a><h3>enum GVirConfigDomainSnapshotDomainState</h3>
118 <pre class="programlisting">typedef enum {
119 GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_NOSTATE = 0, /* no state */
120 GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_RUNNING = 1, /* the domain is running */
121 GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_BLOCKED = 2, /* the domain is blocked on resource */
122 GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_PAUSED = 3, /* the domain is paused by user */
123 GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_SHUTDOWN= 4, /* the domain is being shut down */
124 GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_SHUTOFF = 5, /* the domain is shut off */
125 GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_CRASHED = 6, /* the domain is crashed */
126 GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_PMSUSPENDED = 7, /* the domain is suspended by guest
127 power management */
128 GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_DISK_SNAPSHOT = 100
129 } GVirConfigDomainSnapshotDomainState;
130 </pre>
131 <div class="variablelist"><table border="0" class="variablelist">
132 <colgroup>
133 <col align="left" valign="top">
134 <col>
427 <div class="refsect3">
428 <a name="id-1.2.4.8.4.3"></a><h4>Members</h4>
429 <div class="informaltable"><table width="100%" border="0">
430 <colgroup>
431 <col width="300px" class="enum_members_name">
432 <col class="enum_members_description">
433 <col width="200px" class="enum_members_annotations">
135434 </colgroup>
136435 <tbody>
137436 <tr>
138 <td><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-NOSTATE:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_NOSTATE</code></span></p></td>
139 <td></td>
140 </tr>
141 <tr>
142 <td><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-RUNNING:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_RUNNING</code></span></p></td>
143 <td></td>
144 </tr>
145 <tr>
146 <td><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-BLOCKED:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_BLOCKED</code></span></p></td>
147 <td></td>
148 </tr>
149 <tr>
150 <td><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-PAUSED:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_PAUSED</code></span></p></td>
151 <td></td>
152 </tr>
153 <tr>
154 <td><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-SHUTDOWN:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_SHUTDOWN</code></span></p></td>
155 <td></td>
156 </tr>
157 <tr>
158 <td><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-SHUTOFF:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_SHUTOFF</code></span></p></td>
159 <td></td>
160 </tr>
161 <tr>
162 <td><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-CRASHED:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_CRASHED</code></span></p></td>
163 <td></td>
164 </tr>
165 <tr>
166 <td><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-PMSUSPENDED:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_PMSUSPENDED</code></span></p></td>
167 <td></td>
168 </tr>
169 <tr>
170 <td><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-DISK-SNAPSHOT:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_DISK_SNAPSHOT</code></span></p></td>
171 <td></td>
437 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-NOSTATE:CAPS"></a>GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_NOSTATE</p></td>
438 <td> </td>
439 <td> </td>
440 </tr>
441 <tr>
442 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-RUNNING:CAPS"></a>GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_RUNNING</p></td>
443 <td> </td>
444 <td> </td>
445 </tr>
446 <tr>
447 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-BLOCKED:CAPS"></a>GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_BLOCKED</p></td>
448 <td> </td>
449 <td> </td>
450 </tr>
451 <tr>
452 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-PAUSED:CAPS"></a>GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_PAUSED</p></td>
453 <td> </td>
454 <td> </td>
455 </tr>
456 <tr>
457 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-SHUTDOWN:CAPS"></a>GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_SHUTDOWN</p></td>
458 <td> </td>
459 <td> </td>
460 </tr>
461 <tr>
462 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-SHUTOFF:CAPS"></a>GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_SHUTOFF</p></td>
463 <td> </td>
464 <td> </td>
465 </tr>
466 <tr>
467 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-CRASHED:CAPS"></a>GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_CRASHED</p></td>
468 <td> </td>
469 <td> </td>
470 </tr>
471 <tr>
472 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-PMSUSPENDED:CAPS"></a>GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_PMSUSPENDED</p></td>
473 <td> </td>
474 <td> </td>
475 </tr>
476 <tr>
477 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-DISK-SNAPSHOT:CAPS"></a>GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_DISK_SNAPSHOT</p></td>
478 <td> </td>
479 <td> </td>
172480 </tr>
173481 </tbody>
174482 </table></div>
175483 </div>
484 </div>
176485 <hr>
177486 <div class="refsect2">
178487 <a name="GVirConfigDomainSnapshotMemoryState"></a><h3>enum GVirConfigDomainSnapshotMemoryState</h3>
179 <pre class="programlisting">typedef enum {
180 GVIR_CONFIG_DOMAIN_SNAPSHOT_MEMORY_STATE_NONE,
181 GVIR_CONFIG_DOMAIN_SNAPSHOT_MEMORY_STATE_INTERNAL,
182 GVIR_CONFIG_DOMAIN_SNAPSHOT_MEMORY_STATE_EXTERNAL,
183 } GVirConfigDomainSnapshotMemoryState;
184 </pre>
185 <div class="variablelist"><table border="0" class="variablelist">
186 <colgroup>
187 <col align="left" valign="top">
188 <col>
488 <div class="refsect3">
489 <a name="id-1.2.4.8.5.3"></a><h4>Members</h4>
490 <div class="informaltable"><table width="100%" border="0">
491 <colgroup>
492 <col width="300px" class="enum_members_name">
493 <col class="enum_members_description">
494 <col width="200px" class="enum_members_annotations">
189495 </colgroup>
190496 <tbody>
191497 <tr>
192 <td><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-MEMORY-STATE-NONE:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_SNAPSHOT_MEMORY_STATE_NONE</code></span></p></td>
193 <td></td>
194 </tr>
195 <tr>
196 <td><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-MEMORY-STATE-INTERNAL:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_SNAPSHOT_MEMORY_STATE_INTERNAL</code></span></p></td>
197 <td></td>
198 </tr>
199 <tr>
200 <td><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-MEMORY-STATE-EXTERNAL:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_DOMAIN_SNAPSHOT_MEMORY_STATE_EXTERNAL</code></span></p></td>
201 <td></td>
498 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-MEMORY-STATE-NONE:CAPS"></a>GVIR_CONFIG_DOMAIN_SNAPSHOT_MEMORY_STATE_NONE</p></td>
499 <td> </td>
500 <td> </td>
501 </tr>
502 <tr>
503 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-MEMORY-STATE-INTERNAL:CAPS"></a>GVIR_CONFIG_DOMAIN_SNAPSHOT_MEMORY_STATE_INTERNAL</p></td>
504 <td> </td>
505 <td> </td>
506 </tr>
507 <tr>
508 <td class="enum_member_name"><p><a name="GVIR-CONFIG-DOMAIN-SNAPSHOT-MEMORY-STATE-EXTERNAL:CAPS"></a>GVIR_CONFIG_DOMAIN_SNAPSHOT_MEMORY_STATE_EXTERNAL</p></td>
509 <td> </td>
510 <td> </td>
202511 </tr>
203512 </tbody>
204513 </table></div>
205514 </div>
206 <hr>
207 <div class="refsect2">
208 <a name="gvir-config-domain-snapshot-new"></a><h3>gvir_config_domain_snapshot_new ()</h3>
209 <pre class="programlisting"><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="returnvalue">GVirConfigDomainSnapshot</span></a> * gvir_config_domain_snapshot_new
210 (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
211 </div>
212 <hr>
213 <div class="refsect2">
214 <a name="gvir-config-domain-snapshot-new-from-xml"></a><h3>gvir_config_domain_snapshot_new_from_xml ()</h3>
215 <pre class="programlisting"><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="returnvalue">GVirConfigDomainSnapshot</span></a> * gvir_config_domain_snapshot_new_from_xml
216 (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
217 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
218 </div>
219 <hr>
220 <div class="refsect2">
221 <a name="gvir-config-domain-snapshot-get-name"></a><h3>gvir_config_domain_snapshot_get_name ()</h3>
222 <pre class="programlisting">const <span class="returnvalue">char</span> * gvir_config_domain_snapshot_get_name
223 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
224 </div>
225 <hr>
226 <div class="refsect2">
227 <a name="gvir-config-domain-snapshot-set-name"></a><h3>gvir_config_domain_snapshot_set_name ()</h3>
228 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_snapshot_set_name
229 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
230 <em class="parameter"><code>const <span class="type">char</span> *name</code></em>);</pre>
231 </div>
232 <hr>
233 <div class="refsect2">
234 <a name="gvir-config-domain-snapshot-get-description"></a><h3>gvir_config_domain_snapshot_get_description ()</h3>
235 <pre class="programlisting">const <span class="returnvalue">char</span> * gvir_config_domain_snapshot_get_description
236 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
237 </div>
238 <hr>
239 <div class="refsect2">
240 <a name="gvir-config-domain-snapshot-set-description"></a><h3>gvir_config_domain_snapshot_set_description ()</h3>
241 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_snapshot_set_description
242 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
243 <em class="parameter"><code>const <span class="type">char</span> *description</code></em>);</pre>
244 </div>
245 <hr>
246 <div class="refsect2">
247 <a name="gvir-config-domain-snapshot-get-memory-state"></a><h3>gvir_config_domain_snapshot_get_memory_state ()</h3>
248 <pre class="programlisting"><a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotMemoryState" title="enum GVirConfigDomainSnapshotMemoryState"><span class="returnvalue">GVirConfigDomainSnapshotMemoryState</span></a> gvir_config_domain_snapshot_get_memory_state
249 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
250 </div>
251 <hr>
252 <div class="refsect2">
253 <a name="gvir-config-domain-snapshot-set-memory-state"></a><h3>gvir_config_domain_snapshot_set_memory_state ()</h3>
254 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_snapshot_set_memory_state
255 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
256 <em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotMemoryState" title="enum GVirConfigDomainSnapshotMemoryState"><span class="type">GVirConfigDomainSnapshotMemoryState</span></a> state</code></em>);</pre>
257 </div>
258 <hr>
259 <div class="refsect2">
260 <a name="gvir-config-domain-snapshot-get-memory-file"></a><h3>gvir_config_domain_snapshot_get_memory_file ()</h3>
261 <pre class="programlisting">const <span class="returnvalue">char</span> * gvir_config_domain_snapshot_get_memory_file
262 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
263 </div>
264 <hr>
265 <div class="refsect2">
266 <a name="gvir-config-domain-snapshot-set-memory-file"></a><h3>gvir_config_domain_snapshot_set_memory_file ()</h3>
267 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_snapshot_set_memory_file
268 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
269 <em class="parameter"><code>const <span class="type">char</span> *filename</code></em>);</pre>
270 </div>
271 <hr>
272 <div class="refsect2">
273 <a name="gvir-config-domain-snapshot-get-creation-time"></a><h3>gvir_config_domain_snapshot_get_creation_time ()</h3>
274 <pre class="programlisting"><span class="returnvalue">time_t</span> gvir_config_domain_snapshot_get_creation_time
275 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
276 </div>
277 <hr>
278 <div class="refsect2">
279 <a name="gvir-config-domain-snapshot-get-state"></a><h3>gvir_config_domain_snapshot_get_state ()</h3>
280 <pre class="programlisting"><a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotDomainState" title="enum GVirConfigDomainSnapshotDomainState"><span class="returnvalue">GVirConfigDomainSnapshotDomainState</span></a> gvir_config_domain_snapshot_get_state
281 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
282 </div>
283 <hr>
284 <div class="refsect2">
285 <a name="gvir-config-domain-snapshot-get-parent"></a><h3>gvir_config_domain_snapshot_get_parent ()</h3>
286 <pre class="programlisting">const <span class="returnvalue">char</span> * gvir_config_domain_snapshot_get_parent
287 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
288 </div>
289 <hr>
290 <div class="refsect2">
291 <a name="gvir-config-domain-snapshot-get-domain"></a><h3>gvir_config_domain_snapshot_get_domain ()</h3>
292 <pre class="programlisting"><a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="returnvalue">GVirConfigDomain</span></a> * gvir_config_domain_snapshot_get_domain
293 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
294 <p>
295 Gets the configuration of the domain <em class="parameter"><code>snapshot</code></em> is a snapshot of.
296 </p>
297 <div class="variablelist"><table border="0" class="variablelist">
298 <colgroup>
299 <col align="left" valign="top">
300 <col>
301 </colgroup>
302 <tbody>
303 <tr>
304 <td><p><span class="term"><em class="parameter"><code>snapshot</code></em> :</span></p></td>
305 <td>a <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a>
306 </td>
307 </tr>
308 <tr>
309 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
310 <td>A <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain"><span class="type">GVirConfigDomain</span></a>. The returned object
311 should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
312 </td>
313 </tr>
314 </tbody>
315 </table></div>
316 </div>
317 <hr>
318 <div class="refsect2">
319 <a name="gvir-config-domain-snapshot-set-disks"></a><h3>gvir_config_domain_snapshot_set_disks ()</h3>
320 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_snapshot_set_disks
321 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
322 <em class="parameter"><code><span class="type">GList</span> *disks</code></em>);</pre>
323 <div class="variablelist"><table border="0" class="variablelist">
324 <colgroup>
325 <col align="left" valign="top">
326 <col>
327 </colgroup>
328 <tbody>
329 <tr>
330 <td><p><span class="term"><em class="parameter"><code>snapshot</code></em> :</span></p></td>
331 <td>a <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a>
332 </td>
333 </tr>
334 <tr>
335 <td><p><span class="term"><em class="parameter"><code>disks</code></em> :</span></p></td>
336 <td>. <span class="annotation">[<acronym title="Parameter for input. Default is transfer none."><span class="acronym">in</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGConfig.DomainSnapshotDisk]</span>
337 </td>
338 </tr>
339 </tbody>
340 </table></div>
341 </div>
342 <hr>
343 <div class="refsect2">
344 <a name="gvir-config-domain-snapshot-add-disk"></a><h3>gvir_config_domain_snapshot_add_disk ()</h3>
345 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_domain_snapshot_add_disk
346 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>,
347 <em class="parameter"><code><span class="type">GVirConfigDomainSnapshotDisk</span> *disk</code></em>);</pre>
348 </div>
349 <hr>
350 <div class="refsect2">
351 <a name="gvir-config-domain-snapshot-get-disks"></a><h3>gvir_config_domain_snapshot_get_disks ()</h3>
352 <pre class="programlisting"><span class="returnvalue">GList</span> * gvir_config_domain_snapshot_get_disks
353 (<em class="parameter"><code><a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a> *snapshot</code></em>);</pre>
354 <p>
355 Gets the list of disks attached to <em class="parameter"><code>snapshot</code></em>. The returned list should
356 be freed with <code class="function">g_list_free()</code>, after its elements have been unreffed with
357 <code class="function">g_object_unref()</code>.
358 </p>
359 <div class="variablelist"><table border="0" class="variablelist">
360 <colgroup>
361 <col align="left" valign="top">
362 <col>
363 </colgroup>
364 <tbody>
365 <tr>
366 <td><p><span class="term"><em class="parameter"><code>snapshot</code></em> :</span></p></td>
367 <td>a <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot"><span class="type">GVirConfigDomainSnapshot</span></a>
368 </td>
369 </tr>
370 <tr>
371 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
372 <td>a newly allocated <span class="type">GList</span> of <span class="type">GVirConfigDomainSnapshotDisk</span>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGConfig.DomainSnapshotDisk][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
373 </td>
374 </tr>
375 </tbody>
376 </table></div>
515 </div>
516 <hr>
517 <div class="refsect2">
518 <a name="GVirConfigDomainSnapshotPrivate"></a><h3>GVirConfigDomainSnapshotPrivate</h3>
519 <pre class="programlisting">typedef struct _GVirConfigDomainSnapshotPrivate GVirConfigDomainSnapshotPrivate;</pre>
377520 </div>
378521 </div>
379522 </div>
380523 <div class="footer">
381524 <hr>
382 Generated by GTK-Doc V1.19</div>
525 Generated by GTK-Doc V1.21</div>
383526 </body>
384527 </html>
0 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>Libvirt-gconfig Reference Manual: GVirConfigInterface</title>
5 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
6 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
7 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
8 <link rel="prev" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">
9 <link rel="next" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
11 <link rel="stylesheet" href="style.css" type="text/css">
12 </head>
13 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirConfigInterface.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirConfigInterface.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
19 </td>
20 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
22 <td><a accesskey="p" href="GVirConfigDomainSnapshot.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23 <td><a accesskey="n" href="GVirConfigNetworkFilter.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24 </tr></table>
25 <div class="refentry">
26 <a name="GVirConfigInterface"></a><div class="titlepage"></div>
27 <div class="refnamediv"><table width="100%"><tr>
28 <td valign="top">
29 <h2><span class="refentrytitle"><a name="GVirConfigInterface.top_of_page"></a>GVirConfigInterface</span></h2>
30 <p>GVirConfigInterface</p>
31 </td>
32 <td class="gallery_image" valign="top" align="right"></td>
33 </tr></table></div>
34 <div class="refsect1">
35 <a name="GVirConfigInterface.functions"></a><h2>Functions</h2>
36 <div class="informaltable"><table width="100%" border="0">
37 <colgroup>
38 <col width="150px" class="functions_return">
39 <col class="functions_name">
40 </colgroup>
41 <tbody>
42 <tr>
43 <td class="function_type">
44 <a class="link" href="GVirConfigInterface.html" title="GVirConfigInterface"><span class="returnvalue">GVirConfigInterface</span></a> *
45 </td>
46 <td class="function_name">
47 <a class="link" href="GVirConfigInterface.html#gvir-config-interface-new" title="gvir_config_interface_new ()">gvir_config_interface_new</a> <span class="c_punctuation">()</span>
48 </td>
49 </tr>
50 <tr>
51 <td class="function_type">
52 <a class="link" href="GVirConfigInterface.html" title="GVirConfigInterface"><span class="returnvalue">GVirConfigInterface</span></a> *
53 </td>
54 <td class="function_name">
55 <a class="link" href="GVirConfigInterface.html#gvir-config-interface-new-from-xml" title="gvir_config_interface_new_from_xml ()">gvir_config_interface_new_from_xml</a> <span class="c_punctuation">()</span>
56 </td>
57 </tr>
58 </tbody>
59 </table></div>
60 </div>
61 <div class="refsect1">
62 <a name="GVirConfigInterface.other"></a><h2>Types and Values</h2>
63 <div class="informaltable"><table width="100%" border="0">
64 <colgroup>
65 <col width="150px" class="name">
66 <col class="description">
67 </colgroup>
68 <tbody>
69 <tr>
70 <td class="datatype_keyword">struct</td>
71 <td class="function_name"><a class="link" href="GVirConfigInterface.html#GVirConfigInterface-struct" title="struct GVirConfigInterface">GVirConfigInterface</a></td>
72 </tr>
73 <tr>
74 <td class="datatype_keyword">struct</td>
75 <td class="function_name"><a class="link" href="GVirConfigInterface.html#GVirConfigInterfaceClass" title="struct GVirConfigInterfaceClass">GVirConfigInterfaceClass</a></td>
76 </tr>
77 <tr>
78 <td class="datatype_keyword"> </td>
79 <td class="function_name"><a class="link" href="GVirConfigInterface.html#GVirConfigInterfacePrivate" title="GVirConfigInterfacePrivate">GVirConfigInterfacePrivate</a></td>
80 </tr>
81 </tbody>
82 </table></div>
83 </div>
84 <div class="refsect1">
85 <a name="GVirConfigInterface.object-hierarchy"></a><h2>Object Hierarchy</h2>
86 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
87 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
88 <span class="lineart">╰──</span> GVirConfigInterface
89 </pre>
90 </div>
91 <div class="refsect1">
92 <a name="GVirConfigInterface.description"></a><h2>Description</h2>
93 </div>
94 <div class="refsect1">
95 <a name="GVirConfigInterface.functions_details"></a><h2>Functions</h2>
96 <div class="refsect2">
97 <a name="gvir-config-interface-new"></a><h3>gvir_config_interface_new ()</h3>
98 <pre class="programlisting"><a class="link" href="GVirConfigInterface.html" title="GVirConfigInterface"><span class="returnvalue">GVirConfigInterface</span></a> *
99 gvir_config_interface_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
100 </div>
101 <hr>
102 <div class="refsect2">
103 <a name="gvir-config-interface-new-from-xml"></a><h3>gvir_config_interface_new_from_xml ()</h3>
104 <pre class="programlisting"><a class="link" href="GVirConfigInterface.html" title="GVirConfigInterface"><span class="returnvalue">GVirConfigInterface</span></a> *
105 gvir_config_interface_new_from_xml (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
106 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
107 </div>
108 </div>
109 <div class="refsect1">
110 <a name="GVirConfigInterface.other_details"></a><h2>Types and Values</h2>
111 <div class="refsect2">
112 <a name="GVirConfigInterface-struct"></a><h3>struct GVirConfigInterface</h3>
113 <pre class="programlisting">struct GVirConfigInterface;</pre>
114 </div>
115 <hr>
116 <div class="refsect2">
117 <a name="GVirConfigInterfaceClass"></a><h3>struct GVirConfigInterfaceClass</h3>
118 <pre class="programlisting">struct GVirConfigInterfaceClass {
119 GVirConfigObjectClass parent_class;
120
121 gpointer padding[20];
122 };
123 </pre>
124 </div>
125 <hr>
126 <div class="refsect2">
127 <a name="GVirConfigInterfacePrivate"></a><h3>GVirConfigInterfacePrivate</h3>
128 <pre class="programlisting">typedef struct _GVirConfigInterfacePrivate GVirConfigInterfacePrivate;</pre>
129 </div>
130 </div>
131 </div>
132 <div class="footer">
133 <hr>
134 Generated by GTK-Doc V1.21</div>
135 </body>
136 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirConfigNetwork</title>
4 <title>Libvirt-gconfig Reference Manual: GVirConfigNetwork</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter">
99 <link rel="next" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirConfigNetworkFilter.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gconfig Reference Manual</th>
20 <td><a accesskey="n" href="GVirConfigNodeDevice.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirConfigNetwork.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirConfigNetwork.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirConfigNetwork.object-hierarchy" class="shortcut">Object Hierarchy</a>
28 </td></tr>
29 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirConfigNetwork.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirConfigNetwork.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
19 </td>
20 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
22 <td><a accesskey="p" href="GVirConfigNetworkFilter.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23 <td><a accesskey="n" href="GVirConfigNodeDevice.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24 </tr></table>
3025 <div class="refentry">
3126 <a name="GVirConfigNetwork"></a><div class="titlepage"></div>
3227 <div class="refnamediv"><table width="100%"><tr>
3429 <h2><span class="refentrytitle"><a name="GVirConfigNetwork.top_of_page"></a>GVirConfigNetwork</span></h2>
3530 <p>GVirConfigNetwork</p>
3631 </td>
37 <td valign="top" align="right"></td>
32 <td class="gallery_image" valign="top" align="right"></td>
3833 </tr></table></div>
39 <div class="refsynopsisdiv">
40 <a name="GVirConfigNetwork.synopsis"></a><h2>Synopsis</h2>
41 <pre class="synopsis">struct <a class="link" href="GVirConfigNetwork.html#GVirConfigNetwork-struct" title="struct GVirConfigNetwork">GVirConfigNetwork</a>;
42 struct <a class="link" href="GVirConfigNetwork.html#GVirConfigNetworkClass" title="struct GVirConfigNetworkClass">GVirConfigNetworkClass</a>;
43 <a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork"><span class="returnvalue">GVirConfigNetwork</span></a> * <a class="link" href="GVirConfigNetwork.html#gvir-config-network-new" title="gvir_config_network_new ()">gvir_config_network_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
44 <a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork"><span class="returnvalue">GVirConfigNetwork</span></a> * <a class="link" href="GVirConfigNetwork.html#gvir-config-network-new-from-xml" title="gvir_config_network_new_from_xml ()">gvir_config_network_new_from_xml</a> (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
45 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
46 </pre>
34 <div class="refsect1">
35 <a name="GVirConfigNetwork.functions"></a><h2>Functions</h2>
36 <div class="informaltable"><table width="100%" border="0">
37 <colgroup>
38 <col width="150px" class="functions_return">
39 <col class="functions_name">
40 </colgroup>
41 <tbody>
42 <tr>
43 <td class="function_type">
44 <a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork"><span class="returnvalue">GVirConfigNetwork</span></a> *
45 </td>
46 <td class="function_name">
47 <a class="link" href="GVirConfigNetwork.html#gvir-config-network-new" title="gvir_config_network_new ()">gvir_config_network_new</a> <span class="c_punctuation">()</span>
48 </td>
49 </tr>
50 <tr>
51 <td class="function_type">
52 <a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork"><span class="returnvalue">GVirConfigNetwork</span></a> *
53 </td>
54 <td class="function_name">
55 <a class="link" href="GVirConfigNetwork.html#gvir-config-network-new-from-xml" title="gvir_config_network_new_from_xml ()">gvir_config_network_new_from_xml</a> <span class="c_punctuation">()</span>
56 </td>
57 </tr>
58 </tbody>
59 </table></div>
60 </div>
61 <div class="refsect1">
62 <a name="GVirConfigNetwork.other"></a><h2>Types and Values</h2>
63 <div class="informaltable"><table width="100%" border="0">
64 <colgroup>
65 <col width="150px" class="name">
66 <col class="description">
67 </colgroup>
68 <tbody>
69 <tr>
70 <td class="datatype_keyword">struct</td>
71 <td class="function_name"><a class="link" href="GVirConfigNetwork.html#GVirConfigNetwork-struct" title="struct GVirConfigNetwork">GVirConfigNetwork</a></td>
72 </tr>
73 <tr>
74 <td class="datatype_keyword">struct</td>
75 <td class="function_name"><a class="link" href="GVirConfigNetwork.html#GVirConfigNetworkClass" title="struct GVirConfigNetworkClass">GVirConfigNetworkClass</a></td>
76 </tr>
77 <tr>
78 <td class="datatype_keyword"> </td>
79 <td class="function_name"><a class="link" href="GVirConfigNetwork.html#GVirConfigNetworkPrivate" title="GVirConfigNetworkPrivate">GVirConfigNetworkPrivate</a></td>
80 </tr>
81 </tbody>
82 </table></div>
4783 </div>
4884 <div class="refsect1">
4985 <a name="GVirConfigNetwork.object-hierarchy"></a><h2>Object Hierarchy</h2>
50 <pre class="synopsis">
51 GObject
52 +----<a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
53 +----GVirConfigNetwork
86 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
87 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
88 <span class="lineart">╰──</span> GVirConfigNetwork
5489 </pre>
5590 </div>
5691 <div class="refsect1">
5792 <a name="GVirConfigNetwork.description"></a><h2>Description</h2>
5893 </div>
5994 <div class="refsect1">
60 <a name="GVirConfigNetwork.details"></a><h2>Details</h2>
95 <a name="GVirConfigNetwork.functions_details"></a><h2>Functions</h2>
96 <div class="refsect2">
97 <a name="gvir-config-network-new"></a><h3>gvir_config_network_new ()</h3>
98 <pre class="programlisting"><a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork"><span class="returnvalue">GVirConfigNetwork</span></a> *
99 gvir_config_network_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
100 </div>
101 <hr>
102 <div class="refsect2">
103 <a name="gvir-config-network-new-from-xml"></a><h3>gvir_config_network_new_from_xml ()</h3>
104 <pre class="programlisting"><a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork"><span class="returnvalue">GVirConfigNetwork</span></a> *
105 gvir_config_network_new_from_xml (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
106 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
107 </div>
108 </div>
109 <div class="refsect1">
110 <a name="GVirConfigNetwork.other_details"></a><h2>Types and Values</h2>
61111 <div class="refsect2">
62112 <a name="GVirConfigNetwork-struct"></a><h3>struct GVirConfigNetwork</h3>
63113 <pre class="programlisting">struct GVirConfigNetwork;</pre>
74124 </div>
75125 <hr>
76126 <div class="refsect2">
77 <a name="gvir-config-network-new"></a><h3>gvir_config_network_new ()</h3>
78 <pre class="programlisting"><a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork"><span class="returnvalue">GVirConfigNetwork</span></a> * gvir_config_network_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
79 </div>
80 <hr>
81 <div class="refsect2">
82 <a name="gvir-config-network-new-from-xml"></a><h3>gvir_config_network_new_from_xml ()</h3>
83 <pre class="programlisting"><a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork"><span class="returnvalue">GVirConfigNetwork</span></a> * gvir_config_network_new_from_xml (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
84 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
127 <a name="GVirConfigNetworkPrivate"></a><h3>GVirConfigNetworkPrivate</h3>
128 <pre class="programlisting">typedef struct _GVirConfigNetworkPrivate GVirConfigNetworkPrivate;</pre>
85129 </div>
86130 </div>
87131 </div>
88132 <div class="footer">
89133 <hr>
90 Generated by GTK-Doc V1.19</div>
134 Generated by GTK-Doc V1.21</div>
91135 </body>
92136 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirConfigNetworkFilter</title>
4 <title>Libvirt-gconfig Reference Manual: GVirConfigNetworkFilter</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
8 <link rel="prev" href="Libvirt-gconfig-GVirConfig.html" title="GVirConfig">
8 <link rel="prev" href="GVirConfigInterface.html" title="GVirConfigInterface">
99 <link rel="next" href="GVirConfigNetwork.html" title="GVirConfigNetwork">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="Libvirt-gconfig-GVirConfig.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gconfig Reference Manual</th>
20 <td><a accesskey="n" href="GVirConfigNetwork.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirConfigNetworkFilter.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirConfigNetworkFilter.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirConfigNetworkFilter.object-hierarchy" class="shortcut">Object Hierarchy</a>
28 </td></tr>
29 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirConfigNetworkFilter.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirConfigNetworkFilter.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
19 </td>
20 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
22 <td><a accesskey="p" href="GVirConfigInterface.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23 <td><a accesskey="n" href="GVirConfigNetwork.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24 </tr></table>
3025 <div class="refentry">
3126 <a name="GVirConfigNetworkFilter"></a><div class="titlepage"></div>
3227 <div class="refnamediv"><table width="100%"><tr>
3429 <h2><span class="refentrytitle"><a name="GVirConfigNetworkFilter.top_of_page"></a>GVirConfigNetworkFilter</span></h2>
3530 <p>GVirConfigNetworkFilter</p>
3631 </td>
37 <td valign="top" align="right"></td>
32 <td class="gallery_image" valign="top" align="right"></td>
3833 </tr></table></div>
39 <div class="refsynopsisdiv">
40 <a name="GVirConfigNetworkFilter.synopsis"></a><h2>Synopsis</h2>
41 <pre class="synopsis">struct <a class="link" href="GVirConfigNetworkFilter.html#GVirConfigNetworkFilter-struct" title="struct GVirConfigNetworkFilter">GVirConfigNetworkFilter</a>;
42 struct <a class="link" href="GVirConfigNetworkFilter.html#GVirConfigNetworkFilterClass" title="struct GVirConfigNetworkFilterClass">GVirConfigNetworkFilterClass</a>;
43 <a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter"><span class="returnvalue">GVirConfigNetworkFilter</span></a> * <a class="link" href="GVirConfigNetworkFilter.html#gvir-config-network-filter-new" title="gvir_config_network_filter_new ()">gvir_config_network_filter_new</a>
44 (<em class="parameter"><code><span class="type">void</span></code></em>);
45 <a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter"><span class="returnvalue">GVirConfigNetworkFilter</span></a> * <a class="link" href="GVirConfigNetworkFilter.html#gvir-config-network-filter-new-from-xml" title="gvir_config_network_filter_new_from_xml ()">gvir_config_network_filter_new_from_xml</a>
46 (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
47 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
48 </pre>
34 <div class="refsect1">
35 <a name="GVirConfigNetworkFilter.functions"></a><h2>Functions</h2>
36 <div class="informaltable"><table width="100%" border="0">
37 <colgroup>
38 <col width="150px" class="functions_return">
39 <col class="functions_name">
40 </colgroup>
41 <tbody>
42 <tr>
43 <td class="function_type">
44 <a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter"><span class="returnvalue">GVirConfigNetworkFilter</span></a> *
45 </td>
46 <td class="function_name">
47 <a class="link" href="GVirConfigNetworkFilter.html#gvir-config-network-filter-new" title="gvir_config_network_filter_new ()">gvir_config_network_filter_new</a> <span class="c_punctuation">()</span>
48 </td>
49 </tr>
50 <tr>
51 <td class="function_type">
52 <a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter"><span class="returnvalue">GVirConfigNetworkFilter</span></a> *
53 </td>
54 <td class="function_name">
55 <a class="link" href="GVirConfigNetworkFilter.html#gvir-config-network-filter-new-from-xml" title="gvir_config_network_filter_new_from_xml ()">gvir_config_network_filter_new_from_xml</a> <span class="c_punctuation">()</span>
56 </td>
57 </tr>
58 </tbody>
59 </table></div>
60 </div>
61 <div class="refsect1">
62 <a name="GVirConfigNetworkFilter.other"></a><h2>Types and Values</h2>
63 <div class="informaltable"><table width="100%" border="0">
64 <colgroup>
65 <col width="150px" class="name">
66 <col class="description">
67 </colgroup>
68 <tbody>
69 <tr>
70 <td class="datatype_keyword">struct</td>
71 <td class="function_name"><a class="link" href="GVirConfigNetworkFilter.html#GVirConfigNetworkFilter-struct" title="struct GVirConfigNetworkFilter">GVirConfigNetworkFilter</a></td>
72 </tr>
73 <tr>
74 <td class="datatype_keyword">struct</td>
75 <td class="function_name"><a class="link" href="GVirConfigNetworkFilter.html#GVirConfigNetworkFilterClass" title="struct GVirConfigNetworkFilterClass">GVirConfigNetworkFilterClass</a></td>
76 </tr>
77 <tr>
78 <td class="datatype_keyword"> </td>
79 <td class="function_name"><a class="link" href="GVirConfigNetworkFilter.html#GVirConfigNetworkFilterPrivate" title="GVirConfigNetworkFilterPrivate">GVirConfigNetworkFilterPrivate</a></td>
80 </tr>
81 </tbody>
82 </table></div>
4983 </div>
5084 <div class="refsect1">
5185 <a name="GVirConfigNetworkFilter.object-hierarchy"></a><h2>Object Hierarchy</h2>
52 <pre class="synopsis">
53 GObject
54 +----<a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
55 +----GVirConfigNetworkFilter
86 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
87 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
88 <span class="lineart">╰──</span> GVirConfigNetworkFilter
5689 </pre>
5790 </div>
5891 <div class="refsect1">
5992 <a name="GVirConfigNetworkFilter.description"></a><h2>Description</h2>
6093 </div>
6194 <div class="refsect1">
62 <a name="GVirConfigNetworkFilter.details"></a><h2>Details</h2>
95 <a name="GVirConfigNetworkFilter.functions_details"></a><h2>Functions</h2>
96 <div class="refsect2">
97 <a name="gvir-config-network-filter-new"></a><h3>gvir_config_network_filter_new ()</h3>
98 <pre class="programlisting"><a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter"><span class="returnvalue">GVirConfigNetworkFilter</span></a> *
99 gvir_config_network_filter_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
100 </div>
101 <hr>
102 <div class="refsect2">
103 <a name="gvir-config-network-filter-new-from-xml"></a><h3>gvir_config_network_filter_new_from_xml ()</h3>
104 <pre class="programlisting"><a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter"><span class="returnvalue">GVirConfigNetworkFilter</span></a> *
105 gvir_config_network_filter_new_from_xml
106 (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
107 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
108 </div>
109 </div>
110 <div class="refsect1">
111 <a name="GVirConfigNetworkFilter.other_details"></a><h2>Types and Values</h2>
63112 <div class="refsect2">
64113 <a name="GVirConfigNetworkFilter-struct"></a><h3>struct GVirConfigNetworkFilter</h3>
65114 <pre class="programlisting">struct GVirConfigNetworkFilter;</pre>
76125 </div>
77126 <hr>
78127 <div class="refsect2">
79 <a name="gvir-config-network-filter-new"></a><h3>gvir_config_network_filter_new ()</h3>
80 <pre class="programlisting"><a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter"><span class="returnvalue">GVirConfigNetworkFilter</span></a> * gvir_config_network_filter_new
81 (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
82 </div>
83 <hr>
84 <div class="refsect2">
85 <a name="gvir-config-network-filter-new-from-xml"></a><h3>gvir_config_network_filter_new_from_xml ()</h3>
86 <pre class="programlisting"><a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter"><span class="returnvalue">GVirConfigNetworkFilter</span></a> * gvir_config_network_filter_new_from_xml
87 (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
88 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
128 <a name="GVirConfigNetworkFilterPrivate"></a><h3>GVirConfigNetworkFilterPrivate</h3>
129 <pre class="programlisting">typedef struct _GVirConfigNetworkFilterPrivate GVirConfigNetworkFilterPrivate;</pre>
89130 </div>
90131 </div>
91132 </div>
92133 <div class="footer">
93134 <hr>
94 Generated by GTK-Doc V1.19</div>
135 Generated by GTK-Doc V1.21</div>
95136 </body>
96137 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirConfigNodeDevice</title>
4 <title>Libvirt-gconfig Reference Manual: GVirConfigNodeDevice</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigNetwork.html" title="GVirConfigNetwork">
99 <link rel="next" href="GVirConfigSecret.html" title="GVirConfigSecret">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirConfigNetwork.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gconfig Reference Manual</th>
20 <td><a accesskey="n" href="GVirConfigSecret.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirConfigNodeDevice.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirConfigNodeDevice.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirConfigNodeDevice.object-hierarchy" class="shortcut">Object Hierarchy</a>
28 </td></tr>
29 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirConfigNodeDevice.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirConfigNodeDevice.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
19 </td>
20 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
22 <td><a accesskey="p" href="GVirConfigNetwork.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23 <td><a accesskey="n" href="GVirConfigSecret.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24 </tr></table>
3025 <div class="refentry">
3126 <a name="GVirConfigNodeDevice"></a><div class="titlepage"></div>
3227 <div class="refnamediv"><table width="100%"><tr>
3429 <h2><span class="refentrytitle"><a name="GVirConfigNodeDevice.top_of_page"></a>GVirConfigNodeDevice</span></h2>
3530 <p>GVirConfigNodeDevice</p>
3631 </td>
37 <td valign="top" align="right"></td>
32 <td class="gallery_image" valign="top" align="right"></td>
3833 </tr></table></div>
39 <div class="refsynopsisdiv">
40 <a name="GVirConfigNodeDevice.synopsis"></a><h2>Synopsis</h2>
41 <pre class="synopsis">struct <a class="link" href="GVirConfigNodeDevice.html#GVirConfigNodeDevice-struct" title="struct GVirConfigNodeDevice">GVirConfigNodeDevice</a>;
42 struct <a class="link" href="GVirConfigNodeDevice.html#GVirConfigNodeDeviceClass" title="struct GVirConfigNodeDeviceClass">GVirConfigNodeDeviceClass</a>;
43 <a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice"><span class="returnvalue">GVirConfigNodeDevice</span></a> * <a class="link" href="GVirConfigNodeDevice.html#gvir-config-node-device-new" title="gvir_config_node_device_new ()">gvir_config_node_device_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
44 <a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice"><span class="returnvalue">GVirConfigNodeDevice</span></a> * <a class="link" href="GVirConfigNodeDevice.html#gvir-config-node-device-new-from-xml" title="gvir_config_node_device_new_from_xml ()">gvir_config_node_device_new_from_xml</a>
45 (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
46 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
47 </pre>
34 <div class="refsect1">
35 <a name="GVirConfigNodeDevice.functions"></a><h2>Functions</h2>
36 <div class="informaltable"><table width="100%" border="0">
37 <colgroup>
38 <col width="150px" class="functions_return">
39 <col class="functions_name">
40 </colgroup>
41 <tbody>
42 <tr>
43 <td class="function_type">
44 <a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice"><span class="returnvalue">GVirConfigNodeDevice</span></a> *
45 </td>
46 <td class="function_name">
47 <a class="link" href="GVirConfigNodeDevice.html#gvir-config-node-device-new" title="gvir_config_node_device_new ()">gvir_config_node_device_new</a> <span class="c_punctuation">()</span>
48 </td>
49 </tr>
50 <tr>
51 <td class="function_type">
52 <a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice"><span class="returnvalue">GVirConfigNodeDevice</span></a> *
53 </td>
54 <td class="function_name">
55 <a class="link" href="GVirConfigNodeDevice.html#gvir-config-node-device-new-from-xml" title="gvir_config_node_device_new_from_xml ()">gvir_config_node_device_new_from_xml</a> <span class="c_punctuation">()</span>
56 </td>
57 </tr>
58 </tbody>
59 </table></div>
60 </div>
61 <div class="refsect1">
62 <a name="GVirConfigNodeDevice.other"></a><h2>Types and Values</h2>
63 <div class="informaltable"><table width="100%" border="0">
64 <colgroup>
65 <col width="150px" class="name">
66 <col class="description">
67 </colgroup>
68 <tbody>
69 <tr>
70 <td class="datatype_keyword">struct</td>
71 <td class="function_name"><a class="link" href="GVirConfigNodeDevice.html#GVirConfigNodeDevice-struct" title="struct GVirConfigNodeDevice">GVirConfigNodeDevice</a></td>
72 </tr>
73 <tr>
74 <td class="datatype_keyword">struct</td>
75 <td class="function_name"><a class="link" href="GVirConfigNodeDevice.html#GVirConfigNodeDeviceClass" title="struct GVirConfigNodeDeviceClass">GVirConfigNodeDeviceClass</a></td>
76 </tr>
77 <tr>
78 <td class="datatype_keyword"> </td>
79 <td class="function_name"><a class="link" href="GVirConfigNodeDevice.html#GVirConfigNodeDevicePrivate" title="GVirConfigNodeDevicePrivate">GVirConfigNodeDevicePrivate</a></td>
80 </tr>
81 </tbody>
82 </table></div>
4883 </div>
4984 <div class="refsect1">
5085 <a name="GVirConfigNodeDevice.object-hierarchy"></a><h2>Object Hierarchy</h2>
51 <pre class="synopsis">
52 GObject
53 +----<a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
54 +----GVirConfigNodeDevice
86 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
87 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
88 <span class="lineart">╰──</span> GVirConfigNodeDevice
5589 </pre>
5690 </div>
5791 <div class="refsect1">
5892 <a name="GVirConfigNodeDevice.description"></a><h2>Description</h2>
5993 </div>
6094 <div class="refsect1">
61 <a name="GVirConfigNodeDevice.details"></a><h2>Details</h2>
95 <a name="GVirConfigNodeDevice.functions_details"></a><h2>Functions</h2>
96 <div class="refsect2">
97 <a name="gvir-config-node-device-new"></a><h3>gvir_config_node_device_new ()</h3>
98 <pre class="programlisting"><a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice"><span class="returnvalue">GVirConfigNodeDevice</span></a> *
99 gvir_config_node_device_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
100 </div>
101 <hr>
102 <div class="refsect2">
103 <a name="gvir-config-node-device-new-from-xml"></a><h3>gvir_config_node_device_new_from_xml ()</h3>
104 <pre class="programlisting"><a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice"><span class="returnvalue">GVirConfigNodeDevice</span></a> *
105 gvir_config_node_device_new_from_xml (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
106 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
107 </div>
108 </div>
109 <div class="refsect1">
110 <a name="GVirConfigNodeDevice.other_details"></a><h2>Types and Values</h2>
62111 <div class="refsect2">
63112 <a name="GVirConfigNodeDevice-struct"></a><h3>struct GVirConfigNodeDevice</h3>
64113 <pre class="programlisting">struct GVirConfigNodeDevice;</pre>
75124 </div>
76125 <hr>
77126 <div class="refsect2">
78 <a name="gvir-config-node-device-new"></a><h3>gvir_config_node_device_new ()</h3>
79 <pre class="programlisting"><a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice"><span class="returnvalue">GVirConfigNodeDevice</span></a> * gvir_config_node_device_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
80 </div>
81 <hr>
82 <div class="refsect2">
83 <a name="gvir-config-node-device-new-from-xml"></a><h3>gvir_config_node_device_new_from_xml ()</h3>
84 <pre class="programlisting"><a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice"><span class="returnvalue">GVirConfigNodeDevice</span></a> * gvir_config_node_device_new_from_xml
85 (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
86 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
127 <a name="GVirConfigNodeDevicePrivate"></a><h3>GVirConfigNodeDevicePrivate</h3>
128 <pre class="programlisting">typedef struct _GVirConfigNodeDevicePrivate GVirConfigNodeDevicePrivate;</pre>
87129 </div>
88130 </div>
89131 </div>
90132 <div class="footer">
91133 <hr>
92 Generated by GTK-Doc V1.19</div>
134 Generated by GTK-Doc V1.21</div>
93135 </body>
94136 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirConfigObject</title>
4 <title>Libvirt-gconfig Reference Manual: GVirConfigObject</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="ch01.html" title="Libvirt-gconfig">
99 <link rel="next" href="GVirConfigDomain.html" title="GVirConfigDomain">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="ch01.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gconfig Reference Manual</th>
20 <td><a accesskey="n" href="GVirConfigDomain.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirConfigObject.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirConfigObject.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirConfigObject.object-hierarchy" class="shortcut">Object Hierarchy</a>
28  | 
29 <a href="#GVirConfigObject.properties" class="shortcut">Properties</a>
30 </td></tr>
31 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirConfigObject.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirConfigObject.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
19 <a href="#GVirConfigObject.properties" class="shortcut">Properties</a></span>
20 </td>
21 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23 <td><a accesskey="p" href="ch01.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24 <td><a accesskey="n" href="GVirConfigDomain.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25 </tr></table>
3226 <div class="refentry">
3327 <a name="GVirConfigObject"></a><div class="titlepage"></div>
3428 <div class="refnamediv"><table width="100%"><tr>
3630 <h2><span class="refentrytitle"><a name="GVirConfigObject.top_of_page"></a>GVirConfigObject</span></h2>
3731 <p>GVirConfigObject</p>
3832 </td>
39 <td valign="top" align="right"></td>
33 <td class="gallery_image" valign="top" align="right"></td>
4034 </tr></table></div>
41 <div class="refsynopsisdiv">
42 <a name="GVirConfigObject.synopsis"></a><h2>Synopsis</h2>
43 <pre class="synopsis">struct <a class="link" href="GVirConfigObject.html#GVirConfigObject-struct" title="struct GVirConfigObject">GVirConfigObject</a>;
44 struct <a class="link" href="GVirConfigObject.html#GVirConfigObjectClass" title="struct GVirConfigObjectClass">GVirConfigObjectClass</a>;
45 <a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="returnvalue">GVirConfigObject</span></a> * <a class="link" href="GVirConfigObject.html#gvir-config-object-new" title="gvir_config_object_new ()">gvir_config_object_new</a> (<em class="parameter"><code><span class="type">GType</span> type</code></em>,
46 <em class="parameter"><code>const <span class="type">char</span> *root_name</code></em>,
47 <em class="parameter"><code>const <span class="type">char</span> *schema</code></em>);
48 <a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="returnvalue">GVirConfigObject</span></a> * <a class="link" href="GVirConfigObject.html#gvir-config-object-new-from-xml" title="gvir_config_object_new_from_xml ()">gvir_config_object_new_from_xml</a> (<em class="parameter"><code><span class="type">GType</span> type</code></em>,
49 <em class="parameter"><code>const <span class="type">char</span> *root_name</code></em>,
50 <em class="parameter"><code>const <span class="type">char</span> *schema</code></em>,
51 <em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
52 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
53 <span class="returnvalue">void</span> <a class="link" href="GVirConfigObject.html#gvir-config-object-validate" title="gvir_config_object_validate ()">gvir_config_object_validate</a> (<em class="parameter"><code><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="type">GVirConfigObject</span></a> *config</code></em>,
54 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
55 <span class="returnvalue">gchar</span> * <a class="link" href="GVirConfigObject.html#gvir-config-object-to-xml" title="gvir_config_object_to_xml ()">gvir_config_object_to_xml</a> (<em class="parameter"><code><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="type">GVirConfigObject</span></a> *config</code></em>);
56 const <span class="returnvalue">gchar</span> * <a class="link" href="GVirConfigObject.html#gvir-config-object-get-schema" title="gvir_config_object_get_schema ()">gvir_config_object_get_schema</a> (<em class="parameter"><code><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="type">GVirConfigObject</span></a> *config</code></em>);
35 <div class="refsect1">
36 <a name="GVirConfigObject.functions"></a><h2>Functions</h2>
37 <div class="informaltable"><table width="100%" border="0">
38 <colgroup>
39 <col width="150px" class="functions_return">
40 <col class="functions_name">
41 </colgroup>
42 <tbody>
43 <tr>
44 <td class="function_type">
45 <a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="returnvalue">GVirConfigObject</span></a> *
46 </td>
47 <td class="function_name">
48 <a class="link" href="GVirConfigObject.html#gvir-config-object-new" title="gvir_config_object_new ()">gvir_config_object_new</a> <span class="c_punctuation">()</span>
49 </td>
50 </tr>
51 <tr>
52 <td class="function_type">
53 <a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="returnvalue">GVirConfigObject</span></a> *
54 </td>
55 <td class="function_name">
56 <a class="link" href="GVirConfigObject.html#gvir-config-object-new-from-xml" title="gvir_config_object_new_from_xml ()">gvir_config_object_new_from_xml</a> <span class="c_punctuation">()</span>
57 </td>
58 </tr>
59 <tr>
60 <td class="function_type">
61 <span class="returnvalue">void</span>
62 </td>
63 <td class="function_name">
64 <a class="link" href="GVirConfigObject.html#gvir-config-object-validate" title="gvir_config_object_validate ()">gvir_config_object_validate</a> <span class="c_punctuation">()</span>
65 </td>
66 </tr>
67 <tr>
68 <td class="function_type">
69 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
70 </td>
71 <td class="function_name">
72 <a class="link" href="GVirConfigObject.html#gvir-config-object-to-xml" title="gvir_config_object_to_xml ()">gvir_config_object_to_xml</a> <span class="c_punctuation">()</span>
73 </td>
74 </tr>
75 <tr>
76 <td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
77 </td>
78 <td class="function_name">
79 <a class="link" href="GVirConfigObject.html#gvir-config-object-get-schema" title="gvir_config_object_get_schema ()">gvir_config_object_get_schema</a> <span class="c_punctuation">()</span>
80 </td>
81 </tr>
82 </tbody>
83 </table></div>
84 </div>
85 <div class="refsect1">
86 <a name="GVirConfigObject.properties"></a><h2>Properties</h2>
87 <div class="informaltable"><table border="0">
88 <colgroup>
89 <col width="150px" class="properties_type">
90 <col width="300px" class="properties_name">
91 <col width="200px" class="properties_flags">
92 </colgroup>
93 <tbody>
94 <tr>
95 <td class="property_type">
96 <span class="type">GVirConfigXmlDoc</span> *</td>
97 <td class="property_name"><a class="link" href="GVirConfigObject.html#GVirConfigObject--doc" title="The “doc” property">doc</a></td>
98 <td class="property_flags">Read / Write / Construct Only</td>
99 </tr>
100 <tr>
101 <td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a></td>
102 <td class="property_name"><a class="link" href="GVirConfigObject.html#GVirConfigObject--node" title="The “node” property">node</a></td>
103 <td class="property_flags">Read / Write / Construct Only</td>
104 </tr>
105 <tr>
106 <td class="property_type">
107 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
108 <td class="property_name"><a class="link" href="GVirConfigObject.html#GVirConfigObject--schema" title="The “schema” property">schema</a></td>
109 <td class="property_flags">Read / Write / Construct Only</td>
110 </tr>
111 </tbody>
112 </table></div>
113 </div>
114 <div class="refsect1">
115 <a name="GVirConfigObject.other"></a><h2>Types and Values</h2>
116 <div class="informaltable"><table width="100%" border="0">
117 <colgroup>
118 <col width="150px" class="name">
119 <col class="description">
120 </colgroup>
121 <tbody>
122 <tr>
123 <td class="datatype_keyword">struct</td>
124 <td class="function_name"><a class="link" href="GVirConfigObject.html#GVirConfigObject-struct" title="struct GVirConfigObject">GVirConfigObject</a></td>
125 </tr>
126 <tr>
127 <td class="datatype_keyword">struct</td>
128 <td class="function_name"><a class="link" href="GVirConfigObject.html#GVirConfigObjectClass" title="struct GVirConfigObjectClass">GVirConfigObjectClass</a></td>
129 </tr>
130 <tr>
131 <td class="datatype_keyword"> </td>
132 <td class="function_name"><a class="link" href="GVirConfigObject.html#GVirConfigObjectPrivate" title="GVirConfigObjectPrivate">GVirConfigObjectPrivate</a></td>
133 </tr>
134 </tbody>
135 </table></div>
136 </div>
137 <div class="refsect1">
138 <a name="GVirConfigObject.object-hierarchy"></a><h2>Object Hierarchy</h2>
139 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
140 <span class="lineart">╰──</span> GVirConfigObject
141 <span class="lineart">├──</span> GVirConfigCapabilitiesCpuFeature
142 <span class="lineart">├──</span> GVirConfigCapabilitiesCpu
143 <span class="lineart">├──</span> GVirConfigCapabilitiesCpuModel
144 <span class="lineart">├──</span> GVirConfigCapabilitiesCpuTopology
145 <span class="lineart">├──</span> <a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities">GVirConfigCapabilities</a>
146 <span class="lineart">├──</span> GVirConfigCapabilitiesGuestArch
147 <span class="lineart">├──</span> GVirConfigCapabilitiesGuestDomain
148 <span class="lineart">├──</span> GVirConfigCapabilitiesGuestFeature
149 <span class="lineart">├──</span> GVirConfigCapabilitiesGuest
150 <span class="lineart">├──</span> GVirConfigCapabilitiesHost
151 <span class="lineart">├──</span> GVirConfigCapabilitiesHostSecModel
152 <span class="lineart">├──</span> GVirConfigDomainAddress
153 <span class="lineart">├──</span> GVirConfigDomainDevice
154 <span class="lineart">├──</span> GVirConfigDomainChardevSource
155 <span class="lineart">├──</span> GVirConfigDomainClock
156 <span class="lineart">├──</span> GVirConfigDomainDiskDriver
157 <span class="lineart">├──</span> <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
158 <span class="lineart">├──</span> GVirConfigDomainInterfaceFilterref
159 <span class="lineart">├──</span> GVirConfigDomainInterfaceFilterrefParameter
160 <span class="lineart">├──</span> GVirConfigDomainOs
161 <span class="lineart">├──</span> GVirConfigDomainPowerManagement
162 <span class="lineart">├──</span> GVirConfigDomainSeclabel
163 <span class="lineart">├──</span> GVirConfigDomainSnapshotDisk
164 <span class="lineart">├──</span> <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
165 <span class="lineart">├──</span> GVirConfigDomainTimer
166 <span class="lineart">├──</span> <a class="link" href="GVirConfigInterface.html" title="GVirConfigInterface">GVirConfigInterface</a>
167 <span class="lineart">├──</span> <a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter">GVirConfigNetworkFilter</a>
168 <span class="lineart">├──</span> <a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork">GVirConfigNetwork</a>
169 <span class="lineart">├──</span> <a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice">GVirConfigNodeDevice</a>
170 <span class="lineart">├──</span> <a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret">GVirConfigSecret</a>
171 <span class="lineart">├──</span> GVirConfigStoragePermissions
172 <span class="lineart">├──</span> <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
173 <span class="lineart">├──</span> GVirConfigStoragePoolSource
174 <span class="lineart">├──</span> GVirConfigStoragePoolTarget
175 <span class="lineart">├──</span> GVirConfigStorageVolBackingStore
176 <span class="lineart">├──</span> <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
177 <span class="lineart">╰──</span> GVirConfigStorageVolTarget
57178 </pre>
58179 </div>
59180 <div class="refsect1">
60 <a name="GVirConfigObject.object-hierarchy"></a><h2>Object Hierarchy</h2>
61 <pre class="synopsis">
62 GObject
63 +----GVirConfigObject
64 +----GVirConfigCapabilitiesCpuFeature
65 +----GVirConfigCapabilitiesCpu
66 +----GVirConfigCapabilitiesCpuTopology
67 +----<a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities">GVirConfigCapabilities</a>
68 +----GVirConfigCapabilitiesGuestArch
69 +----GVirConfigCapabilitiesGuestDomain
70 +----GVirConfigCapabilitiesGuestFeature
71 +----GVirConfigCapabilitiesGuest
72 +----GVirConfigCapabilitiesHost
73 +----GVirConfigDomainAddress
74 +----GVirConfigDomainDevice
75 +----GVirConfigDomainChardevSource
76 +----GVirConfigDomainClock
77 +----<a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
78 +----GVirConfigDomainOs
79 +----GVirConfigDomainPowerManagement
80 +----GVirConfigDomainSeclabel
81 +----GVirConfigDomainSnapshotDisk
82 +----<a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
83 +----GVirConfigDomainTimer
84 +----<a class="link" href="Libvirt-gconfig-GVirConfig.html#GVirConfigInterface">GVirConfigInterface</a>
85 +----<a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter">GVirConfigNetworkFilter</a>
86 +----<a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork">GVirConfigNetwork</a>
87 +----<a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice">GVirConfigNodeDevice</a>
88 +----<a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret">GVirConfigSecret</a>
89 +----GVirConfigStoragePermissions
90 +----<a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
91 +----GVirConfigStoragePoolSource
92 +----GVirConfigStoragePoolTarget
93 +----GVirConfigStorageVolBackingStore
94 +----<a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
95 +----GVirConfigStorageVolTarget
96 </pre>
97 </div>
98 <div class="refsect1">
99 <a name="GVirConfigObject.properties"></a><h2>Properties</h2>
100 <pre class="synopsis">
101 "<a class="link" href="GVirConfigObject.html#GVirConfigObject--doc" title='The "doc" property'>doc</a>" <span class="type">GVirConfigXmlDoc</span>* : Read / Write / Construct Only
102 "<a class="link" href="GVirConfigObject.html#GVirConfigObject--node" title='The "node" property'>node</a>" <span class="type">gpointer</span> : Read / Write / Construct Only
103 "<a class="link" href="GVirConfigObject.html#GVirConfigObject--schema" title='The "schema" property'>schema</a>" <span class="type">gchar</span>* : Read / Write / Construct Only
104 </pre>
105 </div>
106 <div class="refsect1">
107181 <a name="GVirConfigObject.description"></a><h2>Description</h2>
108182 </div>
109183 <div class="refsect1">
110 <a name="GVirConfigObject.details"></a><h2>Details</h2>
184 <a name="GVirConfigObject.functions_details"></a><h2>Functions</h2>
185 <div class="refsect2">
186 <a name="gvir-config-object-new"></a><h3>gvir_config_object_new ()</h3>
187 <pre class="programlisting"><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="returnvalue">GVirConfigObject</span></a> *
188 gvir_config_object_new (<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> type</code></em>,
189 <em class="parameter"><code>const <span class="type">char</span> *root_name</code></em>,
190 <em class="parameter"><code>const <span class="type">char</span> *schema</code></em>);</pre>
191 </div>
192 <hr>
193 <div class="refsect2">
194 <a name="gvir-config-object-new-from-xml"></a><h3>gvir_config_object_new_from_xml ()</h3>
195 <pre class="programlisting"><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="returnvalue">GVirConfigObject</span></a> *
196 gvir_config_object_new_from_xml (<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> type</code></em>,
197 <em class="parameter"><code>const <span class="type">char</span> *root_name</code></em>,
198 <em class="parameter"><code>const <span class="type">char</span> *schema</code></em>,
199 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
200 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
201 </div>
202 <hr>
203 <div class="refsect2">
204 <a name="gvir-config-object-validate"></a><h3>gvir_config_object_validate ()</h3>
205 <pre class="programlisting"><span class="returnvalue">void</span>
206 gvir_config_object_validate (<em class="parameter"><code><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="type">GVirConfigObject</span></a> *config</code></em>,
207 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
208 </div>
209 <hr>
210 <div class="refsect2">
211 <a name="gvir-config-object-to-xml"></a><h3>gvir_config_object_to_xml ()</h3>
212 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
213 gvir_config_object_to_xml (<em class="parameter"><code><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="type">GVirConfigObject</span></a> *config</code></em>);</pre>
214 </div>
215 <hr>
216 <div class="refsect2">
217 <a name="gvir-config-object-get-schema"></a><h3>gvir_config_object_get_schema ()</h3>
218 <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
219 gvir_config_object_get_schema (<em class="parameter"><code><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="type">GVirConfigObject</span></a> *config</code></em>);</pre>
220 </div>
221 </div>
222 <div class="refsect1">
223 <a name="GVirConfigObject.other_details"></a><h2>Types and Values</h2>
111224 <div class="refsect2">
112225 <a name="GVirConfigObject-struct"></a><h3>struct GVirConfigObject</h3>
113226 <pre class="programlisting">struct GVirConfigObject;</pre>
124237 </div>
125238 <hr>
126239 <div class="refsect2">
127 <a name="gvir-config-object-new"></a><h3>gvir_config_object_new ()</h3>
128 <pre class="programlisting"><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="returnvalue">GVirConfigObject</span></a> * gvir_config_object_new (<em class="parameter"><code><span class="type">GType</span> type</code></em>,
129 <em class="parameter"><code>const <span class="type">char</span> *root_name</code></em>,
130 <em class="parameter"><code>const <span class="type">char</span> *schema</code></em>);</pre>
131 </div>
132 <hr>
133 <div class="refsect2">
134 <a name="gvir-config-object-new-from-xml"></a><h3>gvir_config_object_new_from_xml ()</h3>
135 <pre class="programlisting"><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="returnvalue">GVirConfigObject</span></a> * gvir_config_object_new_from_xml (<em class="parameter"><code><span class="type">GType</span> type</code></em>,
136 <em class="parameter"><code>const <span class="type">char</span> *root_name</code></em>,
137 <em class="parameter"><code>const <span class="type">char</span> *schema</code></em>,
138 <em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
139 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
140 </div>
141 <hr>
142 <div class="refsect2">
143 <a name="gvir-config-object-validate"></a><h3>gvir_config_object_validate ()</h3>
144 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_object_validate (<em class="parameter"><code><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="type">GVirConfigObject</span></a> *config</code></em>,
145 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
146 </div>
147 <hr>
148 <div class="refsect2">
149 <a name="gvir-config-object-to-xml"></a><h3>gvir_config_object_to_xml ()</h3>
150 <pre class="programlisting"><span class="returnvalue">gchar</span> * gvir_config_object_to_xml (<em class="parameter"><code><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="type">GVirConfigObject</span></a> *config</code></em>);</pre>
151 </div>
152 <hr>
153 <div class="refsect2">
154 <a name="gvir-config-object-get-schema"></a><h3>gvir_config_object_get_schema ()</h3>
155 <pre class="programlisting">const <span class="returnvalue">gchar</span> * gvir_config_object_get_schema (<em class="parameter"><code><a class="link" href="GVirConfigObject.html" title="GVirConfigObject"><span class="type">GVirConfigObject</span></a> *config</code></em>);</pre>
240 <a name="GVirConfigObjectPrivate"></a><h3>GVirConfigObjectPrivate</h3>
241 <pre class="programlisting">typedef struct _GVirConfigObjectPrivate GVirConfigObjectPrivate;</pre>
156242 </div>
157243 </div>
158244 <div class="refsect1">
159245 <a name="GVirConfigObject.property-details"></a><h2>Property Details</h2>
160246 <div class="refsect2">
161 <a name="GVirConfigObject--doc"></a><h3>The <code class="literal">"doc"</code> property</h3>
162 <pre class="programlisting"> "doc" <span class="type">GVirConfigXmlDoc</span>* : Read / Write / Construct Only</pre>
247 <a name="GVirConfigObject--doc"></a><h3>The <code class="literal">“doc”</code> property</h3>
248 <pre class="programlisting"> “doc” <span class="type">GVirConfigXmlDoc</span> *</pre>
163249 <p>The XML doc this config object corresponds to.</p>
164 </div>
165 <hr>
166 <div class="refsect2">
167 <a name="GVirConfigObject--node"></a><h3>The <code class="literal">"node"</code> property</h3>
168 <pre class="programlisting"> "node" <span class="type">gpointer</span> : Read / Write / Construct Only</pre>
250 <p>Flags: Read / Write / Construct Only</p>
251 </div>
252 <hr>
253 <div class="refsect2">
254 <a name="GVirConfigObject--node"></a><h3>The <code class="literal">“node”</code> property</h3>
255 <pre class="programlisting"> “node” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a></pre>
169256 <p>The XML node this config object corresponds to.</p>
170 </div>
171 <hr>
172 <div class="refsect2">
173 <a name="GVirConfigObject--schema"></a><h3>The <code class="literal">"schema"</code> property</h3>
174 <pre class="programlisting"> "schema" <span class="type">gchar</span>* : Read / Write / Construct Only</pre>
257 <p>Flags: Read / Write / Construct Only</p>
258 </div>
259 <hr>
260 <div class="refsect2">
261 <a name="GVirConfigObject--schema"></a><h3>The <code class="literal">“schema”</code> property</h3>
262 <pre class="programlisting"> “schema” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
175263 <p>The doc RNG schema.</p>
264 <p>Flags: Read / Write / Construct Only</p>
176265 <p>Default value: NULL</p>
177266 </div>
178267 </div>
179268 </div>
180269 <div class="footer">
181270 <hr>
182 Generated by GTK-Doc V1.19</div>
271 Generated by GTK-Doc V1.21</div>
183272 </body>
184273 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirConfigSecret</title>
4 <title>Libvirt-gconfig Reference Manual: GVirConfigSecret</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice">
99 <link rel="next" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirConfigNodeDevice.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gconfig Reference Manual</th>
20 <td><a accesskey="n" href="GVirConfigStoragePool.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirConfigSecret.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirConfigSecret.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirConfigSecret.object-hierarchy" class="shortcut">Object Hierarchy</a>
28 </td></tr>
29 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirConfigSecret.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirConfigSecret.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
19 </td>
20 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
22 <td><a accesskey="p" href="GVirConfigNodeDevice.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23 <td><a accesskey="n" href="GVirConfigStoragePool.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24 </tr></table>
3025 <div class="refentry">
3126 <a name="GVirConfigSecret"></a><div class="titlepage"></div>
3227 <div class="refnamediv"><table width="100%"><tr>
3429 <h2><span class="refentrytitle"><a name="GVirConfigSecret.top_of_page"></a>GVirConfigSecret</span></h2>
3530 <p>GVirConfigSecret</p>
3631 </td>
37 <td valign="top" align="right"></td>
32 <td class="gallery_image" valign="top" align="right"></td>
3833 </tr></table></div>
39 <div class="refsynopsisdiv">
40 <a name="GVirConfigSecret.synopsis"></a><h2>Synopsis</h2>
41 <pre class="synopsis">struct <a class="link" href="GVirConfigSecret.html#GVirConfigSecret-struct" title="struct GVirConfigSecret">GVirConfigSecret</a>;
42 struct <a class="link" href="GVirConfigSecret.html#GVirConfigSecretClass" title="struct GVirConfigSecretClass">GVirConfigSecretClass</a>;
43 <a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret"><span class="returnvalue">GVirConfigSecret</span></a> * <a class="link" href="GVirConfigSecret.html#gvir-config-secret-new" title="gvir_config_secret_new ()">gvir_config_secret_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
44 <a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret"><span class="returnvalue">GVirConfigSecret</span></a> * <a class="link" href="GVirConfigSecret.html#gvir-config-secret-new-from-xml" title="gvir_config_secret_new_from_xml ()">gvir_config_secret_new_from_xml</a> (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
45 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
46 </pre>
34 <div class="refsect1">
35 <a name="GVirConfigSecret.functions"></a><h2>Functions</h2>
36 <div class="informaltable"><table width="100%" border="0">
37 <colgroup>
38 <col width="150px" class="functions_return">
39 <col class="functions_name">
40 </colgroup>
41 <tbody>
42 <tr>
43 <td class="function_type">
44 <a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret"><span class="returnvalue">GVirConfigSecret</span></a> *
45 </td>
46 <td class="function_name">
47 <a class="link" href="GVirConfigSecret.html#gvir-config-secret-new" title="gvir_config_secret_new ()">gvir_config_secret_new</a> <span class="c_punctuation">()</span>
48 </td>
49 </tr>
50 <tr>
51 <td class="function_type">
52 <a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret"><span class="returnvalue">GVirConfigSecret</span></a> *
53 </td>
54 <td class="function_name">
55 <a class="link" href="GVirConfigSecret.html#gvir-config-secret-new-from-xml" title="gvir_config_secret_new_from_xml ()">gvir_config_secret_new_from_xml</a> <span class="c_punctuation">()</span>
56 </td>
57 </tr>
58 </tbody>
59 </table></div>
60 </div>
61 <div class="refsect1">
62 <a name="GVirConfigSecret.other"></a><h2>Types and Values</h2>
63 <div class="informaltable"><table width="100%" border="0">
64 <colgroup>
65 <col width="150px" class="name">
66 <col class="description">
67 </colgroup>
68 <tbody>
69 <tr>
70 <td class="datatype_keyword">struct</td>
71 <td class="function_name"><a class="link" href="GVirConfigSecret.html#GVirConfigSecret-struct" title="struct GVirConfigSecret">GVirConfigSecret</a></td>
72 </tr>
73 <tr>
74 <td class="datatype_keyword">struct</td>
75 <td class="function_name"><a class="link" href="GVirConfigSecret.html#GVirConfigSecretClass" title="struct GVirConfigSecretClass">GVirConfigSecretClass</a></td>
76 </tr>
77 <tr>
78 <td class="datatype_keyword"> </td>
79 <td class="function_name"><a class="link" href="GVirConfigSecret.html#GVirConfigSecretPrivate" title="GVirConfigSecretPrivate">GVirConfigSecretPrivate</a></td>
80 </tr>
81 </tbody>
82 </table></div>
4783 </div>
4884 <div class="refsect1">
4985 <a name="GVirConfigSecret.object-hierarchy"></a><h2>Object Hierarchy</h2>
50 <pre class="synopsis">
51 GObject
52 +----<a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
53 +----GVirConfigSecret
86 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
87 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
88 <span class="lineart">╰──</span> GVirConfigSecret
5489 </pre>
5590 </div>
5691 <div class="refsect1">
5792 <a name="GVirConfigSecret.description"></a><h2>Description</h2>
5893 </div>
5994 <div class="refsect1">
60 <a name="GVirConfigSecret.details"></a><h2>Details</h2>
95 <a name="GVirConfigSecret.functions_details"></a><h2>Functions</h2>
96 <div class="refsect2">
97 <a name="gvir-config-secret-new"></a><h3>gvir_config_secret_new ()</h3>
98 <pre class="programlisting"><a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret"><span class="returnvalue">GVirConfigSecret</span></a> *
99 gvir_config_secret_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
100 </div>
101 <hr>
102 <div class="refsect2">
103 <a name="gvir-config-secret-new-from-xml"></a><h3>gvir_config_secret_new_from_xml ()</h3>
104 <pre class="programlisting"><a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret"><span class="returnvalue">GVirConfigSecret</span></a> *
105 gvir_config_secret_new_from_xml (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
106 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
107 </div>
108 </div>
109 <div class="refsect1">
110 <a name="GVirConfigSecret.other_details"></a><h2>Types and Values</h2>
61111 <div class="refsect2">
62112 <a name="GVirConfigSecret-struct"></a><h3>struct GVirConfigSecret</h3>
63113 <pre class="programlisting">struct GVirConfigSecret;</pre>
74124 </div>
75125 <hr>
76126 <div class="refsect2">
77 <a name="gvir-config-secret-new"></a><h3>gvir_config_secret_new ()</h3>
78 <pre class="programlisting"><a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret"><span class="returnvalue">GVirConfigSecret</span></a> * gvir_config_secret_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
79 </div>
80 <hr>
81 <div class="refsect2">
82 <a name="gvir-config-secret-new-from-xml"></a><h3>gvir_config_secret_new_from_xml ()</h3>
83 <pre class="programlisting"><a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret"><span class="returnvalue">GVirConfigSecret</span></a> * gvir_config_secret_new_from_xml (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
84 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
127 <a name="GVirConfigSecretPrivate"></a><h3>GVirConfigSecretPrivate</h3>
128 <pre class="programlisting">typedef struct _GVirConfigSecretPrivate GVirConfigSecretPrivate;</pre>
85129 </div>
86130 </div>
87131 </div>
88132 <div class="footer">
89133 <hr>
90 Generated by GTK-Doc V1.19</div>
134 Generated by GTK-Doc V1.21</div>
91135 </body>
92136 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirConfigStoragePool</title>
4 <title>Libvirt-gconfig Reference Manual: GVirConfigStoragePool</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigSecret.html" title="GVirConfigSecret">
99 <link rel="next" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirConfigSecret.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gconfig Reference Manual</th>
20 <td><a accesskey="n" href="GVirConfigStorageVol.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirConfigStoragePool.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirConfigStoragePool.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirConfigStoragePool.object-hierarchy" class="shortcut">Object Hierarchy</a>
28 </td></tr>
29 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirConfigStoragePool.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirConfigStoragePool.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
19 </td>
20 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
22 <td><a accesskey="p" href="GVirConfigSecret.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23 <td><a accesskey="n" href="GVirConfigStorageVol.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24 </tr></table>
3025 <div class="refentry">
3126 <a name="GVirConfigStoragePool"></a><div class="titlepage"></div>
3227 <div class="refnamediv"><table width="100%"><tr>
3429 <h2><span class="refentrytitle"><a name="GVirConfigStoragePool.top_of_page"></a>GVirConfigStoragePool</span></h2>
3530 <p>GVirConfigStoragePool</p>
3631 </td>
37 <td valign="top" align="right"></td>
32 <td class="gallery_image" valign="top" align="right"></td>
3833 </tr></table></div>
39 <div class="refsynopsisdiv">
40 <a name="GVirConfigStoragePool.synopsis"></a><h2>Synopsis</h2>
41 <pre class="synopsis">struct <a class="link" href="GVirConfigStoragePool.html#GVirConfigStoragePool-struct" title="struct GVirConfigStoragePool">GVirConfigStoragePool</a>;
42 struct <a class="link" href="GVirConfigStoragePool.html#GVirConfigStoragePoolClass" title="struct GVirConfigStoragePoolClass">GVirConfigStoragePoolClass</a>;
43 enum <a class="link" href="GVirConfigStoragePool.html#GVirConfigStoragePoolType" title="enum GVirConfigStoragePoolType">GVirConfigStoragePoolType</a>;
44 <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="returnvalue">GVirConfigStoragePool</span></a> * <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-new" title="gvir_config_storage_pool_new ()">gvir_config_storage_pool_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
45 <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="returnvalue">GVirConfigStoragePool</span></a> * <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-new-from-xml" title="gvir_config_storage_pool_new_from_xml ()">gvir_config_storage_pool_new_from_xml</a>
46 (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
47 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
48 <span class="returnvalue">guint64</span> <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-allocation" title="gvir_config_storage_pool_get_allocation ()">gvir_config_storage_pool_get_allocation</a>
49 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);
50 <span class="returnvalue">void</span> <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-allocation" title="gvir_config_storage_pool_set_allocation ()">gvir_config_storage_pool_set_allocation</a>
51 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
52 <em class="parameter"><code><span class="type">guint64</span> allocation</code></em>);
53 <span class="returnvalue">guint64</span> <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-available" title="gvir_config_storage_pool_get_available ()">gvir_config_storage_pool_get_available</a>
54 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);
55 <span class="returnvalue">void</span> <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-available" title="gvir_config_storage_pool_set_available ()">gvir_config_storage_pool_set_available</a>
56 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
57 <em class="parameter"><code><span class="type">guint64</span> available</code></em>);
58 <span class="returnvalue">guint64</span> <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-capacity" title="gvir_config_storage_pool_get_capacity ()">gvir_config_storage_pool_get_capacity</a>
59 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);
60 <span class="returnvalue">void</span> <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-capacity" title="gvir_config_storage_pool_set_capacity ()">gvir_config_storage_pool_set_capacity</a>
61 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
62 <em class="parameter"><code><span class="type">guint64</span> capacity</code></em>);
63 const <span class="returnvalue">char</span> * <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-name" title="gvir_config_storage_pool_get_name ()">gvir_config_storage_pool_get_name</a> (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);
64 <span class="returnvalue">void</span> <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-name" title="gvir_config_storage_pool_set_name ()">gvir_config_storage_pool_set_name</a> (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
65 <em class="parameter"><code>const <span class="type">char</span> *name</code></em>);
66 <a class="link" href="GVirConfigStoragePool.html#GVirConfigStoragePoolType" title="enum GVirConfigStoragePoolType"><span class="returnvalue">GVirConfigStoragePoolType</span></a> <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-pool-type" title="gvir_config_storage_pool_get_pool_type ()">gvir_config_storage_pool_get_pool_type</a>
67 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);
68 <span class="returnvalue">void</span> <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-pool-type" title="gvir_config_storage_pool_set_pool_type ()">gvir_config_storage_pool_set_pool_type</a>
69 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
70 <em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html#GVirConfigStoragePoolType" title="enum GVirConfigStoragePoolType"><span class="type">GVirConfigStoragePoolType</span></a> type</code></em>);
71 <span class="returnvalue">GVirConfigStoragePoolSource</span> * <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-source" title="gvir_config_storage_pool_get_source ()">gvir_config_storage_pool_get_source</a>
72 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);
73 <span class="returnvalue">void</span> <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-source" title="gvir_config_storage_pool_set_source ()">gvir_config_storage_pool_set_source</a> (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
74 <em class="parameter"><code><span class="type">GVirConfigStoragePoolSource</span> *source</code></em>);
75 <span class="returnvalue">GVirConfigStoragePoolTarget</span> * <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-target" title="gvir_config_storage_pool_get_target ()">gvir_config_storage_pool_get_target</a>
76 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);
77 <span class="returnvalue">void</span> <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-target" title="gvir_config_storage_pool_set_target ()">gvir_config_storage_pool_set_target</a> (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
78 <em class="parameter"><code><span class="type">GVirConfigStoragePoolTarget</span> *target</code></em>);
79 const <span class="returnvalue">char</span> * <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-uuid" title="gvir_config_storage_pool_get_uuid ()">gvir_config_storage_pool_get_uuid</a> (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);
80 <span class="returnvalue">void</span> <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-uuid" title="gvir_config_storage_pool_set_uuid ()">gvir_config_storage_pool_set_uuid</a> (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
81 <em class="parameter"><code>const <span class="type">char</span> *uuid</code></em>);
82 </pre>
34 <div class="refsect1">
35 <a name="GVirConfigStoragePool.functions"></a><h2>Functions</h2>
36 <div class="informaltable"><table width="100%" border="0">
37 <colgroup>
38 <col width="150px" class="functions_return">
39 <col class="functions_name">
40 </colgroup>
41 <tbody>
42 <tr>
43 <td class="function_type">
44 <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="returnvalue">GVirConfigStoragePool</span></a> *
45 </td>
46 <td class="function_name">
47 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-new" title="gvir_config_storage_pool_new ()">gvir_config_storage_pool_new</a> <span class="c_punctuation">()</span>
48 </td>
49 </tr>
50 <tr>
51 <td class="function_type">
52 <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="returnvalue">GVirConfigStoragePool</span></a> *
53 </td>
54 <td class="function_name">
55 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-new-from-xml" title="gvir_config_storage_pool_new_from_xml ()">gvir_config_storage_pool_new_from_xml</a> <span class="c_punctuation">()</span>
56 </td>
57 </tr>
58 <tr>
59 <td class="function_type">
60 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
61 </td>
62 <td class="function_name">
63 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-allocation" title="gvir_config_storage_pool_get_allocation ()">gvir_config_storage_pool_get_allocation</a> <span class="c_punctuation">()</span>
64 </td>
65 </tr>
66 <tr>
67 <td class="function_type">
68 <span class="returnvalue">void</span>
69 </td>
70 <td class="function_name">
71 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-allocation" title="gvir_config_storage_pool_set_allocation ()">gvir_config_storage_pool_set_allocation</a> <span class="c_punctuation">()</span>
72 </td>
73 </tr>
74 <tr>
75 <td class="function_type">
76 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
77 </td>
78 <td class="function_name">
79 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-available" title="gvir_config_storage_pool_get_available ()">gvir_config_storage_pool_get_available</a> <span class="c_punctuation">()</span>
80 </td>
81 </tr>
82 <tr>
83 <td class="function_type">
84 <span class="returnvalue">void</span>
85 </td>
86 <td class="function_name">
87 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-available" title="gvir_config_storage_pool_set_available ()">gvir_config_storage_pool_set_available</a> <span class="c_punctuation">()</span>
88 </td>
89 </tr>
90 <tr>
91 <td class="function_type">
92 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
93 </td>
94 <td class="function_name">
95 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-capacity" title="gvir_config_storage_pool_get_capacity ()">gvir_config_storage_pool_get_capacity</a> <span class="c_punctuation">()</span>
96 </td>
97 </tr>
98 <tr>
99 <td class="function_type">
100 <span class="returnvalue">void</span>
101 </td>
102 <td class="function_name">
103 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-capacity" title="gvir_config_storage_pool_set_capacity ()">gvir_config_storage_pool_set_capacity</a> <span class="c_punctuation">()</span>
104 </td>
105 </tr>
106 <tr>
107 <td class="function_type">const <span class="returnvalue">char</span> *
108 </td>
109 <td class="function_name">
110 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-name" title="gvir_config_storage_pool_get_name ()">gvir_config_storage_pool_get_name</a> <span class="c_punctuation">()</span>
111 </td>
112 </tr>
113 <tr>
114 <td class="function_type">
115 <span class="returnvalue">void</span>
116 </td>
117 <td class="function_name">
118 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-name" title="gvir_config_storage_pool_set_name ()">gvir_config_storage_pool_set_name</a> <span class="c_punctuation">()</span>
119 </td>
120 </tr>
121 <tr>
122 <td class="function_type">
123 <a class="link" href="GVirConfigStoragePool.html#GVirConfigStoragePoolType" title="enum GVirConfigStoragePoolType"><span class="returnvalue">GVirConfigStoragePoolType</span></a>
124 </td>
125 <td class="function_name">
126 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-pool-type" title="gvir_config_storage_pool_get_pool_type ()">gvir_config_storage_pool_get_pool_type</a> <span class="c_punctuation">()</span>
127 </td>
128 </tr>
129 <tr>
130 <td class="function_type">
131 <span class="returnvalue">void</span>
132 </td>
133 <td class="function_name">
134 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-pool-type" title="gvir_config_storage_pool_set_pool_type ()">gvir_config_storage_pool_set_pool_type</a> <span class="c_punctuation">()</span>
135 </td>
136 </tr>
137 <tr>
138 <td class="function_type">
139 <span class="returnvalue">GVirConfigStoragePoolSource</span> *
140 </td>
141 <td class="function_name">
142 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-source" title="gvir_config_storage_pool_get_source ()">gvir_config_storage_pool_get_source</a> <span class="c_punctuation">()</span>
143 </td>
144 </tr>
145 <tr>
146 <td class="function_type">
147 <span class="returnvalue">void</span>
148 </td>
149 <td class="function_name">
150 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-source" title="gvir_config_storage_pool_set_source ()">gvir_config_storage_pool_set_source</a> <span class="c_punctuation">()</span>
151 </td>
152 </tr>
153 <tr>
154 <td class="function_type">
155 <span class="returnvalue">GVirConfigStoragePoolTarget</span> *
156 </td>
157 <td class="function_name">
158 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-target" title="gvir_config_storage_pool_get_target ()">gvir_config_storage_pool_get_target</a> <span class="c_punctuation">()</span>
159 </td>
160 </tr>
161 <tr>
162 <td class="function_type">
163 <span class="returnvalue">void</span>
164 </td>
165 <td class="function_name">
166 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-target" title="gvir_config_storage_pool_set_target ()">gvir_config_storage_pool_set_target</a> <span class="c_punctuation">()</span>
167 </td>
168 </tr>
169 <tr>
170 <td class="function_type">const <span class="returnvalue">char</span> *
171 </td>
172 <td class="function_name">
173 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-uuid" title="gvir_config_storage_pool_get_uuid ()">gvir_config_storage_pool_get_uuid</a> <span class="c_punctuation">()</span>
174 </td>
175 </tr>
176 <tr>
177 <td class="function_type">
178 <span class="returnvalue">void</span>
179 </td>
180 <td class="function_name">
181 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-uuid" title="gvir_config_storage_pool_set_uuid ()">gvir_config_storage_pool_set_uuid</a> <span class="c_punctuation">()</span>
182 </td>
183 </tr>
184 </tbody>
185 </table></div>
186 </div>
187 <div class="refsect1">
188 <a name="GVirConfigStoragePool.other"></a><h2>Types and Values</h2>
189 <div class="informaltable"><table width="100%" border="0">
190 <colgroup>
191 <col width="150px" class="name">
192 <col class="description">
193 </colgroup>
194 <tbody>
195 <tr>
196 <td class="datatype_keyword">struct</td>
197 <td class="function_name"><a class="link" href="GVirConfigStoragePool.html#GVirConfigStoragePool-struct" title="struct GVirConfigStoragePool">GVirConfigStoragePool</a></td>
198 </tr>
199 <tr>
200 <td class="datatype_keyword">struct</td>
201 <td class="function_name"><a class="link" href="GVirConfigStoragePool.html#GVirConfigStoragePoolClass" title="struct GVirConfigStoragePoolClass">GVirConfigStoragePoolClass</a></td>
202 </tr>
203 <tr>
204 <td class="datatype_keyword">enum</td>
205 <td class="function_name"><a class="link" href="GVirConfigStoragePool.html#GVirConfigStoragePoolType" title="enum GVirConfigStoragePoolType">GVirConfigStoragePoolType</a></td>
206 </tr>
207 <tr>
208 <td class="datatype_keyword"> </td>
209 <td class="function_name"><a class="link" href="GVirConfigStoragePool.html#GVirConfigStoragePoolPrivate" title="GVirConfigStoragePoolPrivate">GVirConfigStoragePoolPrivate</a></td>
210 </tr>
211 </tbody>
212 </table></div>
83213 </div>
84214 <div class="refsect1">
85215 <a name="GVirConfigStoragePool.object-hierarchy"></a><h2>Object Hierarchy</h2>
86 <pre class="synopsis">
87 GObject
88 +----<a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
89 +----GVirConfigStoragePool
216 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
217 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
218 <span class="lineart">╰──</span> GVirConfigStoragePool
90219 </pre>
91220 </div>
92221 <div class="refsect1">
93222 <a name="GVirConfigStoragePool.description"></a><h2>Description</h2>
94223 </div>
95224 <div class="refsect1">
96 <a name="GVirConfigStoragePool.details"></a><h2>Details</h2>
225 <a name="GVirConfigStoragePool.functions_details"></a><h2>Functions</h2>
226 <div class="refsect2">
227 <a name="gvir-config-storage-pool-new"></a><h3>gvir_config_storage_pool_new ()</h3>
228 <pre class="programlisting"><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="returnvalue">GVirConfigStoragePool</span></a> *
229 gvir_config_storage_pool_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
230 </div>
231 <hr>
232 <div class="refsect2">
233 <a name="gvir-config-storage-pool-new-from-xml"></a><h3>gvir_config_storage_pool_new_from_xml ()</h3>
234 <pre class="programlisting"><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="returnvalue">GVirConfigStoragePool</span></a> *
235 gvir_config_storage_pool_new_from_xml (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
236 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
237 </div>
238 <hr>
239 <div class="refsect2">
240 <a name="gvir-config-storage-pool-get-allocation"></a><h3>gvir_config_storage_pool_get_allocation ()</h3>
241 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
242 gvir_config_storage_pool_get_allocation
243 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
244 <p>Gets the total storage allocation for the pool.</p>
245 <div class="refsect3">
246 <a name="id-1.2.10.7.4.5"></a><h4>Parameters</h4>
247 <div class="informaltable"><table width="100%" border="0">
248 <colgroup>
249 <col width="150px" class="parameters_name">
250 <col class="parameters_description">
251 <col width="200px" class="parameters_annotations">
252 </colgroup>
253 <tbody><tr>
254 <td class="parameter_name"><p>pool</p></td>
255 <td class="parameter_description"><p>a <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a></p></td>
256 <td class="parameter_annotations"> </td>
257 </tr></tbody>
258 </table></div>
259 </div>
260 <div class="refsect3">
261 <a name="id-1.2.10.7.4.6"></a><h4>Returns</h4>
262 <p> total storage allocation in bytes.</p>
263 <p></p>
264 </div>
265 </div>
266 <hr>
267 <div class="refsect2">
268 <a name="gvir-config-storage-pool-set-allocation"></a><h3>gvir_config_storage_pool_set_allocation ()</h3>
269 <pre class="programlisting"><span class="returnvalue">void</span>
270 gvir_config_storage_pool_set_allocation
271 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
272 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> allocation</code></em>);</pre>
273 </div>
274 <hr>
275 <div class="refsect2">
276 <a name="gvir-config-storage-pool-get-available"></a><h3>gvir_config_storage_pool_get_available ()</h3>
277 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
278 gvir_config_storage_pool_get_available
279 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
280 <p>Gets the free space available for allocating new volumes in the pool.</p>
281 <div class="refsect3">
282 <a name="id-1.2.10.7.6.5"></a><h4>Parameters</h4>
283 <div class="informaltable"><table width="100%" border="0">
284 <colgroup>
285 <col width="150px" class="parameters_name">
286 <col class="parameters_description">
287 <col width="200px" class="parameters_annotations">
288 </colgroup>
289 <tbody><tr>
290 <td class="parameter_name"><p>pool</p></td>
291 <td class="parameter_description"><p>a <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a></p></td>
292 <td class="parameter_annotations"> </td>
293 </tr></tbody>
294 </table></div>
295 </div>
296 <div class="refsect3">
297 <a name="id-1.2.10.7.6.6"></a><h4>Returns</h4>
298 <p> free space available in bytes.</p>
299 <p></p>
300 </div>
301 </div>
302 <hr>
303 <div class="refsect2">
304 <a name="gvir-config-storage-pool-set-available"></a><h3>gvir_config_storage_pool_set_available ()</h3>
305 <pre class="programlisting"><span class="returnvalue">void</span>
306 gvir_config_storage_pool_set_available
307 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
308 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> available</code></em>);</pre>
309 </div>
310 <hr>
311 <div class="refsect2">
312 <a name="gvir-config-storage-pool-get-capacity"></a><h3>gvir_config_storage_pool_get_capacity ()</h3>
313 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a>
314 gvir_config_storage_pool_get_capacity (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
315 <p>Gets the total storage capacity for the pool.</p>
316 <div class="refsect3">
317 <a name="id-1.2.10.7.8.5"></a><h4>Parameters</h4>
318 <div class="informaltable"><table width="100%" border="0">
319 <colgroup>
320 <col width="150px" class="parameters_name">
321 <col class="parameters_description">
322 <col width="200px" class="parameters_annotations">
323 </colgroup>
324 <tbody><tr>
325 <td class="parameter_name"><p>pool</p></td>
326 <td class="parameter_description"><p>a <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a></p></td>
327 <td class="parameter_annotations"> </td>
328 </tr></tbody>
329 </table></div>
330 </div>
331 <div class="refsect3">
332 <a name="id-1.2.10.7.8.6"></a><h4>Returns</h4>
333 <p> total storage capacity in bytes.</p>
334 <p></p>
335 </div>
336 </div>
337 <hr>
338 <div class="refsect2">
339 <a name="gvir-config-storage-pool-set-capacity"></a><h3>gvir_config_storage_pool_set_capacity ()</h3>
340 <pre class="programlisting"><span class="returnvalue">void</span>
341 gvir_config_storage_pool_set_capacity (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
342 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> capacity</code></em>);</pre>
343 </div>
344 <hr>
345 <div class="refsect2">
346 <a name="gvir-config-storage-pool-get-name"></a><h3>gvir_config_storage_pool_get_name ()</h3>
347 <pre class="programlisting">const <span class="returnvalue">char</span> *
348 gvir_config_storage_pool_get_name (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
349 <p>Gets the name of the pool.</p>
350 <div class="refsect3">
351 <a name="id-1.2.10.7.10.5"></a><h4>Parameters</h4>
352 <div class="informaltable"><table width="100%" border="0">
353 <colgroup>
354 <col width="150px" class="parameters_name">
355 <col class="parameters_description">
356 <col width="200px" class="parameters_annotations">
357 </colgroup>
358 <tbody><tr>
359 <td class="parameter_name"><p>pool</p></td>
360 <td class="parameter_description"><p>a <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a></p></td>
361 <td class="parameter_annotations"> </td>
362 </tr></tbody>
363 </table></div>
364 </div>
365 <div class="refsect3">
366 <a name="id-1.2.10.7.10.6"></a><h4>Returns</h4>
367 <p> name of <em class="parameter"><code>pool</code></em>
368 .</p>
369 <p></p>
370 </div>
371 </div>
372 <hr>
373 <div class="refsect2">
374 <a name="gvir-config-storage-pool-set-name"></a><h3>gvir_config_storage_pool_set_name ()</h3>
375 <pre class="programlisting"><span class="returnvalue">void</span>
376 gvir_config_storage_pool_set_name (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
377 <em class="parameter"><code>const <span class="type">char</span> *name</code></em>);</pre>
378 <div class="refsect3">
379 <a name="id-1.2.10.7.11.4"></a><h4>Parameters</h4>
380 <div class="informaltable"><table width="100%" border="0">
381 <colgroup>
382 <col width="150px" class="parameters_name">
383 <col class="parameters_description">
384 <col width="200px" class="parameters_annotations">
385 </colgroup>
386 <tbody><tr>
387 <td class="parameter_name"><p>name</p></td>
388 <td class="parameter_description"><p>. </p></td>
389 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
390 </tr></tbody>
391 </table></div>
392 </div>
393 </div>
394 <hr>
395 <div class="refsect2">
396 <a name="gvir-config-storage-pool-get-pool-type"></a><h3>gvir_config_storage_pool_get_pool_type ()</h3>
397 <pre class="programlisting"><a class="link" href="GVirConfigStoragePool.html#GVirConfigStoragePoolType" title="enum GVirConfigStoragePoolType"><span class="returnvalue">GVirConfigStoragePoolType</span></a>
398 gvir_config_storage_pool_get_pool_type
399 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
400 <p>Gets the type of the pool.</p>
401 <div class="refsect3">
402 <a name="id-1.2.10.7.12.5"></a><h4>Parameters</h4>
403 <div class="informaltable"><table width="100%" border="0">
404 <colgroup>
405 <col width="150px" class="parameters_name">
406 <col class="parameters_description">
407 <col width="200px" class="parameters_annotations">
408 </colgroup>
409 <tbody><tr>
410 <td class="parameter_name"><p>pool</p></td>
411 <td class="parameter_description"><p>a <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a></p></td>
412 <td class="parameter_annotations"> </td>
413 </tr></tbody>
414 </table></div>
415 </div>
416 <div class="refsect3">
417 <a name="id-1.2.10.7.12.6"></a><h4>Returns</h4>
418 <p> <span class="type">Gname</span> of <em class="parameter"><code>pool</code></em>
419 .</p>
420 <p></p>
421 </div>
422 </div>
423 <hr>
424 <div class="refsect2">
425 <a name="gvir-config-storage-pool-set-pool-type"></a><h3>gvir_config_storage_pool_set_pool_type ()</h3>
426 <pre class="programlisting"><span class="returnvalue">void</span>
427 gvir_config_storage_pool_set_pool_type
428 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
429 <em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html#GVirConfigStoragePoolType" title="enum GVirConfigStoragePoolType"><span class="type">GVirConfigStoragePoolType</span></a> type</code></em>);</pre>
430 </div>
431 <hr>
432 <div class="refsect2">
433 <a name="gvir-config-storage-pool-get-source"></a><h3>gvir_config_storage_pool_get_source ()</h3>
434 <pre class="programlisting"><span class="returnvalue">GVirConfigStoragePoolSource</span> *
435 gvir_config_storage_pool_get_source (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
436 <p>Gets the source for <em class="parameter"><code>pool</code></em>
437 </p>
438 <div class="refsect3">
439 <a name="id-1.2.10.7.14.5"></a><h4>Parameters</h4>
440 <div class="informaltable"><table width="100%" border="0">
441 <colgroup>
442 <col width="150px" class="parameters_name">
443 <col class="parameters_description">
444 <col width="200px" class="parameters_annotations">
445 </colgroup>
446 <tbody><tr>
447 <td class="parameter_name"><p>pool</p></td>
448 <td class="parameter_description"><p>a <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a></p></td>
449 <td class="parameter_annotations"> </td>
450 </tr></tbody>
451 </table></div>
452 </div>
453 <div class="refsect3">
454 <a name="id-1.2.10.7.14.6"></a><h4>Returns</h4>
455 <p> a new <span class="type">GVirConfigStoragePoolSource</span> instance. </p>
456 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
457 </div>
458 </div>
459 <hr>
460 <div class="refsect2">
461 <a name="gvir-config-storage-pool-set-source"></a><h3>gvir_config_storage_pool_set_source ()</h3>
462 <pre class="programlisting"><span class="returnvalue">void</span>
463 gvir_config_storage_pool_set_source (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
464 <em class="parameter"><code><span class="type">GVirConfigStoragePoolSource</span> *source</code></em>);</pre>
465 <div class="refsect3">
466 <a name="id-1.2.10.7.15.4"></a><h4>Parameters</h4>
467 <div class="informaltable"><table width="100%" border="0">
468 <colgroup>
469 <col width="150px" class="parameters_name">
470 <col class="parameters_description">
471 <col width="200px" class="parameters_annotations">
472 </colgroup>
473 <tbody><tr>
474 <td class="parameter_name"><p>source</p></td>
475 <td class="parameter_description"><p>. </p></td>
476 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
477 </tr></tbody>
478 </table></div>
479 </div>
480 </div>
481 <hr>
482 <div class="refsect2">
483 <a name="gvir-config-storage-pool-get-target"></a><h3>gvir_config_storage_pool_get_target ()</h3>
484 <pre class="programlisting"><span class="returnvalue">GVirConfigStoragePoolTarget</span> *
485 gvir_config_storage_pool_get_target (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
486 <p>Gets the target for <em class="parameter"><code>pool</code></em>
487 </p>
488 <div class="refsect3">
489 <a name="id-1.2.10.7.16.5"></a><h4>Parameters</h4>
490 <div class="informaltable"><table width="100%" border="0">
491 <colgroup>
492 <col width="150px" class="parameters_name">
493 <col class="parameters_description">
494 <col width="200px" class="parameters_annotations">
495 </colgroup>
496 <tbody><tr>
497 <td class="parameter_name"><p>pool</p></td>
498 <td class="parameter_description"><p>a <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a></p></td>
499 <td class="parameter_annotations"> </td>
500 </tr></tbody>
501 </table></div>
502 </div>
503 <div class="refsect3">
504 <a name="id-1.2.10.7.16.6"></a><h4>Returns</h4>
505 <p> a new <span class="type">GVirConfigStoragePoolTarget</span> instance. </p>
506 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
507 </div>
508 </div>
509 <hr>
510 <div class="refsect2">
511 <a name="gvir-config-storage-pool-set-target"></a><h3>gvir_config_storage_pool_set_target ()</h3>
512 <pre class="programlisting"><span class="returnvalue">void</span>
513 gvir_config_storage_pool_set_target (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
514 <em class="parameter"><code><span class="type">GVirConfigStoragePoolTarget</span> *target</code></em>);</pre>
515 <div class="refsect3">
516 <a name="id-1.2.10.7.17.4"></a><h4>Parameters</h4>
517 <div class="informaltable"><table width="100%" border="0">
518 <colgroup>
519 <col width="150px" class="parameters_name">
520 <col class="parameters_description">
521 <col width="200px" class="parameters_annotations">
522 </colgroup>
523 <tbody><tr>
524 <td class="parameter_name"><p>target</p></td>
525 <td class="parameter_description"><p>. </p></td>
526 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
527 </tr></tbody>
528 </table></div>
529 </div>
530 </div>
531 <hr>
532 <div class="refsect2">
533 <a name="gvir-config-storage-pool-get-uuid"></a><h3>gvir_config_storage_pool_get_uuid ()</h3>
534 <pre class="programlisting">const <span class="returnvalue">char</span> *
535 gvir_config_storage_pool_get_uuid (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
536 <p>Gets the unique identifier for <em class="parameter"><code>pool</code></em>
537 .</p>
538 <div class="refsect3">
539 <a name="id-1.2.10.7.18.5"></a><h4>Parameters</h4>
540 <div class="informaltable"><table width="100%" border="0">
541 <colgroup>
542 <col width="150px" class="parameters_name">
543 <col class="parameters_description">
544 <col width="200px" class="parameters_annotations">
545 </colgroup>
546 <tbody><tr>
547 <td class="parameter_name"><p>pool</p></td>
548 <td class="parameter_description"><p>a <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a></p></td>
549 <td class="parameter_annotations"> </td>
550 </tr></tbody>
551 </table></div>
552 </div>
553 <div class="refsect3">
554 <a name="id-1.2.10.7.18.6"></a><h4>Returns</h4>
555 <p> unique identifier for <em class="parameter"><code>pool</code></em>
556 .</p>
557 <p></p>
558 </div>
559 </div>
560 <hr>
561 <div class="refsect2">
562 <a name="gvir-config-storage-pool-set-uuid"></a><h3>gvir_config_storage_pool_set_uuid ()</h3>
563 <pre class="programlisting"><span class="returnvalue">void</span>
564 gvir_config_storage_pool_set_uuid (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
565 <em class="parameter"><code>const <span class="type">char</span> *uuid</code></em>);</pre>
566 <div class="refsect3">
567 <a name="id-1.2.10.7.19.4"></a><h4>Parameters</h4>
568 <div class="informaltable"><table width="100%" border="0">
569 <colgroup>
570 <col width="150px" class="parameters_name">
571 <col class="parameters_description">
572 <col width="200px" class="parameters_annotations">
573 </colgroup>
574 <tbody><tr>
575 <td class="parameter_name"><p>uuid</p></td>
576 <td class="parameter_description"><p>. </p></td>
577 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
578 </tr></tbody>
579 </table></div>
580 </div>
581 </div>
582 </div>
583 <div class="refsect1">
584 <a name="GVirConfigStoragePool.other_details"></a><h2>Types and Values</h2>
97585 <div class="refsect2">
98586 <a name="GVirConfigStoragePool-struct"></a><h3>struct GVirConfigStoragePool</h3>
99587 <pre class="programlisting">struct GVirConfigStoragePool;</pre>
111599 <hr>
112600 <div class="refsect2">
113601 <a name="GVirConfigStoragePoolType"></a><h3>enum GVirConfigStoragePoolType</h3>
114 <pre class="programlisting">typedef enum {
115 GVIR_CONFIG_STORAGE_POOL_TYPE_DIR,
116 GVIR_CONFIG_STORAGE_POOL_TYPE_FS,
117 GVIR_CONFIG_STORAGE_POOL_TYPE_NETFS,
118 GVIR_CONFIG_STORAGE_POOL_TYPE_LOGICAL,
119 GVIR_CONFIG_STORAGE_POOL_TYPE_DISK,
120 GVIR_CONFIG_STORAGE_POOL_TYPE_ISCSI,
121 GVIR_CONFIG_STORAGE_POOL_TYPE_SCSI,
122 GVIR_CONFIG_STORAGE_POOL_TYPE_MPATH
123 } GVirConfigStoragePoolType;
124 </pre>
125 <div class="variablelist"><table border="0" class="variablelist">
126 <colgroup>
127 <col align="left" valign="top">
128 <col>
602 <div class="refsect3">
603 <a name="id-1.2.10.8.4.3"></a><h4>Members</h4>
604 <div class="informaltable"><table width="100%" border="0">
605 <colgroup>
606 <col width="300px" class="enum_members_name">
607 <col class="enum_members_description">
608 <col width="200px" class="enum_members_annotations">
129609 </colgroup>
130610 <tbody>
131611 <tr>
132 <td><p><a name="GVIR-CONFIG-STORAGE-POOL-TYPE-DIR:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_STORAGE_POOL_TYPE_DIR</code></span></p></td>
133 <td></td>
134 </tr>
135 <tr>
136 <td><p><a name="GVIR-CONFIG-STORAGE-POOL-TYPE-FS:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_STORAGE_POOL_TYPE_FS</code></span></p></td>
137 <td></td>
138 </tr>
139 <tr>
140 <td><p><a name="GVIR-CONFIG-STORAGE-POOL-TYPE-NETFS:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_STORAGE_POOL_TYPE_NETFS</code></span></p></td>
141 <td></td>
142 </tr>
143 <tr>
144 <td><p><a name="GVIR-CONFIG-STORAGE-POOL-TYPE-LOGICAL:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_STORAGE_POOL_TYPE_LOGICAL</code></span></p></td>
145 <td></td>
146 </tr>
147 <tr>
148 <td><p><a name="GVIR-CONFIG-STORAGE-POOL-TYPE-DISK:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_STORAGE_POOL_TYPE_DISK</code></span></p></td>
149 <td></td>
150 </tr>
151 <tr>
152 <td><p><a name="GVIR-CONFIG-STORAGE-POOL-TYPE-ISCSI:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_STORAGE_POOL_TYPE_ISCSI</code></span></p></td>
153 <td></td>
154 </tr>
155 <tr>
156 <td><p><a name="GVIR-CONFIG-STORAGE-POOL-TYPE-SCSI:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_STORAGE_POOL_TYPE_SCSI</code></span></p></td>
157 <td></td>
158 </tr>
159 <tr>
160 <td><p><a name="GVIR-CONFIG-STORAGE-POOL-TYPE-MPATH:CAPS"></a><span class="term"><code class="literal">GVIR_CONFIG_STORAGE_POOL_TYPE_MPATH</code></span></p></td>
161 <td></td>
612 <td class="enum_member_name"><p><a name="GVIR-CONFIG-STORAGE-POOL-TYPE-DIR:CAPS"></a>GVIR_CONFIG_STORAGE_POOL_TYPE_DIR</p></td>
613 <td> </td>
614 <td> </td>
615 </tr>
616 <tr>
617 <td class="enum_member_name"><p><a name="GVIR-CONFIG-STORAGE-POOL-TYPE-FS:CAPS"></a>GVIR_CONFIG_STORAGE_POOL_TYPE_FS</p></td>
618 <td> </td>
619 <td> </td>
620 </tr>
621 <tr>
622 <td class="enum_member_name"><p><a name="GVIR-CONFIG-STORAGE-POOL-TYPE-NETFS:CAPS"></a>GVIR_CONFIG_STORAGE_POOL_TYPE_NETFS</p></td>
623 <td> </td>
624 <td> </td>
625 </tr>
626 <tr>
627 <td class="enum_member_name"><p><a name="GVIR-CONFIG-STORAGE-POOL-TYPE-LOGICAL:CAPS"></a>GVIR_CONFIG_STORAGE_POOL_TYPE_LOGICAL</p></td>
628 <td> </td>
629 <td> </td>
630 </tr>
631 <tr>
632 <td class="enum_member_name"><p><a name="GVIR-CONFIG-STORAGE-POOL-TYPE-DISK:CAPS"></a>GVIR_CONFIG_STORAGE_POOL_TYPE_DISK</p></td>
633 <td> </td>
634 <td> </td>
635 </tr>
636 <tr>
637 <td class="enum_member_name"><p><a name="GVIR-CONFIG-STORAGE-POOL-TYPE-ISCSI:CAPS"></a>GVIR_CONFIG_STORAGE_POOL_TYPE_ISCSI</p></td>
638 <td> </td>
639 <td> </td>
640 </tr>
641 <tr>
642 <td class="enum_member_name"><p><a name="GVIR-CONFIG-STORAGE-POOL-TYPE-SCSI:CAPS"></a>GVIR_CONFIG_STORAGE_POOL_TYPE_SCSI</p></td>
643 <td> </td>
644 <td> </td>
645 </tr>
646 <tr>
647 <td class="enum_member_name"><p><a name="GVIR-CONFIG-STORAGE-POOL-TYPE-MPATH:CAPS"></a>GVIR_CONFIG_STORAGE_POOL_TYPE_MPATH</p></td>
648 <td> </td>
649 <td> </td>
162650 </tr>
163651 </tbody>
164652 </table></div>
165653 </div>
166 <hr>
167 <div class="refsect2">
168 <a name="gvir-config-storage-pool-new"></a><h3>gvir_config_storage_pool_new ()</h3>
169 <pre class="programlisting"><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="returnvalue">GVirConfigStoragePool</span></a> * gvir_config_storage_pool_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
170 </div>
171 <hr>
172 <div class="refsect2">
173 <a name="gvir-config-storage-pool-new-from-xml"></a><h3>gvir_config_storage_pool_new_from_xml ()</h3>
174 <pre class="programlisting"><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="returnvalue">GVirConfigStoragePool</span></a> * gvir_config_storage_pool_new_from_xml
175 (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
176 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
177 </div>
178 <hr>
179 <div class="refsect2">
180 <a name="gvir-config-storage-pool-get-allocation"></a><h3>gvir_config_storage_pool_get_allocation ()</h3>
181 <pre class="programlisting"><span class="returnvalue">guint64</span> gvir_config_storage_pool_get_allocation
182 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
183 <p>
184 Gets the total storage allocation for the pool.
185 </p>
186 <div class="variablelist"><table border="0" class="variablelist">
187 <colgroup>
188 <col align="left" valign="top">
189 <col>
190 </colgroup>
191 <tbody>
192 <tr>
193 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
194 <td>a <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a>
195 </td>
196 </tr>
197 <tr>
198 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
199 <td>total storage allocation in bytes.</td>
200 </tr>
201 </tbody>
202 </table></div>
203 </div>
204 <hr>
205 <div class="refsect2">
206 <a name="gvir-config-storage-pool-set-allocation"></a><h3>gvir_config_storage_pool_set_allocation ()</h3>
207 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_storage_pool_set_allocation
208 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
209 <em class="parameter"><code><span class="type">guint64</span> allocation</code></em>);</pre>
210 </div>
211 <hr>
212 <div class="refsect2">
213 <a name="gvir-config-storage-pool-get-available"></a><h3>gvir_config_storage_pool_get_available ()</h3>
214 <pre class="programlisting"><span class="returnvalue">guint64</span> gvir_config_storage_pool_get_available
215 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
216 <p>
217 Gets the free space available for allocating new volumes in the pool.
218 </p>
219 <div class="variablelist"><table border="0" class="variablelist">
220 <colgroup>
221 <col align="left" valign="top">
222 <col>
223 </colgroup>
224 <tbody>
225 <tr>
226 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
227 <td>a <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a>
228 </td>
229 </tr>
230 <tr>
231 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
232 <td>free space available in bytes.</td>
233 </tr>
234 </tbody>
235 </table></div>
236 </div>
237 <hr>
238 <div class="refsect2">
239 <a name="gvir-config-storage-pool-set-available"></a><h3>gvir_config_storage_pool_set_available ()</h3>
240 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_storage_pool_set_available
241 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
242 <em class="parameter"><code><span class="type">guint64</span> available</code></em>);</pre>
243 </div>
244 <hr>
245 <div class="refsect2">
246 <a name="gvir-config-storage-pool-get-capacity"></a><h3>gvir_config_storage_pool_get_capacity ()</h3>
247 <pre class="programlisting"><span class="returnvalue">guint64</span> gvir_config_storage_pool_get_capacity
248 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
249 <p>
250 Gets the total storage capacity for the pool.
251 </p>
252 <div class="variablelist"><table border="0" class="variablelist">
253 <colgroup>
254 <col align="left" valign="top">
255 <col>
256 </colgroup>
257 <tbody>
258 <tr>
259 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
260 <td>a <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a>
261 </td>
262 </tr>
263 <tr>
264 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
265 <td>total storage capacity in bytes.</td>
266 </tr>
267 </tbody>
268 </table></div>
269 </div>
270 <hr>
271 <div class="refsect2">
272 <a name="gvir-config-storage-pool-set-capacity"></a><h3>gvir_config_storage_pool_set_capacity ()</h3>
273 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_storage_pool_set_capacity
274 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
275 <em class="parameter"><code><span class="type">guint64</span> capacity</code></em>);</pre>
276 </div>
277 <hr>
278 <div class="refsect2">
279 <a name="gvir-config-storage-pool-get-name"></a><h3>gvir_config_storage_pool_get_name ()</h3>
280 <pre class="programlisting">const <span class="returnvalue">char</span> * gvir_config_storage_pool_get_name (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
281 <p>
282 Gets the name of the pool.
283 </p>
284 <div class="variablelist"><table border="0" class="variablelist">
285 <colgroup>
286 <col align="left" valign="top">
287 <col>
288 </colgroup>
289 <tbody>
290 <tr>
291 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
292 <td>a <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a>
293 </td>
294 </tr>
295 <tr>
296 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
297 <td>name of <em class="parameter"><code>pool</code></em>.</td>
298 </tr>
299 </tbody>
300 </table></div>
301 </div>
302 <hr>
303 <div class="refsect2">
304 <a name="gvir-config-storage-pool-set-name"></a><h3>gvir_config_storage_pool_set_name ()</h3>
305 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_storage_pool_set_name (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
306 <em class="parameter"><code>const <span class="type">char</span> *name</code></em>);</pre>
307 <div class="variablelist"><table border="0" class="variablelist">
308 <colgroup>
309 <col align="left" valign="top">
310 <col>
311 </colgroup>
312 <tbody><tr>
313 <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
314 <td>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
315 </td>
316 </tr></tbody>
317 </table></div>
318 </div>
319 <hr>
320 <div class="refsect2">
321 <a name="gvir-config-storage-pool-get-pool-type"></a><h3>gvir_config_storage_pool_get_pool_type ()</h3>
322 <pre class="programlisting"><a class="link" href="GVirConfigStoragePool.html#GVirConfigStoragePoolType" title="enum GVirConfigStoragePoolType"><span class="returnvalue">GVirConfigStoragePoolType</span></a> gvir_config_storage_pool_get_pool_type
323 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
324 <p>
325 Gets the type of the pool.
326 </p>
327 <div class="variablelist"><table border="0" class="variablelist">
328 <colgroup>
329 <col align="left" valign="top">
330 <col>
331 </colgroup>
332 <tbody>
333 <tr>
334 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
335 <td>a <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a>
336 </td>
337 </tr>
338 <tr>
339 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
340 <td>
341 <span class="type">Gname</span> of <em class="parameter"><code>pool</code></em>.</td>
342 </tr>
343 </tbody>
344 </table></div>
345 </div>
346 <hr>
347 <div class="refsect2">
348 <a name="gvir-config-storage-pool-set-pool-type"></a><h3>gvir_config_storage_pool_set_pool_type ()</h3>
349 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_storage_pool_set_pool_type
350 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
351 <em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html#GVirConfigStoragePoolType" title="enum GVirConfigStoragePoolType"><span class="type">GVirConfigStoragePoolType</span></a> type</code></em>);</pre>
352 </div>
353 <hr>
354 <div class="refsect2">
355 <a name="gvir-config-storage-pool-get-source"></a><h3>gvir_config_storage_pool_get_source ()</h3>
356 <pre class="programlisting"><span class="returnvalue">GVirConfigStoragePoolSource</span> * gvir_config_storage_pool_get_source
357 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
358 <p>
359 Gets the source for <em class="parameter"><code>pool</code></em>
360 </p>
361 <div class="variablelist"><table border="0" class="variablelist">
362 <colgroup>
363 <col align="left" valign="top">
364 <col>
365 </colgroup>
366 <tbody>
367 <tr>
368 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
369 <td>a <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a>
370 </td>
371 </tr>
372 <tr>
373 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
374 <td>a new <span class="type">GVirConfigStoragePoolSource</span> instance. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
375 </td>
376 </tr>
377 </tbody>
378 </table></div>
379 </div>
380 <hr>
381 <div class="refsect2">
382 <a name="gvir-config-storage-pool-set-source"></a><h3>gvir_config_storage_pool_set_source ()</h3>
383 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_storage_pool_set_source (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
384 <em class="parameter"><code><span class="type">GVirConfigStoragePoolSource</span> *source</code></em>);</pre>
385 <div class="variablelist"><table border="0" class="variablelist">
386 <colgroup>
387 <col align="left" valign="top">
388 <col>
389 </colgroup>
390 <tbody><tr>
391 <td><p><span class="term"><em class="parameter"><code>source</code></em> :</span></p></td>
392 <td>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
393 </td>
394 </tr></tbody>
395 </table></div>
396 </div>
397 <hr>
398 <div class="refsect2">
399 <a name="gvir-config-storage-pool-get-target"></a><h3>gvir_config_storage_pool_get_target ()</h3>
400 <pre class="programlisting"><span class="returnvalue">GVirConfigStoragePoolTarget</span> * gvir_config_storage_pool_get_target
401 (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
402 <p>
403 Gets the target for <em class="parameter"><code>pool</code></em>
404 </p>
405 <div class="variablelist"><table border="0" class="variablelist">
406 <colgroup>
407 <col align="left" valign="top">
408 <col>
409 </colgroup>
410 <tbody>
411 <tr>
412 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
413 <td>a <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a>
414 </td>
415 </tr>
416 <tr>
417 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
418 <td>a new <span class="type">GVirConfigStoragePoolTarget</span> instance. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
419 </td>
420 </tr>
421 </tbody>
422 </table></div>
423 </div>
424 <hr>
425 <div class="refsect2">
426 <a name="gvir-config-storage-pool-set-target"></a><h3>gvir_config_storage_pool_set_target ()</h3>
427 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_storage_pool_set_target (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
428 <em class="parameter"><code><span class="type">GVirConfigStoragePoolTarget</span> *target</code></em>);</pre>
429 <div class="variablelist"><table border="0" class="variablelist">
430 <colgroup>
431 <col align="left" valign="top">
432 <col>
433 </colgroup>
434 <tbody><tr>
435 <td><p><span class="term"><em class="parameter"><code>target</code></em> :</span></p></td>
436 <td>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
437 </td>
438 </tr></tbody>
439 </table></div>
440 </div>
441 <hr>
442 <div class="refsect2">
443 <a name="gvir-config-storage-pool-get-uuid"></a><h3>gvir_config_storage_pool_get_uuid ()</h3>
444 <pre class="programlisting">const <span class="returnvalue">char</span> * gvir_config_storage_pool_get_uuid (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>);</pre>
445 <p>
446 Gets the unique identifier for <em class="parameter"><code>pool</code></em>.
447 </p>
448 <div class="variablelist"><table border="0" class="variablelist">
449 <colgroup>
450 <col align="left" valign="top">
451 <col>
452 </colgroup>
453 <tbody>
454 <tr>
455 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
456 <td>a <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a>
457 </td>
458 </tr>
459 <tr>
460 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
461 <td>unique identifier for <em class="parameter"><code>pool</code></em>.</td>
462 </tr>
463 </tbody>
464 </table></div>
465 </div>
466 <hr>
467 <div class="refsect2">
468 <a name="gvir-config-storage-pool-set-uuid"></a><h3>gvir_config_storage_pool_set_uuid ()</h3>
469 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_storage_pool_set_uuid (<em class="parameter"><code><a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool"><span class="type">GVirConfigStoragePool</span></a> *pool</code></em>,
470 <em class="parameter"><code>const <span class="type">char</span> *uuid</code></em>);</pre>
471 <div class="variablelist"><table border="0" class="variablelist">
472 <colgroup>
473 <col align="left" valign="top">
474 <col>
475 </colgroup>
476 <tbody><tr>
477 <td><p><span class="term"><em class="parameter"><code>uuid</code></em> :</span></p></td>
478 <td>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
479 </td>
480 </tr></tbody>
481 </table></div>
654 </div>
655 <hr>
656 <div class="refsect2">
657 <a name="GVirConfigStoragePoolPrivate"></a><h3>GVirConfigStoragePoolPrivate</h3>
658 <pre class="programlisting">typedef struct _GVirConfigStoragePoolPrivate GVirConfigStoragePoolPrivate;</pre>
482659 </div>
483660 </div>
484661 </div>
485662 <div class="footer">
486663 <hr>
487 Generated by GTK-Doc V1.19</div>
664 Generated by GTK-Doc V1.21</div>
488665 </body>
489666 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirConfigStorageVol</title>
4 <title>Libvirt-gconfig Reference Manual: GVirConfigStorageVol</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
88 <link rel="prev" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">
99 <link rel="next" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirConfigStoragePool.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gconfig Reference Manual</th>
20 <td><a accesskey="n" href="GVirConfigCapabilities.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirConfigStorageVol.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirConfigStorageVol.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirConfigStorageVol.object-hierarchy" class="shortcut">Object Hierarchy</a>
28 </td></tr>
29 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirConfigStorageVol.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirConfigStorageVol.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
19 </td>
20 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
22 <td><a accesskey="p" href="GVirConfigStoragePool.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23 <td><a accesskey="n" href="GVirConfigCapabilities.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24 </tr></table>
3025 <div class="refentry">
3126 <a name="GVirConfigStorageVol"></a><div class="titlepage"></div>
3227 <div class="refnamediv"><table width="100%"><tr>
3429 <h2><span class="refentrytitle"><a name="GVirConfigStorageVol.top_of_page"></a>GVirConfigStorageVol</span></h2>
3530 <p>GVirConfigStorageVol</p>
3631 </td>
37 <td valign="top" align="right"></td>
32 <td class="gallery_image" valign="top" align="right"></td>
3833 </tr></table></div>
39 <div class="refsynopsisdiv">
40 <a name="GVirConfigStorageVol.synopsis"></a><h2>Synopsis</h2>
41 <pre class="synopsis">struct <a class="link" href="GVirConfigStorageVol.html#GVirConfigStorageVol-struct" title="struct GVirConfigStorageVol">GVirConfigStorageVol</a>;
42 struct <a class="link" href="GVirConfigStorageVol.html#GVirConfigStorageVolClass" title="struct GVirConfigStorageVolClass">GVirConfigStorageVolClass</a>;
43 <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="returnvalue">GVirConfigStorageVol</span></a> * <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-new" title="gvir_config_storage_vol_new ()">gvir_config_storage_vol_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
44 <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="returnvalue">GVirConfigStorageVol</span></a> * <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-new-from-xml" title="gvir_config_storage_vol_new_from_xml ()">gvir_config_storage_vol_new_from_xml</a>
45 (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
46 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
47 <span class="returnvalue">void</span> <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-allocation" title="gvir_config_storage_vol_set_allocation ()">gvir_config_storage_vol_set_allocation</a>
48 (<em class="parameter"><code><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="type">GVirConfigStorageVol</span></a> *vol</code></em>,
49 <em class="parameter"><code><span class="type">guint64</span> allocation</code></em>);
50 <span class="returnvalue">void</span> <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-backing-store" title="gvir_config_storage_vol_set_backing_store ()">gvir_config_storage_vol_set_backing_store</a>
51 (<em class="parameter"><code><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="type">GVirConfigStorageVol</span></a> *vol</code></em>,
52 <em class="parameter"><code><span class="type">GVirConfigStorageVolBackingStore</span> *backing_store</code></em>);
53 <span class="returnvalue">void</span> <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-capacity" title="gvir_config_storage_vol_set_capacity ()">gvir_config_storage_vol_set_capacity</a>
54 (<em class="parameter"><code><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="type">GVirConfigStorageVol</span></a> *vol</code></em>,
55 <em class="parameter"><code><span class="type">guint64</span> capacity</code></em>);
56 <span class="returnvalue">void</span> <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-name" title="gvir_config_storage_vol_set_name ()">gvir_config_storage_vol_set_name</a> (<em class="parameter"><code><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="type">GVirConfigStorageVol</span></a> *vol</code></em>,
57 <em class="parameter"><code>const <span class="type">char</span> *name</code></em>);
58 <span class="returnvalue">void</span> <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-target" title="gvir_config_storage_vol_set_target ()">gvir_config_storage_vol_set_target</a> (<em class="parameter"><code><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="type">GVirConfigStorageVol</span></a> *vol</code></em>,
59 <em class="parameter"><code><span class="type">GVirConfigStorageVolTarget</span> *target</code></em>);
34 <div class="refsect1">
35 <a name="GVirConfigStorageVol.functions"></a><h2>Functions</h2>
36 <div class="informaltable"><table width="100%" border="0">
37 <colgroup>
38 <col width="150px" class="functions_return">
39 <col class="functions_name">
40 </colgroup>
41 <tbody>
42 <tr>
43 <td class="function_type">
44 <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="returnvalue">GVirConfigStorageVol</span></a> *
45 </td>
46 <td class="function_name">
47 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-new" title="gvir_config_storage_vol_new ()">gvir_config_storage_vol_new</a> <span class="c_punctuation">()</span>
48 </td>
49 </tr>
50 <tr>
51 <td class="function_type">
52 <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="returnvalue">GVirConfigStorageVol</span></a> *
53 </td>
54 <td class="function_name">
55 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-new-from-xml" title="gvir_config_storage_vol_new_from_xml ()">gvir_config_storage_vol_new_from_xml</a> <span class="c_punctuation">()</span>
56 </td>
57 </tr>
58 <tr>
59 <td class="function_type">
60 <span class="returnvalue">void</span>
61 </td>
62 <td class="function_name">
63 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-allocation" title="gvir_config_storage_vol_set_allocation ()">gvir_config_storage_vol_set_allocation</a> <span class="c_punctuation">()</span>
64 </td>
65 </tr>
66 <tr>
67 <td class="function_type">
68 <span class="returnvalue">void</span>
69 </td>
70 <td class="function_name">
71 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-backing-store" title="gvir_config_storage_vol_set_backing_store ()">gvir_config_storage_vol_set_backing_store</a> <span class="c_punctuation">()</span>
72 </td>
73 </tr>
74 <tr>
75 <td class="function_type">
76 <span class="returnvalue">void</span>
77 </td>
78 <td class="function_name">
79 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-capacity" title="gvir_config_storage_vol_set_capacity ()">gvir_config_storage_vol_set_capacity</a> <span class="c_punctuation">()</span>
80 </td>
81 </tr>
82 <tr>
83 <td class="function_type">
84 <span class="returnvalue">void</span>
85 </td>
86 <td class="function_name">
87 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-name" title="gvir_config_storage_vol_set_name ()">gvir_config_storage_vol_set_name</a> <span class="c_punctuation">()</span>
88 </td>
89 </tr>
90 <tr>
91 <td class="function_type">
92 <span class="returnvalue">void</span>
93 </td>
94 <td class="function_name">
95 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-target" title="gvir_config_storage_vol_set_target ()">gvir_config_storage_vol_set_target</a> <span class="c_punctuation">()</span>
96 </td>
97 </tr>
98 </tbody>
99 </table></div>
100 </div>
101 <div class="refsect1">
102 <a name="GVirConfigStorageVol.other"></a><h2>Types and Values</h2>
103 <div class="informaltable"><table width="100%" border="0">
104 <colgroup>
105 <col width="150px" class="name">
106 <col class="description">
107 </colgroup>
108 <tbody>
109 <tr>
110 <td class="datatype_keyword">struct</td>
111 <td class="function_name"><a class="link" href="GVirConfigStorageVol.html#GVirConfigStorageVol-struct" title="struct GVirConfigStorageVol">GVirConfigStorageVol</a></td>
112 </tr>
113 <tr>
114 <td class="datatype_keyword">struct</td>
115 <td class="function_name"><a class="link" href="GVirConfigStorageVol.html#GVirConfigStorageVolClass" title="struct GVirConfigStorageVolClass">GVirConfigStorageVolClass</a></td>
116 </tr>
117 <tr>
118 <td class="datatype_keyword"> </td>
119 <td class="function_name"><a class="link" href="GVirConfigStorageVol.html#GVirConfigStorageVolPrivate" title="GVirConfigStorageVolPrivate">GVirConfigStorageVolPrivate</a></td>
120 </tr>
121 </tbody>
122 </table></div>
123 </div>
124 <div class="refsect1">
125 <a name="GVirConfigStorageVol.object-hierarchy"></a><h2>Object Hierarchy</h2>
126 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
127 <span class="lineart">╰──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
128 <span class="lineart">╰──</span> GVirConfigStorageVol
60129 </pre>
61130 </div>
62131 <div class="refsect1">
63 <a name="GVirConfigStorageVol.object-hierarchy"></a><h2>Object Hierarchy</h2>
64 <pre class="synopsis">
65 GObject
66 +----<a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
67 +----GVirConfigStorageVol
68 </pre>
69 </div>
70 <div class="refsect1">
71132 <a name="GVirConfigStorageVol.description"></a><h2>Description</h2>
72133 </div>
73134 <div class="refsect1">
74 <a name="GVirConfigStorageVol.details"></a><h2>Details</h2>
135 <a name="GVirConfigStorageVol.functions_details"></a><h2>Functions</h2>
136 <div class="refsect2">
137 <a name="gvir-config-storage-vol-new"></a><h3>gvir_config_storage_vol_new ()</h3>
138 <pre class="programlisting"><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="returnvalue">GVirConfigStorageVol</span></a> *
139 gvir_config_storage_vol_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
140 </div>
141 <hr>
142 <div class="refsect2">
143 <a name="gvir-config-storage-vol-new-from-xml"></a><h3>gvir_config_storage_vol_new_from_xml ()</h3>
144 <pre class="programlisting"><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="returnvalue">GVirConfigStorageVol</span></a> *
145 gvir_config_storage_vol_new_from_xml (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *xml</code></em>,
146 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
147 </div>
148 <hr>
149 <div class="refsect2">
150 <a name="gvir-config-storage-vol-set-allocation"></a><h3>gvir_config_storage_vol_set_allocation ()</h3>
151 <pre class="programlisting"><span class="returnvalue">void</span>
152 gvir_config_storage_vol_set_allocation
153 (<em class="parameter"><code><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="type">GVirConfigStorageVol</span></a> *vol</code></em>,
154 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> allocation</code></em>);</pre>
155 </div>
156 <hr>
157 <div class="refsect2">
158 <a name="gvir-config-storage-vol-set-backing-store"></a><h3>gvir_config_storage_vol_set_backing_store ()</h3>
159 <pre class="programlisting"><span class="returnvalue">void</span>
160 gvir_config_storage_vol_set_backing_store
161 (<em class="parameter"><code><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="type">GVirConfigStorageVol</span></a> *vol</code></em>,
162 <em class="parameter"><code><span class="type">GVirConfigStorageVolBackingStore</span> *backing_store</code></em>);</pre>
163 <div class="refsect3">
164 <a name="id-1.2.11.7.5.4"></a><h4>Parameters</h4>
165 <div class="informaltable"><table width="100%" border="0">
166 <colgroup>
167 <col width="150px" class="parameters_name">
168 <col class="parameters_description">
169 <col width="200px" class="parameters_annotations">
170 </colgroup>
171 <tbody><tr>
172 <td class="parameter_name"><p>backing_store</p></td>
173 <td class="parameter_description"><p>. </p></td>
174 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
175 </tr></tbody>
176 </table></div>
177 </div>
178 </div>
179 <hr>
180 <div class="refsect2">
181 <a name="gvir-config-storage-vol-set-capacity"></a><h3>gvir_config_storage_vol_set_capacity ()</h3>
182 <pre class="programlisting"><span class="returnvalue">void</span>
183 gvir_config_storage_vol_set_capacity (<em class="parameter"><code><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="type">GVirConfigStorageVol</span></a> *vol</code></em>,
184 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> capacity</code></em>);</pre>
185 </div>
186 <hr>
187 <div class="refsect2">
188 <a name="gvir-config-storage-vol-set-name"></a><h3>gvir_config_storage_vol_set_name ()</h3>
189 <pre class="programlisting"><span class="returnvalue">void</span>
190 gvir_config_storage_vol_set_name (<em class="parameter"><code><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="type">GVirConfigStorageVol</span></a> *vol</code></em>,
191 <em class="parameter"><code>const <span class="type">char</span> *name</code></em>);</pre>
192 <div class="refsect3">
193 <a name="id-1.2.11.7.7.4"></a><h4>Parameters</h4>
194 <div class="informaltable"><table width="100%" border="0">
195 <colgroup>
196 <col width="150px" class="parameters_name">
197 <col class="parameters_description">
198 <col width="200px" class="parameters_annotations">
199 </colgroup>
200 <tbody><tr>
201 <td class="parameter_name"><p>name</p></td>
202 <td class="parameter_description"><p>. </p></td>
203 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
204 </tr></tbody>
205 </table></div>
206 </div>
207 </div>
208 <hr>
209 <div class="refsect2">
210 <a name="gvir-config-storage-vol-set-target"></a><h3>gvir_config_storage_vol_set_target ()</h3>
211 <pre class="programlisting"><span class="returnvalue">void</span>
212 gvir_config_storage_vol_set_target (<em class="parameter"><code><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="type">GVirConfigStorageVol</span></a> *vol</code></em>,
213 <em class="parameter"><code><span class="type">GVirConfigStorageVolTarget</span> *target</code></em>);</pre>
214 <div class="refsect3">
215 <a name="id-1.2.11.7.8.4"></a><h4>Parameters</h4>
216 <div class="informaltable"><table width="100%" border="0">
217 <colgroup>
218 <col width="150px" class="parameters_name">
219 <col class="parameters_description">
220 <col width="200px" class="parameters_annotations">
221 </colgroup>
222 <tbody><tr>
223 <td class="parameter_name"><p>target</p></td>
224 <td class="parameter_description"><p>. </p></td>
225 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
226 </tr></tbody>
227 </table></div>
228 </div>
229 </div>
230 </div>
231 <div class="refsect1">
232 <a name="GVirConfigStorageVol.other_details"></a><h2>Types and Values</h2>
75233 <div class="refsect2">
76234 <a name="GVirConfigStorageVol-struct"></a><h3>struct GVirConfigStorageVol</h3>
77235 <pre class="programlisting">struct GVirConfigStorageVol;</pre>
88246 </div>
89247 <hr>
90248 <div class="refsect2">
91 <a name="gvir-config-storage-vol-new"></a><h3>gvir_config_storage_vol_new ()</h3>
92 <pre class="programlisting"><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="returnvalue">GVirConfigStorageVol</span></a> * gvir_config_storage_vol_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
93 </div>
94 <hr>
95 <div class="refsect2">
96 <a name="gvir-config-storage-vol-new-from-xml"></a><h3>gvir_config_storage_vol_new_from_xml ()</h3>
97 <pre class="programlisting"><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="returnvalue">GVirConfigStorageVol</span></a> * gvir_config_storage_vol_new_from_xml
98 (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
99 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
100 </div>
101 <hr>
102 <div class="refsect2">
103 <a name="gvir-config-storage-vol-set-allocation"></a><h3>gvir_config_storage_vol_set_allocation ()</h3>
104 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_storage_vol_set_allocation
105 (<em class="parameter"><code><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="type">GVirConfigStorageVol</span></a> *vol</code></em>,
106 <em class="parameter"><code><span class="type">guint64</span> allocation</code></em>);</pre>
107 </div>
108 <hr>
109 <div class="refsect2">
110 <a name="gvir-config-storage-vol-set-backing-store"></a><h3>gvir_config_storage_vol_set_backing_store ()</h3>
111 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_storage_vol_set_backing_store
112 (<em class="parameter"><code><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="type">GVirConfigStorageVol</span></a> *vol</code></em>,
113 <em class="parameter"><code><span class="type">GVirConfigStorageVolBackingStore</span> *backing_store</code></em>);</pre>
114 <div class="variablelist"><table border="0" class="variablelist">
115 <colgroup>
116 <col align="left" valign="top">
117 <col>
118 </colgroup>
119 <tbody><tr>
120 <td><p><span class="term"><em class="parameter"><code>backing_store</code></em> :</span></p></td>
121 <td>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
122 </td>
123 </tr></tbody>
124 </table></div>
125 </div>
126 <hr>
127 <div class="refsect2">
128 <a name="gvir-config-storage-vol-set-capacity"></a><h3>gvir_config_storage_vol_set_capacity ()</h3>
129 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_storage_vol_set_capacity
130 (<em class="parameter"><code><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="type">GVirConfigStorageVol</span></a> *vol</code></em>,
131 <em class="parameter"><code><span class="type">guint64</span> capacity</code></em>);</pre>
132 </div>
133 <hr>
134 <div class="refsect2">
135 <a name="gvir-config-storage-vol-set-name"></a><h3>gvir_config_storage_vol_set_name ()</h3>
136 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_storage_vol_set_name (<em class="parameter"><code><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="type">GVirConfigStorageVol</span></a> *vol</code></em>,
137 <em class="parameter"><code>const <span class="type">char</span> *name</code></em>);</pre>
138 <div class="variablelist"><table border="0" class="variablelist">
139 <colgroup>
140 <col align="left" valign="top">
141 <col>
142 </colgroup>
143 <tbody><tr>
144 <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
145 <td>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
146 </td>
147 </tr></tbody>
148 </table></div>
149 </div>
150 <hr>
151 <div class="refsect2">
152 <a name="gvir-config-storage-vol-set-target"></a><h3>gvir_config_storage_vol_set_target ()</h3>
153 <pre class="programlisting"><span class="returnvalue">void</span> gvir_config_storage_vol_set_target (<em class="parameter"><code><a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol"><span class="type">GVirConfigStorageVol</span></a> *vol</code></em>,
154 <em class="parameter"><code><span class="type">GVirConfigStorageVolTarget</span> *target</code></em>);</pre>
155 <div class="variablelist"><table border="0" class="variablelist">
156 <colgroup>
157 <col align="left" valign="top">
158 <col>
159 </colgroup>
160 <tbody><tr>
161 <td><p><span class="term"><em class="parameter"><code>target</code></em> :</span></p></td>
162 <td>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
163 </td>
164 </tr></tbody>
165 </table></div>
249 <a name="GVirConfigStorageVolPrivate"></a><h3>GVirConfigStorageVolPrivate</h3>
250 <pre class="programlisting">typedef struct _GVirConfigStorageVolPrivate GVirConfigStorageVolPrivate;</pre>
166251 </div>
167252 </div>
168253 </div>
169254 <div class="footer">
170255 <hr>
171 Generated by GTK-Doc V1.19</div>
256 Generated by GTK-Doc V1.21</div>
172257 </body>
173258 </html>
+0
-95
docs/libvirt-gconfig/html/Libvirt-gconfig-GVirConfig.html less more
0 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirConfig</title>
5 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
6 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
7 <link rel="up" href="ch01.html" title="Libvirt-gconfig">
8 <link rel="prev" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">
9 <link rel="next" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
11 <link rel="stylesheet" href="style.css" type="text/css">
12 </head>
13 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirConfigDomainSnapshot.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gconfig Reference Manual</th>
20 <td><a accesskey="n" href="GVirConfigNetworkFilter.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#Libvirt-gconfig-GVirConfig.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#Libvirt-gconfig-GVirConfig.description" class="shortcut">Description</a>
26  | 
27 <a href="#Libvirt-gconfig-GVirConfig.object-hierarchy" class="shortcut">Object Hierarchy</a>
28 </td></tr>
29 </table>
30 <div class="refentry">
31 <a name="Libvirt-gconfig-GVirConfig"></a><div class="titlepage"></div>
32 <div class="refnamediv"><table width="100%"><tr>
33 <td valign="top">
34 <h2><span class="refentrytitle"><a name="Libvirt-gconfig-GVirConfig.top_of_page"></a>GVirConfig</span></h2>
35 <p>GVirConfig</p>
36 </td>
37 <td valign="top" align="right"></td>
38 </tr></table></div>
39 <div class="refsynopsisdiv">
40 <a name="Libvirt-gconfig-GVirConfig.synopsis"></a><h2>Synopsis</h2>
41 <a name="GVirConfigInterface"></a><pre class="synopsis">struct <a class="link" href="Libvirt-gconfig-GVirConfig.html#GVirConfigInterface-struct" title="struct GVirConfigInterface">GVirConfigInterface</a>;
42 struct <a class="link" href="Libvirt-gconfig-GVirConfig.html#GVirConfigInterfaceClass" title="struct GVirConfigInterfaceClass">GVirConfigInterfaceClass</a>;
43 <a class="link" href="Libvirt-gconfig-GVirConfig.html#GVirConfigInterface"><span class="returnvalue">GVirConfigInterface</span></a> * <a class="link" href="Libvirt-gconfig-GVirConfig.html#gvir-config-interface-new" title="gvir_config_interface_new ()">gvir_config_interface_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
44 <a class="link" href="Libvirt-gconfig-GVirConfig.html#GVirConfigInterface"><span class="returnvalue">GVirConfigInterface</span></a> * <a class="link" href="Libvirt-gconfig-GVirConfig.html#gvir-config-interface-new-from-xml" title="gvir_config_interface_new_from_xml ()">gvir_config_interface_new_from_xml</a>
45 (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
46 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
47 </pre>
48 </div>
49 <div class="refsect1">
50 <a name="Libvirt-gconfig-GVirConfig.object-hierarchy"></a><h2>Object Hierarchy</h2>
51 <pre class="synopsis">
52 GObject
53 +----<a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
54 +----GVirConfigInterface
55 </pre>
56 </div>
57 <div class="refsect1">
58 <a name="Libvirt-gconfig-GVirConfig.description"></a><h2>Description</h2>
59 </div>
60 <div class="refsect1">
61 <a name="Libvirt-gconfig-GVirConfig.details"></a><h2>Details</h2>
62 <div class="refsect2">
63 <a name="GVirConfigInterface-struct"></a><h3>struct GVirConfigInterface</h3>
64 <pre class="programlisting">struct GVirConfigInterface;</pre>
65 </div>
66 <hr>
67 <div class="refsect2">
68 <a name="GVirConfigInterfaceClass"></a><h3>struct GVirConfigInterfaceClass</h3>
69 <pre class="programlisting">struct GVirConfigInterfaceClass {
70 GVirConfigObjectClass parent_class;
71
72 gpointer padding[20];
73 };
74 </pre>
75 </div>
76 <hr>
77 <div class="refsect2">
78 <a name="gvir-config-interface-new"></a><h3>gvir_config_interface_new ()</h3>
79 <pre class="programlisting"><a class="link" href="Libvirt-gconfig-GVirConfig.html#GVirConfigInterface"><span class="returnvalue">GVirConfigInterface</span></a> * gvir_config_interface_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
80 </div>
81 <hr>
82 <div class="refsect2">
83 <a name="gvir-config-interface-new-from-xml"></a><h3>gvir_config_interface_new_from_xml ()</h3>
84 <pre class="programlisting"><a class="link" href="Libvirt-gconfig-GVirConfig.html#GVirConfigInterface"><span class="returnvalue">GVirConfigInterface</span></a> * gvir_config_interface_new_from_xml
85 (<em class="parameter"><code>const <span class="type">gchar</span> *xml</code></em>,
86 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
87 </div>
88 </div>
89 </div>
90 <div class="footer">
91 <hr>
92 Generated by GTK-Doc V1.19</div>
93 </body>
94 </html>
55 <sub name="GVirConfigObject" link="GVirConfigObject.html"/>
66 <sub name="GVirConfigDomain" link="GVirConfigDomain.html"/>
77 <sub name="GVirConfigDomainSnapshot" link="GVirConfigDomainSnapshot.html"/>
8 <sub name="GVirConfig" link="Libvirt-gconfig-GVirConfig.html"/>
8 <sub name="GVirConfigInterface" link="GVirConfigInterface.html"/>
99 <sub name="GVirConfigNetworkFilter" link="GVirConfigNetworkFilter.html"/>
1010 <sub name="GVirConfigNetwork" link="GVirConfigNetwork.html"/>
1111 <sub name="GVirConfigNodeDevice" link="GVirConfigNodeDevice.html"/>
1919 <sub name="Annotation Glossary" link="annotation-glossary.html"/>
2020 </chapters>
2121 <functions>
22 <keyword type="function" name="gvir_config_object_new ()" link="GVirConfigObject.html#gvir-config-object-new"/>
23 <keyword type="function" name="gvir_config_object_new_from_xml ()" link="GVirConfigObject.html#gvir-config-object-new-from-xml"/>
24 <keyword type="function" name="gvir_config_object_validate ()" link="GVirConfigObject.html#gvir-config-object-validate"/>
25 <keyword type="function" name="gvir_config_object_to_xml ()" link="GVirConfigObject.html#gvir-config-object-to-xml"/>
26 <keyword type="function" name="gvir_config_object_get_schema ()" link="GVirConfigObject.html#gvir-config-object-get-schema"/>
2227 <keyword type="struct" name="struct GVirConfigObject" link="GVirConfigObject.html#GVirConfigObject-struct"/>
2328 <keyword type="struct" name="struct GVirConfigObjectClass" link="GVirConfigObject.html#GVirConfigObjectClass"/>
24 <keyword type="function" name="gvir_config_object_new ()" link="GVirConfigObject.html#gvir-config-object-new"/>
25 <keyword type="function" name="gvir_config_object_new_from_xml ()" link="GVirConfigObject.html#gvir-config-object-new-from-xml"/>
26 <keyword type="function" name="gvir_config_object_validate ()" link="GVirConfigObject.html#gvir-config-object-validate"/>
27 <keyword type="function" name="gvir_config_object_to_xml ()" link="GVirConfigObject.html#gvir-config-object-to-xml"/>
28 <keyword type="function" name="gvir_config_object_get_schema ()" link="GVirConfigObject.html#gvir-config-object-get-schema"/>
29 <keyword type="property" name="The &quot;doc&quot; property" link="GVirConfigObject.html#GVirConfigObject--doc"/>
30 <keyword type="property" name="The &quot;node&quot; property" link="GVirConfigObject.html#GVirConfigObject--node"/>
31 <keyword type="property" name="The &quot;schema&quot; property" link="GVirConfigObject.html#GVirConfigObject--schema"/>
29 <keyword type="struct" name="GVirConfigObjectPrivate" link="GVirConfigObject.html#GVirConfigObjectPrivate"/>
30 <keyword type="property" name="The “doc” property" link="GVirConfigObject.html#GVirConfigObject--doc"/>
31 <keyword type="property" name="The “node” property" link="GVirConfigObject.html#GVirConfigObject--node"/>
32 <keyword type="property" name="The “schema” property" link="GVirConfigObject.html#GVirConfigObject--schema"/>
33 <keyword type="function" name="gvir_config_domain_new_from_xml ()" link="GVirConfigDomain.html#gvir-config-domain-new-from-xml"/>
34 <keyword type="function" name="gvir_config_domain_new ()" link="GVirConfigDomain.html#gvir-config-domain-new"/>
35 <keyword type="function" name="gvir_config_domain_get_virt_type ()" link="GVirConfigDomain.html#gvir-config-domain-get-virt-type"/>
36 <keyword type="function" name="gvir_config_domain_set_virt_type ()" link="GVirConfigDomain.html#gvir-config-domain-set-virt-type"/>
37 <keyword type="function" name="gvir_config_domain_get_name ()" link="GVirConfigDomain.html#gvir-config-domain-get-name"/>
38 <keyword type="function" name="gvir_config_domain_set_name ()" link="GVirConfigDomain.html#gvir-config-domain-set-name"/>
39 <keyword type="function" name="gvir_config_domain_get_uuid ()" link="GVirConfigDomain.html#gvir-config-domain-get-uuid"/>
40 <keyword type="function" name="gvir_config_domain_set_uuid ()" link="GVirConfigDomain.html#gvir-config-domain-set-uuid"/>
41 <keyword type="function" name="gvir_config_domain_get_description ()" link="GVirConfigDomain.html#gvir-config-domain-get-description"/>
42 <keyword type="function" name="gvir_config_domain_set_description ()" link="GVirConfigDomain.html#gvir-config-domain-set-description"/>
43 <keyword type="function" name="gvir_config_domain_get_memory ()" link="GVirConfigDomain.html#gvir-config-domain-get-memory"/>
44 <keyword type="function" name="gvir_config_domain_set_memory ()" link="GVirConfigDomain.html#gvir-config-domain-set-memory"/>
45 <keyword type="function" name="gvir_config_domain_get_current_memory ()" link="GVirConfigDomain.html#gvir-config-domain-get-current-memory"/>
46 <keyword type="function" name="gvir_config_domain_set_current_memory ()" link="GVirConfigDomain.html#gvir-config-domain-set-current-memory"/>
47 <keyword type="function" name="gvir_config_domain_get_vcpus ()" link="GVirConfigDomain.html#gvir-config-domain-get-vcpus"/>
48 <keyword type="function" name="gvir_config_domain_set_vcpus ()" link="GVirConfigDomain.html#gvir-config-domain-set-vcpus"/>
49 <keyword type="function" name="gvir_config_domain_get_features ()" link="GVirConfigDomain.html#gvir-config-domain-get-features"/>
50 <keyword type="function" name="gvir_config_domain_set_features ()" link="GVirConfigDomain.html#gvir-config-domain-set-features"/>
51 <keyword type="function" name="gvir_config_domain_get_clock ()" link="GVirConfigDomain.html#gvir-config-domain-get-clock"/>
52 <keyword type="function" name="gvir_config_domain_set_clock ()" link="GVirConfigDomain.html#gvir-config-domain-set-clock"/>
53 <keyword type="function" name="gvir_config_domain_get_os ()" link="GVirConfigDomain.html#gvir-config-domain-get-os"/>
54 <keyword type="function" name="gvir_config_domain_set_os ()" link="GVirConfigDomain.html#gvir-config-domain-set-os"/>
55 <keyword type="function" name="gvir_config_domain_set_seclabel ()" link="GVirConfigDomain.html#gvir-config-domain-set-seclabel"/>
56 <keyword type="function" name="gvir_config_domain_get_title ()" link="GVirConfigDomain.html#gvir-config-domain-get-title"/>
57 <keyword type="function" name="gvir_config_domain_set_title ()" link="GVirConfigDomain.html#gvir-config-domain-set-title"/>
58 <keyword type="function" name="gvir_config_domain_set_devices ()" link="GVirConfigDomain.html#gvir-config-domain-set-devices"/>
59 <keyword type="function" name="gvir_config_domain_add_device ()" link="GVirConfigDomain.html#gvir-config-domain-add-device"/>
60 <keyword type="function" name="gvir_config_domain_get_devices ()" link="GVirConfigDomain.html#gvir-config-domain-get-devices"/>
61 <keyword type="function" name="gvir_config_domain_set_lifecycle ()" link="GVirConfigDomain.html#gvir-config-domain-set-lifecycle"/>
62 <keyword type="function" name="gvir_config_domain_set_custom_xml ()" link="GVirConfigDomain.html#gvir-config-domain-set-custom-xml"/>
63 <keyword type="function" name="gvir_config_domain_get_custom_xml ()" link="GVirConfigDomain.html#gvir-config-domain-get-custom-xml"/>
64 <keyword type="function" name="gvir_config_domain_get_cpu ()" link="GVirConfigDomain.html#gvir-config-domain-get-cpu"/>
65 <keyword type="function" name="gvir_config_domain_set_cpu ()" link="GVirConfigDomain.html#gvir-config-domain-set-cpu"/>
66 <keyword type="function" name="gvir_config_domain_set_power_management ()" link="GVirConfigDomain.html#gvir-config-domain-set-power-management"/>
3267 <keyword type="struct" name="struct GVirConfigDomain" link="GVirConfigDomain.html#GVirConfigDomain-struct"/>
3368 <keyword type="struct" name="struct GVirConfigDomainClass" link="GVirConfigDomain.html#GVirConfigDomainClass"/>
3469 <keyword type="enum" name="enum GVirConfigDomainVirtType" link="GVirConfigDomain.html#GVirConfigDomainVirtType"/>
3570 <keyword type="enum" name="enum GVirConfigDomainLifecycleEvent" link="GVirConfigDomain.html#GVirConfigDomainLifecycleEvent"/>
3671 <keyword type="enum" name="enum GVirConfigDomainLifecycleAction" link="GVirConfigDomain.html#GVirConfigDomainLifecycleAction"/>
37 <keyword type="function" name="gvir_config_domain_new_from_xml ()" link="GVirConfigDomain.html#gvir-config-domain-new-from-xml"/>
38 <keyword type="function" name="gvir_config_domain_new ()" link="GVirConfigDomain.html#gvir-config-domain-new"/>
39 <keyword type="function" name="gvir_config_domain_get_virt_type ()" link="GVirConfigDomain.html#gvir-config-domain-get-virt-type"/>
40 <keyword type="function" name="gvir_config_domain_set_virt_type ()" link="GVirConfigDomain.html#gvir-config-domain-set-virt-type"/>
41 <keyword type="function" name="gvir_config_domain_get_name ()" link="GVirConfigDomain.html#gvir-config-domain-get-name"/>
42 <keyword type="function" name="gvir_config_domain_set_name ()" link="GVirConfigDomain.html#gvir-config-domain-set-name"/>
43 <keyword type="function" name="gvir_config_domain_get_description ()" link="GVirConfigDomain.html#gvir-config-domain-get-description"/>
44 <keyword type="function" name="gvir_config_domain_set_description ()" link="GVirConfigDomain.html#gvir-config-domain-set-description"/>
45 <keyword type="function" name="gvir_config_domain_get_memory ()" link="GVirConfigDomain.html#gvir-config-domain-get-memory"/>
46 <keyword type="function" name="gvir_config_domain_set_memory ()" link="GVirConfigDomain.html#gvir-config-domain-set-memory"/>
47 <keyword type="function" name="gvir_config_domain_get_current_memory ()" link="GVirConfigDomain.html#gvir-config-domain-get-current-memory"/>
48 <keyword type="function" name="gvir_config_domain_set_current_memory ()" link="GVirConfigDomain.html#gvir-config-domain-set-current-memory"/>
49 <keyword type="function" name="gvir_config_domain_get_vcpus ()" link="GVirConfigDomain.html#gvir-config-domain-get-vcpus"/>
50 <keyword type="function" name="gvir_config_domain_set_vcpus ()" link="GVirConfigDomain.html#gvir-config-domain-set-vcpus"/>
51 <keyword type="function" name="gvir_config_domain_get_features ()" link="GVirConfigDomain.html#gvir-config-domain-get-features"/>
52 <keyword type="function" name="gvir_config_domain_set_features ()" link="GVirConfigDomain.html#gvir-config-domain-set-features"/>
53 <keyword type="function" name="gvir_config_domain_set_clock ()" link="GVirConfigDomain.html#gvir-config-domain-set-clock"/>
54 <keyword type="function" name="gvir_config_domain_get_os ()" link="GVirConfigDomain.html#gvir-config-domain-get-os"/>
55 <keyword type="function" name="gvir_config_domain_set_os ()" link="GVirConfigDomain.html#gvir-config-domain-set-os"/>
56 <keyword type="function" name="gvir_config_domain_set_seclabel ()" link="GVirConfigDomain.html#gvir-config-domain-set-seclabel"/>
57 <keyword type="function" name="gvir_config_domain_get_title ()" link="GVirConfigDomain.html#gvir-config-domain-get-title"/>
58 <keyword type="function" name="gvir_config_domain_set_title ()" link="GVirConfigDomain.html#gvir-config-domain-set-title"/>
59 <keyword type="function" name="gvir_config_domain_set_devices ()" link="GVirConfigDomain.html#gvir-config-domain-set-devices"/>
60 <keyword type="function" name="gvir_config_domain_add_device ()" link="GVirConfigDomain.html#gvir-config-domain-add-device"/>
61 <keyword type="function" name="gvir_config_domain_get_devices ()" link="GVirConfigDomain.html#gvir-config-domain-get-devices"/>
62 <keyword type="function" name="gvir_config_domain_set_lifecycle ()" link="GVirConfigDomain.html#gvir-config-domain-set-lifecycle"/>
63 <keyword type="function" name="gvir_config_domain_set_custom_xml ()" link="GVirConfigDomain.html#gvir-config-domain-set-custom-xml"/>
64 <keyword type="function" name="gvir_config_domain_get_custom_xml ()" link="GVirConfigDomain.html#gvir-config-domain-get-custom-xml"/>
65 <keyword type="function" name="gvir_config_domain_get_cpu ()" link="GVirConfigDomain.html#gvir-config-domain-get-cpu"/>
66 <keyword type="function" name="gvir_config_domain_set_cpu ()" link="GVirConfigDomain.html#gvir-config-domain-set-cpu"/>
67 <keyword type="function" name="gvir_config_domain_set_power_management ()" link="GVirConfigDomain.html#gvir-config-domain-set-power-management"/>
68 <keyword type="property" name="The &quot;current-memory&quot; property" link="GVirConfigDomain.html#GVirConfigDomain--current-memory"/>
69 <keyword type="property" name="The &quot;description&quot; property" link="GVirConfigDomain.html#GVirConfigDomain--description"/>
70 <keyword type="property" name="The &quot;features&quot; property" link="GVirConfigDomain.html#GVirConfigDomain--features"/>
71 <keyword type="property" name="The &quot;memory&quot; property" link="GVirConfigDomain.html#GVirConfigDomain--memory"/>
72 <keyword type="property" name="The &quot;name&quot; property" link="GVirConfigDomain.html#GVirConfigDomain--name"/>
73 <keyword type="property" name="The &quot;title&quot; property" link="GVirConfigDomain.html#GVirConfigDomain--title"/>
74 <keyword type="property" name="The &quot;vcpu&quot; property" link="GVirConfigDomain.html#GVirConfigDomain--vcpu"/>
72 <keyword type="struct" name="GVirConfigDomainPrivate" link="GVirConfigDomain.html#GVirConfigDomainPrivate"/>
73 <keyword type="property" name="The “current-memory” property" link="GVirConfigDomain.html#GVirConfigDomain--current-memory"/>
74 <keyword type="property" name="The “description” property" link="GVirConfigDomain.html#GVirConfigDomain--description"/>
75 <keyword type="property" name="The “features” property" link="GVirConfigDomain.html#GVirConfigDomain--features"/>
76 <keyword type="property" name="The “memory” property" link="GVirConfigDomain.html#GVirConfigDomain--memory"/>
77 <keyword type="property" name="The “name” property" link="GVirConfigDomain.html#GVirConfigDomain--name"/>
78 <keyword type="property" name="The “title” property" link="GVirConfigDomain.html#GVirConfigDomain--title"/>
79 <keyword type="property" name="The “uuid” property" link="GVirConfigDomain.html#GVirConfigDomain--uuid"/>
80 <keyword type="property" name="The “vcpu” property" link="GVirConfigDomain.html#GVirConfigDomain--vcpu"/>
81 <keyword type="function" name="gvir_config_domain_snapshot_new ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-new"/>
82 <keyword type="function" name="gvir_config_domain_snapshot_new_from_xml ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-new-from-xml"/>
83 <keyword type="function" name="gvir_config_domain_snapshot_get_name ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-name"/>
84 <keyword type="function" name="gvir_config_domain_snapshot_set_name ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-name"/>
85 <keyword type="function" name="gvir_config_domain_snapshot_get_description ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-description"/>
86 <keyword type="function" name="gvir_config_domain_snapshot_set_description ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-description"/>
87 <keyword type="function" name="gvir_config_domain_snapshot_get_memory_state ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-memory-state"/>
88 <keyword type="function" name="gvir_config_domain_snapshot_set_memory_state ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-memory-state"/>
89 <keyword type="function" name="gvir_config_domain_snapshot_get_memory_file ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-memory-file"/>
90 <keyword type="function" name="gvir_config_domain_snapshot_set_memory_file ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-memory-file"/>
91 <keyword type="function" name="gvir_config_domain_snapshot_get_creation_time ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-creation-time"/>
92 <keyword type="function" name="gvir_config_domain_snapshot_get_state ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-state"/>
93 <keyword type="function" name="gvir_config_domain_snapshot_get_parent ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-parent"/>
94 <keyword type="function" name="gvir_config_domain_snapshot_get_domain ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-domain"/>
95 <keyword type="function" name="gvir_config_domain_snapshot_set_disks ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-disks"/>
96 <keyword type="function" name="gvir_config_domain_snapshot_add_disk ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-add-disk"/>
97 <keyword type="function" name="gvir_config_domain_snapshot_get_disks ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-disks"/>
7598 <keyword type="struct" name="struct GVirConfigDomainSnapshot" link="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot-struct"/>
7699 <keyword type="struct" name="struct GVirConfigDomainSnapshotClass" link="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotClass"/>
77100 <keyword type="enum" name="enum GVirConfigDomainSnapshotDomainState" link="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotDomainState"/>
78101 <keyword type="enum" name="enum GVirConfigDomainSnapshotMemoryState" link="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotMemoryState"/>
79 <keyword type="function" name="gvir_config_domain_snapshot_new ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-new"/>
80 <keyword type="function" name="gvir_config_domain_snapshot_new_from_xml ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-new-from-xml"/>
81 <keyword type="function" name="gvir_config_domain_snapshot_get_name ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-name"/>
82 <keyword type="function" name="gvir_config_domain_snapshot_set_name ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-name"/>
83 <keyword type="function" name="gvir_config_domain_snapshot_get_description ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-description"/>
84 <keyword type="function" name="gvir_config_domain_snapshot_set_description ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-description"/>
85 <keyword type="function" name="gvir_config_domain_snapshot_get_memory_state ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-memory-state"/>
86 <keyword type="function" name="gvir_config_domain_snapshot_set_memory_state ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-memory-state"/>
87 <keyword type="function" name="gvir_config_domain_snapshot_get_memory_file ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-memory-file"/>
88 <keyword type="function" name="gvir_config_domain_snapshot_set_memory_file ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-memory-file"/>
89 <keyword type="function" name="gvir_config_domain_snapshot_get_creation_time ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-creation-time"/>
90 <keyword type="function" name="gvir_config_domain_snapshot_get_state ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-state"/>
91 <keyword type="function" name="gvir_config_domain_snapshot_get_parent ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-parent"/>
92 <keyword type="function" name="gvir_config_domain_snapshot_get_domain ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-domain"/>
93 <keyword type="function" name="gvir_config_domain_snapshot_set_disks ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-disks"/>
94 <keyword type="function" name="gvir_config_domain_snapshot_add_disk ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-add-disk"/>
95 <keyword type="function" name="gvir_config_domain_snapshot_get_disks ()" link="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-disks"/>
96 <keyword type="struct" name="struct GVirConfigInterface" link="Libvirt-gconfig-GVirConfig.html#GVirConfigInterface-struct"/>
97 <keyword type="struct" name="struct GVirConfigInterfaceClass" link="Libvirt-gconfig-GVirConfig.html#GVirConfigInterfaceClass"/>
98 <keyword type="function" name="gvir_config_interface_new ()" link="Libvirt-gconfig-GVirConfig.html#gvir-config-interface-new"/>
99 <keyword type="function" name="gvir_config_interface_new_from_xml ()" link="Libvirt-gconfig-GVirConfig.html#gvir-config-interface-new-from-xml"/>
102 <keyword type="struct" name="GVirConfigDomainSnapshotPrivate" link="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotPrivate"/>
103 <keyword type="function" name="gvir_config_interface_new ()" link="GVirConfigInterface.html#gvir-config-interface-new"/>
104 <keyword type="function" name="gvir_config_interface_new_from_xml ()" link="GVirConfigInterface.html#gvir-config-interface-new-from-xml"/>
105 <keyword type="struct" name="struct GVirConfigInterface" link="GVirConfigInterface.html#GVirConfigInterface-struct"/>
106 <keyword type="struct" name="struct GVirConfigInterfaceClass" link="GVirConfigInterface.html#GVirConfigInterfaceClass"/>
107 <keyword type="struct" name="GVirConfigInterfacePrivate" link="GVirConfigInterface.html#GVirConfigInterfacePrivate"/>
108 <keyword type="function" name="gvir_config_network_filter_new ()" link="GVirConfigNetworkFilter.html#gvir-config-network-filter-new"/>
109 <keyword type="function" name="gvir_config_network_filter_new_from_xml ()" link="GVirConfigNetworkFilter.html#gvir-config-network-filter-new-from-xml"/>
100110 <keyword type="struct" name="struct GVirConfigNetworkFilter" link="GVirConfigNetworkFilter.html#GVirConfigNetworkFilter-struct"/>
101111 <keyword type="struct" name="struct GVirConfigNetworkFilterClass" link="GVirConfigNetworkFilter.html#GVirConfigNetworkFilterClass"/>
102 <keyword type="function" name="gvir_config_network_filter_new ()" link="GVirConfigNetworkFilter.html#gvir-config-network-filter-new"/>
103 <keyword type="function" name="gvir_config_network_filter_new_from_xml ()" link="GVirConfigNetworkFilter.html#gvir-config-network-filter-new-from-xml"/>
112 <keyword type="struct" name="GVirConfigNetworkFilterPrivate" link="GVirConfigNetworkFilter.html#GVirConfigNetworkFilterPrivate"/>
113 <keyword type="function" name="gvir_config_network_new ()" link="GVirConfigNetwork.html#gvir-config-network-new"/>
114 <keyword type="function" name="gvir_config_network_new_from_xml ()" link="GVirConfigNetwork.html#gvir-config-network-new-from-xml"/>
104115 <keyword type="struct" name="struct GVirConfigNetwork" link="GVirConfigNetwork.html#GVirConfigNetwork-struct"/>
105116 <keyword type="struct" name="struct GVirConfigNetworkClass" link="GVirConfigNetwork.html#GVirConfigNetworkClass"/>
106 <keyword type="function" name="gvir_config_network_new ()" link="GVirConfigNetwork.html#gvir-config-network-new"/>
107 <keyword type="function" name="gvir_config_network_new_from_xml ()" link="GVirConfigNetwork.html#gvir-config-network-new-from-xml"/>
117 <keyword type="struct" name="GVirConfigNetworkPrivate" link="GVirConfigNetwork.html#GVirConfigNetworkPrivate"/>
118 <keyword type="function" name="gvir_config_node_device_new ()" link="GVirConfigNodeDevice.html#gvir-config-node-device-new"/>
119 <keyword type="function" name="gvir_config_node_device_new_from_xml ()" link="GVirConfigNodeDevice.html#gvir-config-node-device-new-from-xml"/>
108120 <keyword type="struct" name="struct GVirConfigNodeDevice" link="GVirConfigNodeDevice.html#GVirConfigNodeDevice-struct"/>
109121 <keyword type="struct" name="struct GVirConfigNodeDeviceClass" link="GVirConfigNodeDevice.html#GVirConfigNodeDeviceClass"/>
110 <keyword type="function" name="gvir_config_node_device_new ()" link="GVirConfigNodeDevice.html#gvir-config-node-device-new"/>
111 <keyword type="function" name="gvir_config_node_device_new_from_xml ()" link="GVirConfigNodeDevice.html#gvir-config-node-device-new-from-xml"/>
122 <keyword type="struct" name="GVirConfigNodeDevicePrivate" link="GVirConfigNodeDevice.html#GVirConfigNodeDevicePrivate"/>
123 <keyword type="function" name="gvir_config_secret_new ()" link="GVirConfigSecret.html#gvir-config-secret-new"/>
124 <keyword type="function" name="gvir_config_secret_new_from_xml ()" link="GVirConfigSecret.html#gvir-config-secret-new-from-xml"/>
112125 <keyword type="struct" name="struct GVirConfigSecret" link="GVirConfigSecret.html#GVirConfigSecret-struct"/>
113126 <keyword type="struct" name="struct GVirConfigSecretClass" link="GVirConfigSecret.html#GVirConfigSecretClass"/>
114 <keyword type="function" name="gvir_config_secret_new ()" link="GVirConfigSecret.html#gvir-config-secret-new"/>
115 <keyword type="function" name="gvir_config_secret_new_from_xml ()" link="GVirConfigSecret.html#gvir-config-secret-new-from-xml"/>
127 <keyword type="struct" name="GVirConfigSecretPrivate" link="GVirConfigSecret.html#GVirConfigSecretPrivate"/>
128 <keyword type="function" name="gvir_config_storage_pool_new ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-new"/>
129 <keyword type="function" name="gvir_config_storage_pool_new_from_xml ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-new-from-xml"/>
130 <keyword type="function" name="gvir_config_storage_pool_get_allocation ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-get-allocation"/>
131 <keyword type="function" name="gvir_config_storage_pool_set_allocation ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-set-allocation"/>
132 <keyword type="function" name="gvir_config_storage_pool_get_available ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-get-available"/>
133 <keyword type="function" name="gvir_config_storage_pool_set_available ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-set-available"/>
134 <keyword type="function" name="gvir_config_storage_pool_get_capacity ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-get-capacity"/>
135 <keyword type="function" name="gvir_config_storage_pool_set_capacity ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-set-capacity"/>
136 <keyword type="function" name="gvir_config_storage_pool_get_name ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-get-name"/>
137 <keyword type="function" name="gvir_config_storage_pool_set_name ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-set-name"/>
138 <keyword type="function" name="gvir_config_storage_pool_get_pool_type ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-get-pool-type"/>
139 <keyword type="function" name="gvir_config_storage_pool_set_pool_type ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-set-pool-type"/>
140 <keyword type="function" name="gvir_config_storage_pool_get_source ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-get-source"/>
141 <keyword type="function" name="gvir_config_storage_pool_set_source ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-set-source"/>
142 <keyword type="function" name="gvir_config_storage_pool_get_target ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-get-target"/>
143 <keyword type="function" name="gvir_config_storage_pool_set_target ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-set-target"/>
144 <keyword type="function" name="gvir_config_storage_pool_get_uuid ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-get-uuid"/>
145 <keyword type="function" name="gvir_config_storage_pool_set_uuid ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-set-uuid"/>
116146 <keyword type="struct" name="struct GVirConfigStoragePool" link="GVirConfigStoragePool.html#GVirConfigStoragePool-struct"/>
117147 <keyword type="struct" name="struct GVirConfigStoragePoolClass" link="GVirConfigStoragePool.html#GVirConfigStoragePoolClass"/>
118148 <keyword type="enum" name="enum GVirConfigStoragePoolType" link="GVirConfigStoragePool.html#GVirConfigStoragePoolType"/>
119 <keyword type="function" name="gvir_config_storage_pool_new ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-new"/>
120 <keyword type="function" name="gvir_config_storage_pool_new_from_xml ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-new-from-xml"/>
121 <keyword type="function" name="gvir_config_storage_pool_get_allocation ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-get-allocation"/>
122 <keyword type="function" name="gvir_config_storage_pool_set_allocation ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-set-allocation"/>
123 <keyword type="function" name="gvir_config_storage_pool_get_available ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-get-available"/>
124 <keyword type="function" name="gvir_config_storage_pool_set_available ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-set-available"/>
125 <keyword type="function" name="gvir_config_storage_pool_get_capacity ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-get-capacity"/>
126 <keyword type="function" name="gvir_config_storage_pool_set_capacity ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-set-capacity"/>
127 <keyword type="function" name="gvir_config_storage_pool_get_name ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-get-name"/>
128 <keyword type="function" name="gvir_config_storage_pool_set_name ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-set-name"/>
129 <keyword type="function" name="gvir_config_storage_pool_get_pool_type ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-get-pool-type"/>
130 <keyword type="function" name="gvir_config_storage_pool_set_pool_type ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-set-pool-type"/>
131 <keyword type="function" name="gvir_config_storage_pool_get_source ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-get-source"/>
132 <keyword type="function" name="gvir_config_storage_pool_set_source ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-set-source"/>
133 <keyword type="function" name="gvir_config_storage_pool_get_target ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-get-target"/>
134 <keyword type="function" name="gvir_config_storage_pool_set_target ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-set-target"/>
135 <keyword type="function" name="gvir_config_storage_pool_get_uuid ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-get-uuid"/>
136 <keyword type="function" name="gvir_config_storage_pool_set_uuid ()" link="GVirConfigStoragePool.html#gvir-config-storage-pool-set-uuid"/>
149 <keyword type="struct" name="GVirConfigStoragePoolPrivate" link="GVirConfigStoragePool.html#GVirConfigStoragePoolPrivate"/>
150 <keyword type="function" name="gvir_config_storage_vol_new ()" link="GVirConfigStorageVol.html#gvir-config-storage-vol-new"/>
151 <keyword type="function" name="gvir_config_storage_vol_new_from_xml ()" link="GVirConfigStorageVol.html#gvir-config-storage-vol-new-from-xml"/>
152 <keyword type="function" name="gvir_config_storage_vol_set_allocation ()" link="GVirConfigStorageVol.html#gvir-config-storage-vol-set-allocation"/>
153 <keyword type="function" name="gvir_config_storage_vol_set_backing_store ()" link="GVirConfigStorageVol.html#gvir-config-storage-vol-set-backing-store"/>
154 <keyword type="function" name="gvir_config_storage_vol_set_capacity ()" link="GVirConfigStorageVol.html#gvir-config-storage-vol-set-capacity"/>
155 <keyword type="function" name="gvir_config_storage_vol_set_name ()" link="GVirConfigStorageVol.html#gvir-config-storage-vol-set-name"/>
156 <keyword type="function" name="gvir_config_storage_vol_set_target ()" link="GVirConfigStorageVol.html#gvir-config-storage-vol-set-target"/>
137157 <keyword type="struct" name="struct GVirConfigStorageVol" link="GVirConfigStorageVol.html#GVirConfigStorageVol-struct"/>
138158 <keyword type="struct" name="struct GVirConfigStorageVolClass" link="GVirConfigStorageVol.html#GVirConfigStorageVolClass"/>
139 <keyword type="function" name="gvir_config_storage_vol_new ()" link="GVirConfigStorageVol.html#gvir-config-storage-vol-new"/>
140 <keyword type="function" name="gvir_config_storage_vol_new_from_xml ()" link="GVirConfigStorageVol.html#gvir-config-storage-vol-new-from-xml"/>
141 <keyword type="function" name="gvir_config_storage_vol_set_allocation ()" link="GVirConfigStorageVol.html#gvir-config-storage-vol-set-allocation"/>
142 <keyword type="function" name="gvir_config_storage_vol_set_backing_store ()" link="GVirConfigStorageVol.html#gvir-config-storage-vol-set-backing-store"/>
143 <keyword type="function" name="gvir_config_storage_vol_set_capacity ()" link="GVirConfigStorageVol.html#gvir-config-storage-vol-set-capacity"/>
144 <keyword type="function" name="gvir_config_storage_vol_set_name ()" link="GVirConfigStorageVol.html#gvir-config-storage-vol-set-name"/>
145 <keyword type="function" name="gvir_config_storage_vol_set_target ()" link="GVirConfigStorageVol.html#gvir-config-storage-vol-set-target"/>
159 <keyword type="struct" name="GVirConfigStorageVolPrivate" link="GVirConfigStorageVol.html#GVirConfigStorageVolPrivate"/>
160 <keyword type="function" name="gvir_config_capabilities_new ()" link="GVirConfigCapabilities.html#gvir-config-capabilities-new"/>
161 <keyword type="function" name="gvir_config_capabilities_new_from_xml ()" link="GVirConfigCapabilities.html#gvir-config-capabilities-new-from-xml"/>
162 <keyword type="function" name="gvir_config_capabilities_get_host ()" link="GVirConfigCapabilities.html#gvir-config-capabilities-get-host"/>
163 <keyword type="function" name="gvir_config_capabilities_get_guests ()" link="GVirConfigCapabilities.html#gvir-config-capabilities-get-guests"/>
146164 <keyword type="struct" name="struct GVirConfigCapabilities" link="GVirConfigCapabilities.html#GVirConfigCapabilities-struct"/>
147165 <keyword type="struct" name="struct GVirConfigCapabilitiesClass" link="GVirConfigCapabilities.html#GVirConfigCapabilitiesClass"/>
148 <keyword type="function" name="gvir_config_capabilities_new ()" link="GVirConfigCapabilities.html#gvir-config-capabilities-new"/>
149 <keyword type="function" name="gvir_config_capabilities_new_from_xml ()" link="GVirConfigCapabilities.html#gvir-config-capabilities-new-from-xml"/>
150 <keyword type="function" name="gvir_config_capabilities_get_host ()" link="GVirConfigCapabilities.html#gvir-config-capabilities-get-host"/>
151 <keyword type="function" name="gvir_config_capabilities_get_guests ()" link="GVirConfigCapabilities.html#gvir-config-capabilities-get-guests"/>
152 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_VIRT_QEMU" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-QEMU:CAPS"/>
153 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_VIRT_KQEMU" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-KQEMU:CAPS"/>
154 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_VIRT_KVM" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-KVM:CAPS"/>
155 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_VIRT_XEN" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-XEN:CAPS"/>
156 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_VIRT_LXC" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-LXC:CAPS"/>
157 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_VIRT_UML" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-UML:CAPS"/>
158 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_VIRT_OPENVZ" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-OPENVZ:CAPS"/>
159 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_VIRT_VSERVER" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-VSERVER:CAPS"/>
160 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_VIRT_LDOM" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-LDOM:CAPS"/>
161 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_VIRT_TEST" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-TEST:CAPS"/>
162 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_VIRT_VMWARE" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-VMWARE:CAPS"/>
163 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_VIRT_HYPERV" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-HYPERV:CAPS"/>
164 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_VIRT_VBOX" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-VBOX:CAPS"/>
165 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_VIRT_ONE" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-ONE:CAPS"/>
166 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_VIRT_PHYP" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-PHYP:CAPS"/>
167 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_LIFECYCLE_ON_POWEROFF" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-ON-POWEROFF:CAPS"/>
168 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_LIFECYCLE_ON_REBOOT" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-ON-REBOOT:CAPS"/>
169 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_LIFECYCLE_ON_CRASH" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-ON-CRASH:CAPS"/>
170 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_LIFECYCLE_DESTROY" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-DESTROY:CAPS"/>
171 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_LIFECYCLE_RESTART" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-RESTART:CAPS"/>
172 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_LIFECYCLE_PRESERVE" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-PRESERVE:CAPS"/>
173 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_LIFECYCLE_RENAME_RESTART" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-RENAME-RESTART:CAPS"/>
174 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_LIFECYCLE_COREDUMP_DESTROY" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-COREDUMP-DESTROY:CAPS"/>
175 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_LIFECYCLE_COREDUMP_RESTART" link="GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-COREDUMP-RESTART:CAPS"/>
176 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_NOSTATE" link="GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-NOSTATE:CAPS"/>
177 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_RUNNING" link="GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-RUNNING:CAPS"/>
178 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_BLOCKED" link="GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-BLOCKED:CAPS"/>
179 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_PAUSED" link="GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-PAUSED:CAPS"/>
180 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_SHUTDOWN" link="GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-SHUTDOWN:CAPS"/>
181 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_SHUTOFF" link="GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-SHUTOFF:CAPS"/>
182 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_CRASHED" link="GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-CRASHED:CAPS"/>
183 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_PMSUSPENDED" link="GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-PMSUSPENDED:CAPS"/>
184 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_SNAPSHOT_DOMAIN_STATE_DISK_SNAPSHOT" link="GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-DISK-SNAPSHOT:CAPS"/>
185 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_SNAPSHOT_MEMORY_STATE_NONE" link="GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-MEMORY-STATE-NONE:CAPS"/>
186 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_SNAPSHOT_MEMORY_STATE_INTERNAL" link="GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-MEMORY-STATE-INTERNAL:CAPS"/>
187 <keyword type="constant" name="GVIR_CONFIG_DOMAIN_SNAPSHOT_MEMORY_STATE_EXTERNAL" link="GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-MEMORY-STATE-EXTERNAL:CAPS"/>
188 <keyword type="constant" name="GVIR_CONFIG_STORAGE_POOL_TYPE_DIR" link="GVirConfigStoragePool.html#GVIR-CONFIG-STORAGE-POOL-TYPE-DIR:CAPS"/>
189 <keyword type="constant" name="GVIR_CONFIG_STORAGE_POOL_TYPE_FS" link="GVirConfigStoragePool.html#GVIR-CONFIG-STORAGE-POOL-TYPE-FS:CAPS"/>
190 <keyword type="constant" name="GVIR_CONFIG_STORAGE_POOL_TYPE_NETFS" link="GVirConfigStoragePool.html#GVIR-CONFIG-STORAGE-POOL-TYPE-NETFS:CAPS"/>
191 <keyword type="constant" name="GVIR_CONFIG_STORAGE_POOL_TYPE_LOGICAL" link="GVirConfigStoragePool.html#GVIR-CONFIG-STORAGE-POOL-TYPE-LOGICAL:CAPS"/>
192 <keyword type="constant" name="GVIR_CONFIG_STORAGE_POOL_TYPE_DISK" link="GVirConfigStoragePool.html#GVIR-CONFIG-STORAGE-POOL-TYPE-DISK:CAPS"/>
193 <keyword type="constant" name="GVIR_CONFIG_STORAGE_POOL_TYPE_ISCSI" link="GVirConfigStoragePool.html#GVIR-CONFIG-STORAGE-POOL-TYPE-ISCSI:CAPS"/>
194 <keyword type="constant" name="GVIR_CONFIG_STORAGE_POOL_TYPE_SCSI" link="GVirConfigStoragePool.html#GVIR-CONFIG-STORAGE-POOL-TYPE-SCSI:CAPS"/>
195 <keyword type="constant" name="GVIR_CONFIG_STORAGE_POOL_TYPE_MPATH" link="GVirConfigStoragePool.html#GVIR-CONFIG-STORAGE-POOL-TYPE-MPATH:CAPS"/>
166 <keyword type="struct" name="GVirConfigCapabilitiesPrivate" link="GVirConfigCapabilities.html#GVirConfigCapabilitiesPrivate"/>
196167 </functions>
197168 </book>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>Annotation Glossary</title>
4 <title>Libvirt-gconfig Reference Manual: Annotation Glossary</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
77 <link rel="up" href="index.html" title="Libvirt-gconfig Reference Manual">
88 <link rel="prev" href="api-index-full.html" title="API Index">
9 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
9 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1010 <link rel="stylesheet" href="style.css" type="text/css">
1111 </head>
1212 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
13 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
14 <tr valign="middle">
15 <td><a accesskey="p" href="api-index-full.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
16 <td> </td>
17 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
18 <th width="100%" align="center">Libvirt-gconfig Reference Manual</th>
19 <td> </td>
20 </tr>
21 <tr><td colspan="5" class="shortcuts">
22 <a class="shortcut" href="#glsA">A</a>
23  | 
24 <a class="shortcut" href="#glsI">I</a>
25  | 
26 <a class="shortcut" href="#glsT">T</a>
27  | 
28 <a class="shortcut" href="#glsA">A</a>
29  | 
30 <a class="shortcut" href="#glsE">E</a>
31  | 
32 <a class="shortcut" href="#glsI">I</a>
33  | 
34 <a class="shortcut" href="#glsT">T</a>
35 </td></tr>
36 </table>
13 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
14 <td width="100%" align="left" class="shortcuts"><span id="nav_glossary"><a class="shortcut" href="#glsA">A</a>
15  <span class="dim">|</span> 
16 <a class="shortcut" href="#glsE">E</a>
17  <span class="dim">|</span> 
18 <a class="shortcut" href="#glsI">I</a>
19  <span class="dim">|</span> 
20 <a class="shortcut" href="#glsT">T</a></span></td>
21 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
23 <td><a accesskey="p" href="api-index-full.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24 <td><img src="right-insensitive.png" width="16" height="16" border="0"></td>
25 </tr></table>
3726 <div class="glossary">
3827 <div class="titlepage"><div><div><h1 class="title">
3928 <a name="annotation-glossary"></a>Annotation Glossary</h1></div></div></div>
4029 <a name="glsA"></a><h3 class="title">A</h3>
4130 <dt><span class="glossterm"><a name="annotation-glossterm-allow-none"></a>allow-none</span></dt>
42 <dd class="glossdef"><p>NULL is ok, both for passing and for returning.</p></dd>
43 <a name="glsI"></a><h3 class="title">I</h3>
44 <dt><span class="glossterm"><a name="annotation-glossterm-inout"></a>inout</span></dt>
45 <dd class="glossdef"><p>Parameter for input and for returning results. Default is <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>.</p></dd>
46 <a name="glsT"></a><h3 class="title">T</h3>
47 <dt><span class="glossterm"><a name="annotation-glossterm-transfer%20none"></a>transfer none</span></dt>
48 <dd class="glossdef"><p>Don't free data after the code is done.</p></dd>
49 <a name="glsA"></a><h3 class="title">A</h3>
31 <dd class="glossdef"><p>NULL is OK, both for passing and for returning.</p></dd>
5032 <dt><span class="glossterm"><a name="annotation-glossterm-array"></a>array</span></dt>
5133 <dd class="glossdef"><p>Parameter points to an array of items.</p></dd>
5234 <a name="glsE"></a><h3 class="title">E</h3>
5537 <a name="glsI"></a><h3 class="title">I</h3>
5638 <dt><span class="glossterm"><a name="annotation-glossterm-in"></a>in</span></dt>
5739 <dd class="glossdef"><p>Parameter for input. Default is <acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>.</p></dd>
40 <dt><span class="glossterm"><a name="annotation-glossterm-inout"></a>inout</span></dt>
41 <dd class="glossdef"><p>Parameter for input and for returning results. Default is <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>.</p></dd>
5842 <a name="glsT"></a><h3 class="title">T</h3>
43 <dt><span class="glossterm"><a name="annotation-glossterm-transfer%20container"></a>transfer container</span></dt>
44 <dd class="glossdef"><p>Free data container after the code is done.</p></dd>
5945 <dt><span class="glossterm"><a name="annotation-glossterm-transfer%20full"></a>transfer full</span></dt>
6046 <dd class="glossdef"><p>Free data after the code is done.</p></dd>
47 <dt><span class="glossterm"><a name="annotation-glossterm-transfer%20none"></a>transfer none</span></dt>
48 <dd class="glossdef"><p>Don't free data after the code is done.</p></dd>
6149 <dt><span class="glossterm"><a name="annotation-glossterm-type"></a>type</span></dt>
6250 <dd class="glossdef"><p>Override the parsed C type with given type.</p></dd>
6351 </div>
6452 <div class="footer">
6553 <hr>
66 Generated by GTK-Doc V1.19</div>
54 Generated by GTK-Doc V1.21</div>
6755 </body>
6856 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>API Index</title>
4 <title>Libvirt-gconfig Reference Manual: API Index</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
77 <link rel="up" href="index.html" title="Libvirt-gconfig Reference Manual">
88 <link rel="prev" href="object-tree.html" title="Object Hierarchy">
99 <link rel="next" href="annotation-glossary.html" title="Annotation Glossary">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="object-tree.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td> </td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gconfig Reference Manual</th>
20 <td><a accesskey="n" href="annotation-glossary.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a class="shortcut" href="#idxD">D</a>
24  | 
25 <a class="shortcut" href="#idxT">T</a>
26  | 
27 <a class="shortcut" href="#idxV">V</a>
28 </td></tr>
29 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxD">D</a>
16  <span class="dim">|</span> 
17 <a class="shortcut" href="#idxT">T</a>
18  <span class="dim">|</span> 
19 <a class="shortcut" href="#idxV">V</a></span></td>
20 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
21 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
22 <td><a accesskey="p" href="object-tree.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
23 <td><a accesskey="n" href="annotation-glossary.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
24 </tr></table>
3025 <div class="index">
3126 <div class="titlepage"><div><div><h1 class="title">
3227 <a name="api-index-full"></a>API Index</h1></div></div></div>
3328 <a name="idx"></a><a name="idxD"></a><h3 class="title">D</h3>
3429 <dt>
35 G_DEPRECATED, macro in libvirt-gconfig-compat
36 </dt>
37 <dd></dd>
38 <dt>
39 G_DEPRECATED_FOR, macro in libvirt-gconfig-compat
30 <a href="http://library.gnome.org/devel/glib/unstable/glib-Miscellaneous-Macros.html#G-DEPRECATED:CAPS">G_DEPRECATED</a>, macro in libvirt-gconfig-compat
31 </dt>
32 <dd></dd>
33 <dt>
34 <a href="http://library.gnome.org/devel/glib/unstable/glib-Miscellaneous-Macros.html#G-DEPRECATED-FOR:CAPS">G_DEPRECATED_FOR</a>, macro in libvirt-gconfig-compat
4035 </dt>
4136 <dd></dd>
4237 <a name="idxT"></a><h3 class="title">T</h3>
4338 <dt>
44 g_type_init, macro in libvirt-gconfig-compat
39 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#g-type-init">g_type_init</a>, macro in libvirt-gconfig-compat
4540 </dt>
4641 <dd></dd>
4742 <a name="idxV"></a><h3 class="title">V</h3>
7065 </dt>
7166 <dd></dd>
7267 <dt>
68 GVirConfigCapabilitiesCpuFeaturePrivate, struct in GVirConfigCapabilitiesCpuFeature
69 </dt>
70 <dd></dd>
71 <dt>
72 GVirConfigCapabilitiesCpuModel, struct in GVirConfigCapabilitiesCpuModel
73 </dt>
74 <dd></dd>
75 <dt>
76 GVirConfigCapabilitiesCpuModelClass, struct in GVirConfigCapabilitiesCpuModel
77 </dt>
78 <dd></dd>
79 <dt>
80 GVirConfigCapabilitiesCpuModelPrivate, struct in GVirConfigCapabilitiesCpuModel
81 </dt>
82 <dd></dd>
83 <dt>
84 GVirConfigCapabilitiesCpuPrivate, struct in GVirConfigCapabilitiesCpu
85 </dt>
86 <dd></dd>
87 <dt>
7388 GVirConfigCapabilitiesCpuTopology, struct in GVirConfigCapabilitiesCpuTopology
7489 </dt>
7590 <dd></dd>
7893 </dt>
7994 <dd></dd>
8095 <dt>
96 GVirConfigCapabilitiesCpuTopologyPrivate, struct in GVirConfigCapabilitiesCpuTopology
97 </dt>
98 <dd></dd>
99 <dt>
81100 GVirConfigCapabilitiesGuest, struct in GVirConfigCapabilitiesGuest
82101 </dt>
83102 <dd></dd>
90109 </dt>
91110 <dd></dd>
92111 <dt>
112 GVirConfigCapabilitiesGuestArchPrivate, struct in GVirConfigCapabilitiesGuestArch
113 </dt>
114 <dd></dd>
115 <dt>
93116 GVirConfigCapabilitiesGuestClass, struct in GVirConfigCapabilitiesGuest
94117 </dt>
95118 <dd></dd>
102125 </dt>
103126 <dd></dd>
104127 <dt>
128 GVirConfigCapabilitiesGuestDomainPrivate, struct in GVirConfigCapabilitiesGuestDomain
129 </dt>
130 <dd></dd>
131 <dt>
105132 GVirConfigCapabilitiesGuestFeature, struct in GVirConfigCapabilitiesGuestFeature
106133 </dt>
107134 <dd></dd>
110137 </dt>
111138 <dd></dd>
112139 <dt>
140 GVirConfigCapabilitiesGuestFeaturePrivate, struct in GVirConfigCapabilitiesGuestFeature
141 </dt>
142 <dd></dd>
143 <dt>
144 GVirConfigCapabilitiesGuestPrivate, struct in GVirConfigCapabilitiesGuest
145 </dt>
146 <dd></dd>
147 <dt>
113148 GVirConfigCapabilitiesHost, struct in GVirConfigCapabilitiesHost
114149 </dt>
115150 <dd></dd>
118153 </dt>
119154 <dd></dd>
120155 <dt>
156 GVirConfigCapabilitiesHostPrivate, struct in GVirConfigCapabilitiesHost
157 </dt>
158 <dd></dd>
159 <dt>
160 GVirConfigCapabilitiesHostSecModel, struct in GVirConfigCapabilitiesHostSecModel
161 </dt>
162 <dd></dd>
163 <dt>
164 GVirConfigCapabilitiesHostSecModelClass, struct in GVirConfigCapabilitiesHostSecModel
165 </dt>
166 <dd></dd>
167 <dt>
168 GVirConfigCapabilitiesHostSecModelPrivate, struct in GVirConfigCapabilitiesHostSecModel
169 </dt>
170 <dd></dd>
171 <dt>
172 <a class="link" href="GVirConfigCapabilities.html#GVirConfigCapabilitiesPrivate" title="GVirConfigCapabilitiesPrivate">GVirConfigCapabilitiesPrivate</a>, struct in <a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities">GVirConfigCapabilities</a>
173 </dt>
174 <dd></dd>
175 <dt>
121176 <a class="link" href="GVirConfigDomain.html#GVirConfigDomain-struct" title="struct GVirConfigDomain">GVirConfigDomain</a>, struct in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
122177 </dt>
123178 <dd></dd>
124179 <dt>
125 <a class="link" href="GVirConfigDomain.html#GVirConfigDomain--current-memory" title='The "current-memory" property'>GVirConfigDomain:current-memory</a>, object property in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
126 </dt>
127 <dd></dd>
128 <dt>
129 <a class="link" href="GVirConfigDomain.html#GVirConfigDomain--description" title='The "description" property'>GVirConfigDomain:description</a>, object property in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
130 </dt>
131 <dd></dd>
132 <dt>
133 <a class="link" href="GVirConfigDomain.html#GVirConfigDomain--features" title='The "features" property'>GVirConfigDomain:features</a>, object property in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
134 </dt>
135 <dd></dd>
136 <dt>
137 <a class="link" href="GVirConfigDomain.html#GVirConfigDomain--memory" title='The "memory" property'>GVirConfigDomain:memory</a>, object property in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
138 </dt>
139 <dd></dd>
140 <dt>
141 <a class="link" href="GVirConfigDomain.html#GVirConfigDomain--name" title='The "name" property'>GVirConfigDomain:name</a>, object property in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
142 </dt>
143 <dd></dd>
144 <dt>
145 <a class="link" href="GVirConfigDomain.html#GVirConfigDomain--title" title='The "title" property'>GVirConfigDomain:title</a>, object property in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
146 </dt>
147 <dd></dd>
148 <dt>
149 <a class="link" href="GVirConfigDomain.html#GVirConfigDomain--vcpu" title='The "vcpu" property'>GVirConfigDomain:vcpu</a>, object property in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
180 <a class="link" href="GVirConfigDomain.html#GVirConfigDomain--current-memory" title="The “current-memory” property">GVirConfigDomain:current-memory</a>, object property in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
181 </dt>
182 <dd></dd>
183 <dt>
184 <a class="link" href="GVirConfigDomain.html#GVirConfigDomain--description" title="The “description” property">GVirConfigDomain:description</a>, object property in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
185 </dt>
186 <dd></dd>
187 <dt>
188 <a class="link" href="GVirConfigDomain.html#GVirConfigDomain--features" title="The “features” property">GVirConfigDomain:features</a>, object property in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
189 </dt>
190 <dd></dd>
191 <dt>
192 <a class="link" href="GVirConfigDomain.html#GVirConfigDomain--memory" title="The “memory” property">GVirConfigDomain:memory</a>, object property in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
193 </dt>
194 <dd></dd>
195 <dt>
196 <a class="link" href="GVirConfigDomain.html#GVirConfigDomain--name" title="The “name” property">GVirConfigDomain:name</a>, object property in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
197 </dt>
198 <dd></dd>
199 <dt>
200 <a class="link" href="GVirConfigDomain.html#GVirConfigDomain--title" title="The “title” property">GVirConfigDomain:title</a>, object property in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
201 </dt>
202 <dd></dd>
203 <dt>
204 <a class="link" href="GVirConfigDomain.html#GVirConfigDomain--uuid" title="The “uuid” property">GVirConfigDomain:uuid</a>, object property in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
205 </dt>
206 <dd></dd>
207 <dt>
208 <a class="link" href="GVirConfigDomain.html#GVirConfigDomain--vcpu" title="The “vcpu” property">GVirConfigDomain:vcpu</a>, object property in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
150209 </dt>
151210 <dd></dd>
152211 <dt>
166225 </dt>
167226 <dd></dd>
168227 <dt>
228 GVirConfigDomainAddressPciPrivate, struct in GVirConfigDomainAddressPci
229 </dt>
230 <dd></dd>
231 <dt>
232 GVirConfigDomainAddressPrivate, struct in GVirConfigDomainAddress
233 </dt>
234 <dd></dd>
235 <dt>
169236 GVirConfigDomainAddressUsb, struct in GVirConfigDomainAddressUsb
170237 </dt>
171238 <dd></dd>
174241 </dt>
175242 <dd></dd>
176243 <dt>
244 GVirConfigDomainAddressUsbPrivate, struct in GVirConfigDomainAddressUsb
245 </dt>
246 <dd></dd>
247 <dt>
177248 GVirConfigDomainChannel, struct in GVirConfigDomainChannel
178249 </dt>
179250 <dd></dd>
182253 </dt>
183254 <dd></dd>
184255 <dt>
256 GVirConfigDomainChannelPrivate, struct in GVirConfigDomainChannel
257 </dt>
258 <dd></dd>
259 <dt>
185260 GVirConfigDomainChannelTargetType, enum in GVirConfigDomainChannel
186261 </dt>
187262 <dd></dd>
194269 </dt>
195270 <dd></dd>
196271 <dt>
272 GVirConfigDomainChardevPrivate, struct in GVirConfigDomainChardev
273 </dt>
274 <dd></dd>
275 <dt>
197276 GVirConfigDomainChardevSource, struct in GVirConfigDomainChardevSource
198277 </dt>
199278 <dd></dd>
202281 </dt>
203282 <dd></dd>
204283 <dt>
284 GVirConfigDomainChardevSourcePrivate, struct in GVirConfigDomainChardevSource
285 </dt>
286 <dd></dd>
287 <dt>
205288 GVirConfigDomainChardevSourcePty, struct in GVirConfigDomainChardevSourcePty
206289 </dt>
207290 <dd></dd>
210293 </dt>
211294 <dd></dd>
212295 <dt>
213 GVirConfigDomainChardevSourceSpiceVmc, struct in GVirConfigDomainChardevSourceSpiceVmc
214 </dt>
215 <dd></dd>
216 <dt>
217 GVirConfigDomainChardevSourceSpiceVmcClass, struct in GVirConfigDomainChardevSourceSpiceVmc
296 GVirConfigDomainChardevSourcePtyPrivate, struct in GVirConfigDomainChardevSourcePty
218297 </dt>
219298 <dd></dd>
220299 <dt>
234313 </dt>
235314 <dd></dd>
236315 <dt>
316 GVirConfigDomainClockPrivate, struct in GVirConfigDomainClock
317 </dt>
318 <dd></dd>
319 <dt>
237320 GVirConfigDomainConsole, struct in GVirConfigDomainConsole
238321 </dt>
239322 <dd></dd>
242325 </dt>
243326 <dd></dd>
244327 <dt>
328 GVirConfigDomainConsolePrivate, struct in GVirConfigDomainConsole
329 </dt>
330 <dd></dd>
331 <dt>
245332 GVirConfigDomainConsoleTargetType, enum in GVirConfigDomainConsole
246333 </dt>
247334 <dd></dd>
254341 </dt>
255342 <dd></dd>
256343 <dt>
344 GVirConfigDomainControllerPrivate, struct in GVirConfigDomainController
345 </dt>
346 <dd></dd>
347 <dt>
257348 GVirConfigDomainControllerUsb, struct in GVirConfigDomainControllerUsb
258349 </dt>
259350 <dd></dd>
266357 </dt>
267358 <dd></dd>
268359 <dt>
360 GVirConfigDomainControllerUsbPrivate, struct in GVirConfigDomainControllerUsb
361 </dt>
362 <dd></dd>
363 <dt>
269364 GVirConfigDomainCpu, struct in GVirConfigDomainCpu
270365 </dt>
271366 <dd></dd>
286381 </dt>
287382 <dd></dd>
288383 <dt>
384 GVirConfigDomainCpuFeaturePrivate, struct in GVirConfigDomainCpuFeature
385 </dt>
386 <dd></dd>
387 <dt>
289388 GVirConfigDomainCpuMatchPolicy, enum in GVirConfigDomainCpu
290389 </dt>
291390 <dd></dd>
294393 </dt>
295394 <dd></dd>
296395 <dt>
396 GVirConfigDomainCpuModel, struct in GVirConfigDomainCpuModel
397 </dt>
398 <dd></dd>
399 <dt>
400 GVirConfigDomainCpuModelClass, struct in GVirConfigDomainCpuModel
401 </dt>
402 <dd></dd>
403 <dt>
404 GVirConfigDomainCpuModelPrivate, struct in GVirConfigDomainCpuModel
405 </dt>
406 <dd></dd>
407 <dt>
408 GVirConfigDomainCpuPrivate, struct in GVirConfigDomainCpu
409 </dt>
410 <dd></dd>
411 <dt>
297412 GVirConfigDomainDevice, struct in GVirConfigDomainDevice
298413 </dt>
299414 <dd></dd>
302417 </dt>
303418 <dd></dd>
304419 <dt>
420 GVirConfigDomainDevicePrivate, struct in GVirConfigDomainDevice
421 </dt>
422 <dd></dd>
423 <dt>
305424 GVirConfigDomainDisk, struct in GVirConfigDomainDisk
306425 </dt>
307426 <dd></dd>
310429 </dt>
311430 <dd></dd>
312431 <dt>
313 GVirConfigDomainDiskCacheType, enum in GVirConfigDomainDisk
432 GVirConfigDomainDiskCacheType, enum in GVirConfigDomainDiskDriver
314433 </dt>
315434 <dd></dd>
316435 <dt>
318437 </dt>
319438 <dd></dd>
320439 <dt>
321 GVirConfigDomainDiskFormat, enum in GVirConfigDomainDisk
440 GVirConfigDomainDiskDriver, struct in GVirConfigDomainDiskDriver
441 </dt>
442 <dd></dd>
443 <dt>
444 GVirConfigDomainDiskDriverClass, struct in GVirConfigDomainDiskDriver
445 </dt>
446 <dd></dd>
447 <dt>
448 GVirConfigDomainDiskDriverDiscard, enum in GVirConfigDomainDiskDriver
449 </dt>
450 <dd></dd>
451 <dt>
452 GVirConfigDomainDiskDriverErrorPolicy, enum in GVirConfigDomainDiskDriver
453 </dt>
454 <dd></dd>
455 <dt>
456 GVirConfigDomainDiskDriverIoPolicy, enum in GVirConfigDomainDiskDriver
457 </dt>
458 <dd></dd>
459 <dt>
460 GVirConfigDomainDiskDriverPrivate, struct in GVirConfigDomainDiskDriver
461 </dt>
462 <dd></dd>
463 <dt>
464 GVirConfigDomainDiskFormat, enum in GVirConfigDomainDiskDriver
322465 </dt>
323466 <dd></dd>
324467 <dt>
326469 </dt>
327470 <dd></dd>
328471 <dt>
472 GVirConfigDomainDiskPrivate, struct in GVirConfigDomainDisk
473 </dt>
474 <dd></dd>
475 <dt>
329476 GVirConfigDomainDiskSnapshotType, enum in GVirConfigDomainDisk
330477 </dt>
331478 <dd></dd>
354501 </dt>
355502 <dd></dd>
356503 <dt>
504 GVirConfigDomainFilesysPrivate, struct in GVirConfigDomainFilesys
505 </dt>
506 <dd></dd>
507 <dt>
357508 GVirConfigDomainFilesysType, enum in GVirConfigDomainFilesys
358509 </dt>
359510 <dd></dd>
374525 </dt>
375526 <dd></dd>
376527 <dt>
528 GVirConfigDomainGraphicsDesktopPrivate, struct in GVirConfigDomainGraphicsDesktop
529 </dt>
530 <dd></dd>
531 <dt>
532 GVirConfigDomainGraphicsPrivate, struct in GVirConfigDomainGraphics
533 </dt>
534 <dd></dd>
535 <dt>
377536 GVirConfigDomainGraphicsRdp, struct in GVirConfigDomainGraphicsRdp
378537 </dt>
379538 <dd></dd>
382541 </dt>
383542 <dd></dd>
384543 <dt>
544 GVirConfigDomainGraphicsRdpPrivate, struct in GVirConfigDomainGraphicsRdp
545 </dt>
546 <dd></dd>
547 <dt>
385548 GVirConfigDomainGraphicsSdl, struct in GVirConfigDomainGraphicsSdl
386549 </dt>
387550 <dd></dd>
390553 </dt>
391554 <dd></dd>
392555 <dt>
556 GVirConfigDomainGraphicsSdlPrivate, struct in GVirConfigDomainGraphicsSdl
557 </dt>
558 <dd></dd>
559 <dt>
393560 GVirConfigDomainGraphicsSpice, struct in GVirConfigDomainGraphicsSpice
394561 </dt>
395562 <dd></dd>
402569 </dt>
403570 <dd></dd>
404571 <dt>
572 GVirConfigDomainGraphicsSpicePrivate, struct in GVirConfigDomainGraphicsSpice
573 </dt>
574 <dd></dd>
575 <dt>
405576 GVirConfigDomainGraphicsVnc, struct in GVirConfigDomainGraphicsVnc
406577 </dt>
407578 <dd></dd>
410581 </dt>
411582 <dd></dd>
412583 <dt>
584 GVirConfigDomainGraphicsVncPrivate, struct in GVirConfigDomainGraphicsVnc
585 </dt>
586 <dd></dd>
587 <dt>
413588 GVirConfigDomainInput, struct in GVirConfigDomainInput
414589 </dt>
415590 <dd></dd>
426601 </dt>
427602 <dd></dd>
428603 <dt>
429 GVirConfigDomainInterface, struct in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
604 GVirConfigDomainInputPrivate, struct in GVirConfigDomainInput
605 </dt>
606 <dd></dd>
607 <dt>
608 GVirConfigDomainInterface, struct in GVirConfigDomainInterface
430609 </dt>
431610 <dd></dd>
432611 <dt>
438617 </dt>
439618 <dd></dd>
440619 <dt>
441 GVirConfigDomainInterfaceClass, struct in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
442 </dt>
443 <dd></dd>
444 <dt>
445 GVirConfigDomainInterfaceLinkState, enum in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
620 GVirConfigDomainInterfaceBridgePrivate, struct in GVirConfigDomainInterfaceBridge
621 </dt>
622 <dd></dd>
623 <dt>
624 GVirConfigDomainInterfaceClass, struct in GVirConfigDomainInterface
625 </dt>
626 <dd></dd>
627 <dt>
628 GVirConfigDomainInterfaceFilterref, struct in GVirConfigDomainInterfaceFilterref
629 </dt>
630 <dd></dd>
631 <dt>
632 GVirConfigDomainInterfaceFilterrefClass, struct in GVirConfigDomainInterfaceFilterref
633 </dt>
634 <dd></dd>
635 <dt>
636 GVirConfigDomainInterfaceFilterrefParameter, struct in GVirConfigDomainInterfaceFilterrefParameter
637 </dt>
638 <dd></dd>
639 <dt>
640 GVirConfigDomainInterfaceFilterrefParameterClass, struct in GVirConfigDomainInterfaceFilterrefParameter
641 </dt>
642 <dd></dd>
643 <dt>
644 GVirConfigDomainInterfaceFilterrefParameterPrivate, struct in GVirConfigDomainInterfaceFilterrefParameter
645 </dt>
646 <dd></dd>
647 <dt>
648 GVirConfigDomainInterfaceFilterrefPrivate, struct in GVirConfigDomainInterfaceFilterref
649 </dt>
650 <dd></dd>
651 <dt>
652 GVirConfigDomainInterfaceLinkState, enum in GVirConfigDomainInterface
446653 </dt>
447654 <dd></dd>
448655 <dt>
454661 </dt>
455662 <dd></dd>
456663 <dt>
664 GVirConfigDomainInterfaceNetworkPrivate, struct in GVirConfigDomainInterfaceNetwork
665 </dt>
666 <dd></dd>
667 <dt>
668 GVirConfigDomainInterfacePrivate, struct in GVirConfigDomainInterface
669 </dt>
670 <dd></dd>
671 <dt>
457672 GVirConfigDomainInterfaceUser, struct in GVirConfigDomainInterfaceUser
458673 </dt>
459674 <dd></dd>
462677 </dt>
463678 <dd></dd>
464679 <dt>
680 GVirConfigDomainInterfaceUserPrivate, struct in GVirConfigDomainInterfaceUser
681 </dt>
682 <dd></dd>
683 <dt>
465684 <a class="link" href="GVirConfigDomain.html#GVirConfigDomainLifecycleAction" title="enum GVirConfigDomainLifecycleAction">GVirConfigDomainLifecycleAction</a>, enum in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
466685 </dt>
467686 <dd></dd>
482701 </dt>
483702 <dd></dd>
484703 <dt>
704 GVirConfigDomainMemballoonPrivate, struct in GVirConfigDomainMemballoon
705 </dt>
706 <dd></dd>
707 <dt>
485708 GVirConfigDomainOs, struct in GVirConfigDomainOs
486709 </dt>
487710 <dd></dd>
494717 </dt>
495718 <dd></dd>
496719 <dt>
720 GVirConfigDomainOsPrivate, struct in GVirConfigDomainOs
721 </dt>
722 <dd></dd>
723 <dt>
497724 GVirConfigDomainOsSmBiosMode, enum in GVirConfigDomainOs
498725 </dt>
499726 <dd></dd>
510737 </dt>
511738 <dd></dd>
512739 <dt>
740 GVirConfigDomainParallelPrivate, struct in GVirConfigDomainParallel
741 </dt>
742 <dd></dd>
743 <dt>
513744 GVirConfigDomainPowerManagement, struct in GVirConfigDomainPowerManagement
514745 </dt>
515746 <dd></dd>
518749 </dt>
519750 <dd></dd>
520751 <dt>
752 GVirConfigDomainPowerManagementPrivate, struct in GVirConfigDomainPowerManagement
753 </dt>
754 <dd></dd>
755 <dt>
756 <a class="link" href="GVirConfigDomain.html#GVirConfigDomainPrivate" title="GVirConfigDomainPrivate">GVirConfigDomainPrivate</a>, struct in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
757 </dt>
758 <dd></dd>
759 <dt>
521760 GVirConfigDomainRedirdev, struct in GVirConfigDomainRedirdev
522761 </dt>
523762 <dd></dd>
530769 </dt>
531770 <dd></dd>
532771 <dt>
772 GVirConfigDomainRedirdevPrivate, struct in GVirConfigDomainRedirdev
773 </dt>
774 <dd></dd>
775 <dt>
533776 GVirConfigDomainSeclabel, struct in GVirConfigDomainSeclabel
534777 </dt>
535778 <dd></dd>
538781 </dt>
539782 <dd></dd>
540783 <dt>
784 GVirConfigDomainSeclabelPrivate, struct in GVirConfigDomainSeclabel
785 </dt>
786 <dd></dd>
787 <dt>
541788 GVirConfigDomainSeclabelType, enum in GVirConfigDomainSeclabel
542789 </dt>
543790 <dd></dd>
550797 </dt>
551798 <dd></dd>
552799 <dt>
800 GVirConfigDomainSerialPrivate, struct in GVirConfigDomainSerial
801 </dt>
802 <dd></dd>
803 <dt>
553804 GVirConfigDomainSmartcard, struct in GVirConfigDomainSmartcard
554805 </dt>
555806 <dd></dd>
570821 </dt>
571822 <dd></dd>
572823 <dt>
824 GVirConfigDomainSmartcardHostCertificatesPrivate, struct in GVirConfigDomainSmartcardHostCertificates
825 </dt>
826 <dd></dd>
827 <dt>
573828 GVirConfigDomainSmartcardHostClass, struct in GVirConfigDomainSmartcardHost
574829 </dt>
575830 <dd></dd>
576831 <dt>
832 GVirConfigDomainSmartcardHostPrivate, struct in GVirConfigDomainSmartcardHost
833 </dt>
834 <dd></dd>
835 <dt>
577836 GVirConfigDomainSmartcardPassthrough, struct in GVirConfigDomainSmartcardPassthrough
578837 </dt>
579838 <dd></dd>
582841 </dt>
583842 <dd></dd>
584843 <dt>
844 GVirConfigDomainSmartcardPassthroughPrivate, struct in GVirConfigDomainSmartcardPassthrough
845 </dt>
846 <dd></dd>
847 <dt>
848 GVirConfigDomainSmartcardPrivate, struct in GVirConfigDomainSmartcard
849 </dt>
850 <dd></dd>
851 <dt>
585852 <a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot-struct" title="struct GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>, struct in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
586853 </dt>
587854 <dd></dd>
598865 </dt>
599866 <dd></dd>
600867 <dt>
868 GVirConfigDomainSnapshotDiskPrivate, struct in GVirConfigDomainSnapshotDisk
869 </dt>
870 <dd></dd>
871 <dt>
601872 <a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotDomainState" title="enum GVirConfigDomainSnapshotDomainState">GVirConfigDomainSnapshotDomainState</a>, enum in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
602873 </dt>
603874 <dd></dd>
606877 </dt>
607878 <dd></dd>
608879 <dt>
880 <a class="link" href="GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotPrivate" title="GVirConfigDomainSnapshotPrivate">GVirConfigDomainSnapshotPrivate</a>, struct in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
881 </dt>
882 <dd></dd>
883 <dt>
609884 GVirConfigDomainSound, struct in GVirConfigDomainSound
610885 </dt>
611886 <dd></dd>
618893 </dt>
619894 <dd></dd>
620895 <dt>
896 GVirConfigDomainSoundPrivate, struct in GVirConfigDomainSound
897 </dt>
898 <dd></dd>
899 <dt>
621900 GVirConfigDomainTimer, struct in GVirConfigDomainTimer
622901 </dt>
623902 <dd></dd>
626905 </dt>
627906 <dd></dd>
628907 <dt>
908 GVirConfigDomainTimerHpet, struct in GVirConfigDomainTimerHpet
909 </dt>
910 <dd></dd>
911 <dt>
912 GVirConfigDomainTimerHpetClass, struct in GVirConfigDomainTimerHpet
913 </dt>
914 <dd></dd>
915 <dt>
916 GVirConfigDomainTimerHpetPrivate, struct in GVirConfigDomainTimerHpet
917 </dt>
918 <dd></dd>
919 <dt>
629920 GVirConfigDomainTimerPit, struct in GVirConfigDomainTimerPit
630921 </dt>
631922 <dd></dd>
634925 </dt>
635926 <dd></dd>
636927 <dt>
928 GVirConfigDomainTimerPitPrivate, struct in GVirConfigDomainTimerPit
929 </dt>
930 <dd></dd>
931 <dt>
932 GVirConfigDomainTimerPrivate, struct in GVirConfigDomainTimer
933 </dt>
934 <dd></dd>
935 <dt>
637936 GVirConfigDomainTimerRtc, struct in GVirConfigDomainTimerRtc
638937 </dt>
639938 <dd></dd>
642941 </dt>
643942 <dd></dd>
644943 <dt>
944 GVirConfigDomainTimerRtcPrivate, struct in GVirConfigDomainTimerRtc
945 </dt>
946 <dd></dd>
947 <dt>
645948 GVirConfigDomainTimerTickPolicy, enum in GVirConfigDomainTimer
646949 </dt>
647950 <dd></dd>
658961 </dt>
659962 <dd></dd>
660963 <dt>
964 GVirConfigDomainVideoPrivate, struct in GVirConfigDomainVideo
965 </dt>
966 <dd></dd>
967 <dt>
661968 <a class="link" href="GVirConfigDomain.html#GVirConfigDomainVirtType" title="enum GVirConfigDomainVirtType">GVirConfigDomainVirtType</a>, enum in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
662969 </dt>
663970 <dd></dd>
664971 <dt>
665 <a class="link" href="Libvirt-gconfig-GVirConfig.html#GVirConfigInterface-struct" title="struct GVirConfigInterface">GVirConfigInterface</a>, struct in <a class="link" href="Libvirt-gconfig-GVirConfig.html" title="GVirConfig">GVirConfig</a>
666 </dt>
667 <dd></dd>
668 <dt>
669 <a class="link" href="Libvirt-gconfig-GVirConfig.html#GVirConfigInterfaceClass" title="struct GVirConfigInterfaceClass">GVirConfigInterfaceClass</a>, struct in <a class="link" href="Libvirt-gconfig-GVirConfig.html" title="GVirConfig">GVirConfig</a>
972 <a class="link" href="GVirConfigInterface.html#GVirConfigInterface-struct" title="struct GVirConfigInterface">GVirConfigInterface</a>, struct in <a class="link" href="GVirConfigInterface.html" title="GVirConfigInterface">GVirConfigInterface</a>
973 </dt>
974 <dd></dd>
975 <dt>
976 <a class="link" href="GVirConfigInterface.html#GVirConfigInterfaceClass" title="struct GVirConfigInterfaceClass">GVirConfigInterfaceClass</a>, struct in <a class="link" href="GVirConfigInterface.html" title="GVirConfigInterface">GVirConfigInterface</a>
977 </dt>
978 <dd></dd>
979 <dt>
980 <a class="link" href="GVirConfigInterface.html#GVirConfigInterfacePrivate" title="GVirConfigInterfacePrivate">GVirConfigInterfacePrivate</a>, struct in <a class="link" href="GVirConfigInterface.html" title="GVirConfigInterface">GVirConfigInterface</a>
670981 </dt>
671982 <dd></dd>
672983 <dt>
686997 </dt>
687998 <dd></dd>
688999 <dt>
1000 <a class="link" href="GVirConfigNetworkFilter.html#GVirConfigNetworkFilterPrivate" title="GVirConfigNetworkFilterPrivate">GVirConfigNetworkFilterPrivate</a>, struct in <a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter">GVirConfigNetworkFilter</a>
1001 </dt>
1002 <dd></dd>
1003 <dt>
1004 <a class="link" href="GVirConfigNetwork.html#GVirConfigNetworkPrivate" title="GVirConfigNetworkPrivate">GVirConfigNetworkPrivate</a>, struct in <a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork">GVirConfigNetwork</a>
1005 </dt>
1006 <dd></dd>
1007 <dt>
6891008 <a class="link" href="GVirConfigNodeDevice.html#GVirConfigNodeDevice-struct" title="struct GVirConfigNodeDevice">GVirConfigNodeDevice</a>, struct in <a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice">GVirConfigNodeDevice</a>
6901009 </dt>
6911010 <dd></dd>
6941013 </dt>
6951014 <dd></dd>
6961015 <dt>
1016 <a class="link" href="GVirConfigNodeDevice.html#GVirConfigNodeDevicePrivate" title="GVirConfigNodeDevicePrivate">GVirConfigNodeDevicePrivate</a>, struct in <a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice">GVirConfigNodeDevice</a>
1017 </dt>
1018 <dd></dd>
1019 <dt>
6971020 <a class="link" href="GVirConfigObject.html#GVirConfigObject-struct" title="struct GVirConfigObject">GVirConfigObject</a>, struct in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
6981021 </dt>
6991022 <dd></dd>
7001023 <dt>
701 <a class="link" href="GVirConfigObject.html#GVirConfigObject--doc" title='The "doc" property'>GVirConfigObject:doc</a>, object property in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
702 </dt>
703 <dd></dd>
704 <dt>
705 <a class="link" href="GVirConfigObject.html#GVirConfigObject--node" title='The "node" property'>GVirConfigObject:node</a>, object property in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
706 </dt>
707 <dd></dd>
708 <dt>
709 <a class="link" href="GVirConfigObject.html#GVirConfigObject--schema" title='The "schema" property'>GVirConfigObject:schema</a>, object property in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
1024 <a class="link" href="GVirConfigObject.html#GVirConfigObject--doc" title="The “doc” property">GVirConfigObject:doc</a>, object property in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
1025 </dt>
1026 <dd></dd>
1027 <dt>
1028 <a class="link" href="GVirConfigObject.html#GVirConfigObject--node" title="The “node” property">GVirConfigObject:node</a>, object property in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
1029 </dt>
1030 <dd></dd>
1031 <dt>
1032 <a class="link" href="GVirConfigObject.html#GVirConfigObject--schema" title="The “schema” property">GVirConfigObject:schema</a>, object property in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
7101033 </dt>
7111034 <dd></dd>
7121035 <dt>
7141037 </dt>
7151038 <dd></dd>
7161039 <dt>
1040 <a class="link" href="GVirConfigObject.html#GVirConfigObjectPrivate" title="GVirConfigObjectPrivate">GVirConfigObjectPrivate</a>, struct in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
1041 </dt>
1042 <dd></dd>
1043 <dt>
7171044 <a class="link" href="GVirConfigSecret.html#GVirConfigSecret-struct" title="struct GVirConfigSecret">GVirConfigSecret</a>, struct in <a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret">GVirConfigSecret</a>
7181045 </dt>
7191046 <dd></dd>
7221049 </dt>
7231050 <dd></dd>
7241051 <dt>
1052 <a class="link" href="GVirConfigSecret.html#GVirConfigSecretPrivate" title="GVirConfigSecretPrivate">GVirConfigSecretPrivate</a>, struct in <a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret">GVirConfigSecret</a>
1053 </dt>
1054 <dd></dd>
1055 <dt>
7251056 GVirConfigStoragePermissions, struct in GVirConfigStoragePermissions
7261057 </dt>
7271058 <dd></dd>
7301061 </dt>
7311062 <dd></dd>
7321063 <dt>
1064 GVirConfigStoragePermissionsPrivate, struct in GVirConfigStoragePermissions
1065 </dt>
1066 <dd></dd>
1067 <dt>
7331068 <a class="link" href="GVirConfigStoragePool.html#GVirConfigStoragePool-struct" title="struct GVirConfigStoragePool">GVirConfigStoragePool</a>, struct in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
7341069 </dt>
7351070 <dd></dd>
7381073 </dt>
7391074 <dd></dd>
7401075 <dt>
1076 <a class="link" href="GVirConfigStoragePool.html#GVirConfigStoragePoolPrivate" title="GVirConfigStoragePoolPrivate">GVirConfigStoragePoolPrivate</a>, struct in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
1077 </dt>
1078 <dd></dd>
1079 <dt>
7411080 GVirConfigStoragePoolSource, struct in GVirConfigStoragePoolSource
7421081 </dt>
7431082 <dd></dd>
7461085 </dt>
7471086 <dd></dd>
7481087 <dt>
1088 GVirConfigStoragePoolSourcePrivate, struct in GVirConfigStoragePoolSource
1089 </dt>
1090 <dd></dd>
1091 <dt>
7491092 GVirConfigStoragePoolTarget, struct in GVirConfigStoragePoolTarget
7501093 </dt>
7511094 <dd></dd>
7541097 </dt>
7551098 <dd></dd>
7561099 <dt>
1100 GVirConfigStoragePoolTargetPrivate, struct in GVirConfigStoragePoolTarget
1101 </dt>
1102 <dd></dd>
1103 <dt>
7571104 <a class="link" href="GVirConfigStoragePool.html#GVirConfigStoragePoolType" title="enum GVirConfigStoragePoolType">GVirConfigStoragePoolType</a>, enum in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
7581105 </dt>
7591106 <dd></dd>
7701117 </dt>
7711118 <dd></dd>
7721119 <dt>
1120 GVirConfigStorageVolBackingStorePrivate, struct in GVirConfigStorageVolBackingStore
1121 </dt>
1122 <dd></dd>
1123 <dt>
7731124 <a class="link" href="GVirConfigStorageVol.html#GVirConfigStorageVolClass" title="struct GVirConfigStorageVolClass">GVirConfigStorageVolClass</a>, struct in <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
7741125 </dt>
7751126 <dd></dd>
7761127 <dt>
1128 <a class="link" href="GVirConfigStorageVol.html#GVirConfigStorageVolPrivate" title="GVirConfigStorageVolPrivate">GVirConfigStorageVolPrivate</a>, struct in <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
1129 </dt>
1130 <dd></dd>
1131 <dt>
7771132 GVirConfigStorageVolTarget, struct in GVirConfigStorageVolTarget
7781133 </dt>
7791134 <dd></dd>
7821137 </dt>
7831138 <dd></dd>
7841139 <dt>
1140 GVirConfigStorageVolTargetPrivate, struct in GVirConfigStorageVolTarget
1141 </dt>
1142 <dd></dd>
1143 <dt>
7851144 GVirConfigXmlDoc, struct in GVirConfigXmlDoc
7861145 </dt>
7871146 <dd></dd>
7941153 </dt>
7951154 <dd></dd>
7961155 <dt>
1156 GVirConfigXmlDocPrivate, struct in GVirConfigXmlDoc
1157 </dt>
1158 <dd></dd>
1159 <dt>
7971160 GVirConfigXmlNodeIterator, user_function in libvirt-gconfig-helpers-private
7981161 </dt>
7991162 <dd></dd>
8221185 </dt>
8231186 <dd></dd>
8241187 <dt>
1188 gvir_config_capabilities_cpu_get_model, function in GVirConfigCapabilitiesCpu
1189 </dt>
1190 <dd></dd>
1191 <dt>
8251192 gvir_config_capabilities_cpu_get_topology, function in GVirConfigCapabilitiesCpu
8261193 </dt>
8271194 <dd></dd>
8281195 <dt>
1196 gvir_config_capabilities_cpu_model_get_name, function in GVirConfigCapabilitiesCpuModel
1197 </dt>
1198 <dd></dd>
1199 <dt>
1200 gvir_config_capabilities_cpu_model_new, function in GVirConfigCapabilitiesCpuModel
1201 </dt>
1202 <dd></dd>
1203 <dt>
1204 gvir_config_capabilities_cpu_model_new_from_xml, function in GVirConfigCapabilitiesCpuModel
1205 </dt>
1206 <dd></dd>
1207 <dt>
1208 gvir_config_capabilities_cpu_model_set_name, function in GVirConfigCapabilitiesCpuModel
1209 </dt>
1210 <dd></dd>
1211 <dt>
8291212 gvir_config_capabilities_cpu_set_topology, function in GVirConfigCapabilitiesCpu
8301213 </dt>
8311214 <dd></dd>
8621245 </dt>
8631246 <dd></dd>
8641247 <dt>
865 <a class="link" href="GVirConfigCapabilities.html#gvir-config-capabilities-get-guests" title="gvir_config_capabilities_get_guests ()">gvir_config_capabilities_get_guests</a>, function in <a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities">GVirConfigCapabilities</a>
866 </dt>
867 <dd></dd>
868 <dt>
869 <a class="link" href="GVirConfigCapabilities.html#gvir-config-capabilities-get-host" title="gvir_config_capabilities_get_host ()">gvir_config_capabilities_get_host</a>, function in <a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities">GVirConfigCapabilities</a>
1248 <a class="link" href="GVirConfigCapabilities.html#gvir-config-capabilities-get-guests" title="gvir_config_capabilities_get_guests ()">gvir_config_capabilities_get_guests</a>, function in <a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities">GVirConfigCapabilities</a>
1249 </dt>
1250 <dd></dd>
1251 <dt>
1252 <a class="link" href="GVirConfigCapabilities.html#gvir-config-capabilities-get-host" title="gvir_config_capabilities_get_host ()">gvir_config_capabilities_get_host</a>, function in <a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities">GVirConfigCapabilities</a>
8701253 </dt>
8711254 <dd></dd>
8721255 <dt>
9101293 </dt>
9111294 <dd></dd>
9121295 <dt>
1296 gvir_config_capabilities_host_get_secmodels, function in GVirConfigCapabilitiesHost
1297 </dt>
1298 <dd></dd>
1299 <dt>
9131300 gvir_config_capabilities_host_get_uuid, function in GVirConfigCapabilitiesHost
9141301 </dt>
9151302 <dd></dd>
9161303 <dt>
917 <a class="link" href="GVirConfigCapabilities.html#gvir-config-capabilities-new" title="gvir_config_capabilities_new ()">gvir_config_capabilities_new</a>, function in <a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities">GVirConfigCapabilities</a>
918 </dt>
919 <dd></dd>
920 <dt>
921 <a class="link" href="GVirConfigCapabilities.html#gvir-config-capabilities-new-from-xml" title="gvir_config_capabilities_new_from_xml ()">gvir_config_capabilities_new_from_xml</a>, function in <a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities">GVirConfigCapabilities</a>
1304 gvir_config_capabilities_host_secmodel_get_doi, function in GVirConfigCapabilitiesHostSecModel
1305 </dt>
1306 <dd></dd>
1307 <dt>
1308 gvir_config_capabilities_host_secmodel_get_model, function in GVirConfigCapabilitiesHostSecModel
1309 </dt>
1310 <dd></dd>
1311 <dt>
1312 <a class="link" href="GVirConfigCapabilities.html#gvir-config-capabilities-new" title="gvir_config_capabilities_new ()">gvir_config_capabilities_new</a>, function in <a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities">GVirConfigCapabilities</a>
1313 </dt>
1314 <dd></dd>
1315 <dt>
1316 <a class="link" href="GVirConfigCapabilities.html#gvir-config-capabilities-new-from-xml" title="gvir_config_capabilities_new_from_xml ()">gvir_config_capabilities_new_from_xml</a>, function in <a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities">GVirConfigCapabilities</a>
9221317 </dt>
9231318 <dd></dd>
9241319 <dt>
9661361 </dt>
9671362 <dd></dd>
9681363 <dt>
969 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-add-device" title="gvir_config_domain_add_device ()">gvir_config_domain_add_device</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1364 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-add-device" title="gvir_config_domain_add_device ()">gvir_config_domain_add_device</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
9701365 </dt>
9711366 <dd></dd>
9721367 <dt>
10261421 </dt>
10271422 <dd></dd>
10281423 <dt>
1424 gvir_config_domain_chardev_source_spiceport_get_channel, function in GVirConfigDomainChardevSourceSpicePort
1425 </dt>
1426 <dd></dd>
1427 <dt>
1428 gvir_config_domain_chardev_source_spiceport_new, function in GVirConfigDomainChardevSourceSpicePort
1429 </dt>
1430 <dd></dd>
1431 <dt>
1432 gvir_config_domain_chardev_source_spiceport_new_from_xml, function in GVirConfigDomainChardevSourceSpicePort
1433 </dt>
1434 <dd></dd>
1435 <dt>
1436 gvir_config_domain_chardev_source_spiceport_set_channel, function in GVirConfigDomainChardevSourceSpicePort
1437 </dt>
1438 <dd></dd>
1439 <dt>
10291440 gvir_config_domain_chardev_source_spicevmc_new, function in GVirConfigDomainChardevSourceSpiceVmc
10301441 </dt>
10311442 <dd></dd>
10381449 </dt>
10391450 <dd></dd>
10401451 <dt>
1452 gvir_config_domain_clock_get_offset, function in GVirConfigDomainClock
1453 </dt>
1454 <dd></dd>
1455 <dt>
1456 gvir_config_domain_clock_get_timezone, function in GVirConfigDomainClock
1457 </dt>
1458 <dd></dd>
1459 <dt>
1460 gvir_config_domain_clock_get_variable_offset, function in GVirConfigDomainClock
1461 </dt>
1462 <dd></dd>
1463 <dt>
10411464 gvir_config_domain_clock_new, function in GVirConfigDomainClock
10421465 </dt>
10431466 <dd></dd>
11261549 </dt>
11271550 <dd></dd>
11281551 <dt>
1552 gvir_config_domain_cpu_model_new, function in GVirConfigDomainCpuModel
1553 </dt>
1554 <dd></dd>
1555 <dt>
1556 gvir_config_domain_cpu_model_new_from_xml, function in GVirConfigDomainCpuModel
1557 </dt>
1558 <dd></dd>
1559 <dt>
11291560 gvir_config_domain_cpu_new, function in GVirConfigDomainCpu
11301561 </dt>
11311562 <dd></dd>
11421573 </dt>
11431574 <dd></dd>
11441575 <dt>
1576 gvir_config_domain_cpu_set_model, function in GVirConfigDomainCpu
1577 </dt>
1578 <dd></dd>
1579 <dt>
11451580 gvir_config_domain_device_get_alias, function in GVirConfigDomainDevice
11461581 </dt>
11471582 <dd></dd>
11501585 </dt>
11511586 <dd></dd>
11521587 <dt>
1588 gvir_config_domain_disk_driver_get_cache, function in GVirConfigDomainDiskDriver
1589 </dt>
1590 <dd></dd>
1591 <dt>
1592 gvir_config_domain_disk_driver_get_copy_on_read, function in GVirConfigDomainDiskDriver
1593 </dt>
1594 <dd></dd>
1595 <dt>
1596 gvir_config_domain_disk_driver_get_discard, function in GVirConfigDomainDiskDriver
1597 </dt>
1598 <dd></dd>
1599 <dt>
1600 gvir_config_domain_disk_driver_get_error_policy, function in GVirConfigDomainDiskDriver
1601 </dt>
1602 <dd></dd>
1603 <dt>
1604 gvir_config_domain_disk_driver_get_format, function in GVirConfigDomainDiskDriver
1605 </dt>
1606 <dd></dd>
1607 <dt>
1608 gvir_config_domain_disk_driver_get_io_policy, function in GVirConfigDomainDiskDriver
1609 </dt>
1610 <dd></dd>
1611 <dt>
1612 gvir_config_domain_disk_driver_get_name, function in GVirConfigDomainDiskDriver
1613 </dt>
1614 <dd></dd>
1615 <dt>
1616 gvir_config_domain_disk_driver_new, function in GVirConfigDomainDiskDriver
1617 </dt>
1618 <dd></dd>
1619 <dt>
1620 gvir_config_domain_disk_driver_new_from_xml, function in GVirConfigDomainDiskDriver
1621 </dt>
1622 <dd></dd>
1623 <dt>
1624 gvir_config_domain_disk_driver_set_cache, function in GVirConfigDomainDiskDriver
1625 </dt>
1626 <dd></dd>
1627 <dt>
1628 gvir_config_domain_disk_driver_set_copy_on_read, function in GVirConfigDomainDiskDriver
1629 </dt>
1630 <dd></dd>
1631 <dt>
1632 gvir_config_domain_disk_driver_set_discard, function in GVirConfigDomainDiskDriver
1633 </dt>
1634 <dd></dd>
1635 <dt>
1636 gvir_config_domain_disk_driver_set_error_policy, function in GVirConfigDomainDiskDriver
1637 </dt>
1638 <dd></dd>
1639 <dt>
1640 gvir_config_domain_disk_driver_set_format, function in GVirConfigDomainDiskDriver
1641 </dt>
1642 <dd></dd>
1643 <dt>
1644 gvir_config_domain_disk_driver_set_io_policy, function in GVirConfigDomainDiskDriver
1645 </dt>
1646 <dd></dd>
1647 <dt>
1648 gvir_config_domain_disk_driver_set_name, function in GVirConfigDomainDiskDriver
1649 </dt>
1650 <dd></dd>
1651 <dt>
11531652 GVIR_CONFIG_DOMAIN_DISK_FORMAT_AIO, macro in GVirConfigDomainDisk
11541653 </dt>
11551654 <dd></dd>
11581657 </dt>
11591658 <dd></dd>
11601659 <dt>
1660 gvir_config_domain_disk_get_driver, function in GVirConfigDomainDisk
1661 </dt>
1662 <dd></dd>
1663 <dt>
11611664 gvir_config_domain_disk_get_driver_cache, function in GVirConfigDomainDisk
11621665 </dt>
11631666 <dd></dd>
12101713 </dt>
12111714 <dd></dd>
12121715 <dt>
1716 gvir_config_domain_disk_set_driver, function in GVirConfigDomainDisk
1717 </dt>
1718 <dd></dd>
1719 <dt>
12131720 gvir_config_domain_disk_set_driver_cache, function in GVirConfigDomainDisk
12141721 </dt>
12151722 <dd></dd>
12981805 </dt>
12991806 <dd></dd>
13001807 <dt>
1301 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-cpu" title="gvir_config_domain_get_cpu ()">gvir_config_domain_get_cpu</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1302 </dt>
1303 <dd></dd>
1304 <dt>
1305 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-current-memory" title="gvir_config_domain_get_current_memory ()">gvir_config_domain_get_current_memory</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1306 </dt>
1307 <dd></dd>
1308 <dt>
1309 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-custom-xml" title="gvir_config_domain_get_custom_xml ()">gvir_config_domain_get_custom_xml</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1310 </dt>
1311 <dd></dd>
1312 <dt>
1313 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-description" title="gvir_config_domain_get_description ()">gvir_config_domain_get_description</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1314 </dt>
1315 <dd></dd>
1316 <dt>
1317 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-devices" title="gvir_config_domain_get_devices ()">gvir_config_domain_get_devices</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1318 </dt>
1319 <dd></dd>
1320 <dt>
1321 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-features" title="gvir_config_domain_get_features ()">gvir_config_domain_get_features</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1322 </dt>
1323 <dd></dd>
1324 <dt>
1325 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-memory" title="gvir_config_domain_get_memory ()">gvir_config_domain_get_memory</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1326 </dt>
1327 <dd></dd>
1328 <dt>
1329 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-name" title="gvir_config_domain_get_name ()">gvir_config_domain_get_name</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1330 </dt>
1331 <dd></dd>
1332 <dt>
1333 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-os" title="gvir_config_domain_get_os ()">gvir_config_domain_get_os</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1334 </dt>
1335 <dd></dd>
1336 <dt>
1337 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-title" title="gvir_config_domain_get_title ()">gvir_config_domain_get_title</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1338 </dt>
1339 <dd></dd>
1340 <dt>
1341 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-vcpus" title="gvir_config_domain_get_vcpus ()">gvir_config_domain_get_vcpus</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1342 </dt>
1343 <dd></dd>
1344 <dt>
1345 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-virt-type" title="gvir_config_domain_get_virt_type ()">gvir_config_domain_get_virt_type</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1808 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-clock" title="gvir_config_domain_get_clock ()">gvir_config_domain_get_clock</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1809 </dt>
1810 <dd></dd>
1811 <dt>
1812 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-cpu" title="gvir_config_domain_get_cpu ()">gvir_config_domain_get_cpu</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1813 </dt>
1814 <dd></dd>
1815 <dt>
1816 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-current-memory" title="gvir_config_domain_get_current_memory ()">gvir_config_domain_get_current_memory</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1817 </dt>
1818 <dd></dd>
1819 <dt>
1820 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-custom-xml" title="gvir_config_domain_get_custom_xml ()">gvir_config_domain_get_custom_xml</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1821 </dt>
1822 <dd></dd>
1823 <dt>
1824 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-description" title="gvir_config_domain_get_description ()">gvir_config_domain_get_description</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1825 </dt>
1826 <dd></dd>
1827 <dt>
1828 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-devices" title="gvir_config_domain_get_devices ()">gvir_config_domain_get_devices</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1829 </dt>
1830 <dd></dd>
1831 <dt>
1832 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-features" title="gvir_config_domain_get_features ()">gvir_config_domain_get_features</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1833 </dt>
1834 <dd></dd>
1835 <dt>
1836 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-memory" title="gvir_config_domain_get_memory ()">gvir_config_domain_get_memory</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1837 </dt>
1838 <dd></dd>
1839 <dt>
1840 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-name" title="gvir_config_domain_get_name ()">gvir_config_domain_get_name</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1841 </dt>
1842 <dd></dd>
1843 <dt>
1844 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-os" title="gvir_config_domain_get_os ()">gvir_config_domain_get_os</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1845 </dt>
1846 <dd></dd>
1847 <dt>
1848 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-title" title="gvir_config_domain_get_title ()">gvir_config_domain_get_title</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1849 </dt>
1850 <dd></dd>
1851 <dt>
1852 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-uuid" title="gvir_config_domain_get_uuid ()">gvir_config_domain_get_uuid</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1853 </dt>
1854 <dd></dd>
1855 <dt>
1856 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-vcpus" title="gvir_config_domain_get_vcpus ()">gvir_config_domain_get_vcpus</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1857 </dt>
1858 <dd></dd>
1859 <dt>
1860 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-get-virt-type" title="gvir_config_domain_get_virt_type ()">gvir_config_domain_get_virt_type</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1861 </dt>
1862 <dd></dd>
1863 <dt>
1864 gvir_config_domain_graphics_desktop_get_display, function in GVirConfigDomainGraphicsDesktop
1865 </dt>
1866 <dd></dd>
1867 <dt>
1868 gvir_config_domain_graphics_desktop_get_fullscreen, function in GVirConfigDomainGraphicsDesktop
13461869 </dt>
13471870 <dd></dd>
13481871 <dt>
13661889 </dt>
13671890 <dd></dd>
13681891 <dt>
1892 gvir_config_domain_graphics_rdp_get_multi_user, function in GVirConfigDomainGraphicsRdp
1893 </dt>
1894 <dd></dd>
1895 <dt>
13691896 gvir_config_domain_graphics_rdp_get_port, function in GVirConfigDomainGraphicsRdp
13701897 </dt>
13711898 <dd></dd>
13721899 <dt>
1900 gvir_config_domain_graphics_rdp_get_replace_user, function in GVirConfigDomainGraphicsRdp
1901 </dt>
1902 <dd></dd>
1903 <dt>
13731904 gvir_config_domain_graphics_rdp_new, function in GVirConfigDomainGraphicsRdp
13741905 </dt>
13751906 <dd></dd>
14822013 </dt>
14832014 <dd></dd>
14842015 <dt>
2016 gvir_config_domain_input_get_bus, function in GVirConfigDomainInput
2017 </dt>
2018 <dd></dd>
2019 <dt>
2020 gvir_config_domain_input_get_device_type, function in GVirConfigDomainInput
2021 </dt>
2022 <dd></dd>
2023 <dt>
14852024 gvir_config_domain_input_new, function in GVirConfigDomainInput
14862025 </dt>
14872026 <dd></dd>
15102049 </dt>
15112050 <dd></dd>
15122051 <dt>
1513 gvir_config_domain_interface_get_ifname, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1514 </dt>
1515 <dd></dd>
1516 <dt>
1517 gvir_config_domain_interface_get_link_state, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1518 </dt>
1519 <dd></dd>
1520 <dt>
1521 gvir_config_domain_interface_get_mac, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1522 </dt>
1523 <dd></dd>
1524 <dt>
1525 gvir_config_domain_interface_get_model, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2052 gvir_config_domain_interface_filterref_add_parameter, function in GVirConfigDomainInterfaceFilterref
2053 </dt>
2054 <dd></dd>
2055 <dt>
2056 gvir_config_domain_interface_filterref_get_name, function in GVirConfigDomainInterfaceFilterref
2057 </dt>
2058 <dd></dd>
2059 <dt>
2060 gvir_config_domain_interface_filterref_get_parameters, function in GVirConfigDomainInterfaceFilterref
2061 </dt>
2062 <dd></dd>
2063 <dt>
2064 gvir_config_domain_interface_filterref_new, function in GVirConfigDomainInterfaceFilterref
2065 </dt>
2066 <dd></dd>
2067 <dt>
2068 gvir_config_domain_interface_filterref_new_from_xml, function in GVirConfigDomainInterfaceFilterref
2069 </dt>
2070 <dd></dd>
2071 <dt>
2072 gvir_config_domain_interface_filterref_parameter_get_name, function in GVirConfigDomainInterfaceFilterrefParameter
2073 </dt>
2074 <dd></dd>
2075 <dt>
2076 gvir_config_domain_interface_filterref_parameter_get_value, function in GVirConfigDomainInterfaceFilterrefParameter
2077 </dt>
2078 <dd></dd>
2079 <dt>
2080 gvir_config_domain_interface_filterref_parameter_new, function in GVirConfigDomainInterfaceFilterrefParameter
2081 </dt>
2082 <dd></dd>
2083 <dt>
2084 gvir_config_domain_interface_filterref_parameter_new_from_xml, function in GVirConfigDomainInterfaceFilterrefParameter
2085 </dt>
2086 <dd></dd>
2087 <dt>
2088 gvir_config_domain_interface_filterref_parameter_set_name, function in GVirConfigDomainInterfaceFilterrefParameter
2089 </dt>
2090 <dd></dd>
2091 <dt>
2092 gvir_config_domain_interface_filterref_parameter_set_value, function in GVirConfigDomainInterfaceFilterrefParameter
2093 </dt>
2094 <dd></dd>
2095 <dt>
2096 gvir_config_domain_interface_filterref_set_name, function in GVirConfigDomainInterfaceFilterref
2097 </dt>
2098 <dd></dd>
2099 <dt>
2100 gvir_config_domain_interface_get_filterref, function in GVirConfigDomainInterface
2101 </dt>
2102 <dd></dd>
2103 <dt>
2104 gvir_config_domain_interface_get_ifname, function in GVirConfigDomainInterface
2105 </dt>
2106 <dd></dd>
2107 <dt>
2108 gvir_config_domain_interface_get_link_state, function in GVirConfigDomainInterface
2109 </dt>
2110 <dd></dd>
2111 <dt>
2112 gvir_config_domain_interface_get_mac, function in GVirConfigDomainInterface
2113 </dt>
2114 <dd></dd>
2115 <dt>
2116 gvir_config_domain_interface_get_model, function in GVirConfigDomainInterface
15262117 </dt>
15272118 <dd></dd>
15282119 <dt>
15422133 </dt>
15432134 <dd></dd>
15442135 <dt>
1545 gvir_config_domain_interface_set_ifname, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1546 </dt>
1547 <dd></dd>
1548 <dt>
1549 gvir_config_domain_interface_set_link_state, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1550 </dt>
1551 <dd></dd>
1552 <dt>
1553 gvir_config_domain_interface_set_mac, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1554 </dt>
1555 <dd></dd>
1556 <dt>
1557 gvir_config_domain_interface_set_model, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2136 gvir_config_domain_interface_set_filterref, function in GVirConfigDomainInterface
2137 </dt>
2138 <dd></dd>
2139 <dt>
2140 gvir_config_domain_interface_set_ifname, function in GVirConfigDomainInterface
2141 </dt>
2142 <dd></dd>
2143 <dt>
2144 gvir_config_domain_interface_set_link_state, function in GVirConfigDomainInterface
2145 </dt>
2146 <dd></dd>
2147 <dt>
2148 gvir_config_domain_interface_set_mac, function in GVirConfigDomainInterface
2149 </dt>
2150 <dd></dd>
2151 <dt>
2152 gvir_config_domain_interface_set_model, function in GVirConfigDomainInterface
15582153 </dt>
15592154 <dd></dd>
15602155 <dt>
15782173 </dt>
15792174 <dd></dd>
15802175 <dt>
1581 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-new" title="gvir_config_domain_new ()">gvir_config_domain_new</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1582 </dt>
1583 <dd></dd>
1584 <dt>
1585 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-new-from-xml" title="gvir_config_domain_new_from_xml ()">gvir_config_domain_new_from_xml</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2176 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-new" title="gvir_config_domain_new ()">gvir_config_domain_new</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2177 </dt>
2178 <dd></dd>
2179 <dt>
2180 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-new-from-xml" title="gvir_config_domain_new_from_xml ()">gvir_config_domain_new_from_xml</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
15862181 </dt>
15872182 <dd></dd>
15882183 <dt>
17262321 </dt>
17272322 <dd></dd>
17282323 <dt>
1729 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-clock" title="gvir_config_domain_set_clock ()">gvir_config_domain_set_clock</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1730 </dt>
1731 <dd></dd>
1732 <dt>
1733 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-cpu" title="gvir_config_domain_set_cpu ()">gvir_config_domain_set_cpu</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1734 </dt>
1735 <dd></dd>
1736 <dt>
1737 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-current-memory" title="gvir_config_domain_set_current_memory ()">gvir_config_domain_set_current_memory</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1738 </dt>
1739 <dd></dd>
1740 <dt>
1741 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-custom-xml" title="gvir_config_domain_set_custom_xml ()">gvir_config_domain_set_custom_xml</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1742 </dt>
1743 <dd></dd>
1744 <dt>
1745 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-description" title="gvir_config_domain_set_description ()">gvir_config_domain_set_description</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1746 </dt>
1747 <dd></dd>
1748 <dt>
1749 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-devices" title="gvir_config_domain_set_devices ()">gvir_config_domain_set_devices</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1750 </dt>
1751 <dd></dd>
1752 <dt>
1753 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-features" title="gvir_config_domain_set_features ()">gvir_config_domain_set_features</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1754 </dt>
1755 <dd></dd>
1756 <dt>
1757 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-lifecycle" title="gvir_config_domain_set_lifecycle ()">gvir_config_domain_set_lifecycle</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1758 </dt>
1759 <dd></dd>
1760 <dt>
1761 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-memory" title="gvir_config_domain_set_memory ()">gvir_config_domain_set_memory</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1762 </dt>
1763 <dd></dd>
1764 <dt>
1765 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-name" title="gvir_config_domain_set_name ()">gvir_config_domain_set_name</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1766 </dt>
1767 <dd></dd>
1768 <dt>
1769 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-os" title="gvir_config_domain_set_os ()">gvir_config_domain_set_os</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1770 </dt>
1771 <dd></dd>
1772 <dt>
1773 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-power-management" title="gvir_config_domain_set_power_management ()">gvir_config_domain_set_power_management</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1774 </dt>
1775 <dd></dd>
1776 <dt>
1777 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-seclabel" title="gvir_config_domain_set_seclabel ()">gvir_config_domain_set_seclabel</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1778 </dt>
1779 <dd></dd>
1780 <dt>
1781 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-title" title="gvir_config_domain_set_title ()">gvir_config_domain_set_title</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1782 </dt>
1783 <dd></dd>
1784 <dt>
1785 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-vcpus" title="gvir_config_domain_set_vcpus ()">gvir_config_domain_set_vcpus</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
1786 </dt>
1787 <dd></dd>
1788 <dt>
1789 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-virt-type" title="gvir_config_domain_set_virt_type ()">gvir_config_domain_set_virt_type</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2324 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-clock" title="gvir_config_domain_set_clock ()">gvir_config_domain_set_clock</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2325 </dt>
2326 <dd></dd>
2327 <dt>
2328 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-cpu" title="gvir_config_domain_set_cpu ()">gvir_config_domain_set_cpu</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2329 </dt>
2330 <dd></dd>
2331 <dt>
2332 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-current-memory" title="gvir_config_domain_set_current_memory ()">gvir_config_domain_set_current_memory</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2333 </dt>
2334 <dd></dd>
2335 <dt>
2336 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-custom-xml" title="gvir_config_domain_set_custom_xml ()">gvir_config_domain_set_custom_xml</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2337 </dt>
2338 <dd></dd>
2339 <dt>
2340 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-description" title="gvir_config_domain_set_description ()">gvir_config_domain_set_description</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2341 </dt>
2342 <dd></dd>
2343 <dt>
2344 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-devices" title="gvir_config_domain_set_devices ()">gvir_config_domain_set_devices</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2345 </dt>
2346 <dd></dd>
2347 <dt>
2348 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-features" title="gvir_config_domain_set_features ()">gvir_config_domain_set_features</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2349 </dt>
2350 <dd></dd>
2351 <dt>
2352 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-lifecycle" title="gvir_config_domain_set_lifecycle ()">gvir_config_domain_set_lifecycle</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2353 </dt>
2354 <dd></dd>
2355 <dt>
2356 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-memory" title="gvir_config_domain_set_memory ()">gvir_config_domain_set_memory</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2357 </dt>
2358 <dd></dd>
2359 <dt>
2360 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-name" title="gvir_config_domain_set_name ()">gvir_config_domain_set_name</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2361 </dt>
2362 <dd></dd>
2363 <dt>
2364 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-os" title="gvir_config_domain_set_os ()">gvir_config_domain_set_os</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2365 </dt>
2366 <dd></dd>
2367 <dt>
2368 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-power-management" title="gvir_config_domain_set_power_management ()">gvir_config_domain_set_power_management</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2369 </dt>
2370 <dd></dd>
2371 <dt>
2372 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-seclabel" title="gvir_config_domain_set_seclabel ()">gvir_config_domain_set_seclabel</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2373 </dt>
2374 <dd></dd>
2375 <dt>
2376 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-title" title="gvir_config_domain_set_title ()">gvir_config_domain_set_title</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2377 </dt>
2378 <dd></dd>
2379 <dt>
2380 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-uuid" title="gvir_config_domain_set_uuid ()">gvir_config_domain_set_uuid</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2381 </dt>
2382 <dd></dd>
2383 <dt>
2384 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-vcpus" title="gvir_config_domain_set_vcpus ()">gvir_config_domain_set_vcpus</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
2385 </dt>
2386 <dd></dd>
2387 <dt>
2388 <a class="link" href="GVirConfigDomain.html#gvir-config-domain-set-virt-type" title="gvir_config_domain_set_virt_type ()">gvir_config_domain_set_virt_type</a>, function in <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
17902389 </dt>
17912390 <dd></dd>
17922391 <dt>
18342433 </dt>
18352434 <dd></dd>
18362435 <dt>
1837 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-add-disk" title="gvir_config_domain_snapshot_add_disk ()">gvir_config_domain_snapshot_add_disk</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
2436 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-add-disk" title="gvir_config_domain_snapshot_add_disk ()">gvir_config_domain_snapshot_add_disk</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
18382437 </dt>
18392438 <dd></dd>
18402439 <dt>
18822481 </dt>
18832482 <dd></dd>
18842483 <dt>
1885 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-creation-time" title="gvir_config_domain_snapshot_get_creation_time ()">gvir_config_domain_snapshot_get_creation_time</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
1886 </dt>
1887 <dd></dd>
1888 <dt>
1889 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-description" title="gvir_config_domain_snapshot_get_description ()">gvir_config_domain_snapshot_get_description</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
1890 </dt>
1891 <dd></dd>
1892 <dt>
1893 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-disks" title="gvir_config_domain_snapshot_get_disks ()">gvir_config_domain_snapshot_get_disks</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
1894 </dt>
1895 <dd></dd>
1896 <dt>
1897 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-domain" title="gvir_config_domain_snapshot_get_domain ()">gvir_config_domain_snapshot_get_domain</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
1898 </dt>
1899 <dd></dd>
1900 <dt>
1901 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-memory-file" title="gvir_config_domain_snapshot_get_memory_file ()">gvir_config_domain_snapshot_get_memory_file</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
1902 </dt>
1903 <dd></dd>
1904 <dt>
1905 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-memory-state" title="gvir_config_domain_snapshot_get_memory_state ()">gvir_config_domain_snapshot_get_memory_state</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
1906 </dt>
1907 <dd></dd>
1908 <dt>
1909 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-name" title="gvir_config_domain_snapshot_get_name ()">gvir_config_domain_snapshot_get_name</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
1910 </dt>
1911 <dd></dd>
1912 <dt>
1913 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-parent" title="gvir_config_domain_snapshot_get_parent ()">gvir_config_domain_snapshot_get_parent</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
1914 </dt>
1915 <dd></dd>
1916 <dt>
1917 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-state" title="gvir_config_domain_snapshot_get_state ()">gvir_config_domain_snapshot_get_state</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
1918 </dt>
1919 <dd></dd>
1920 <dt>
1921 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-new" title="gvir_config_domain_snapshot_new ()">gvir_config_domain_snapshot_new</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
1922 </dt>
1923 <dd></dd>
1924 <dt>
1925 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-new-from-xml" title="gvir_config_domain_snapshot_new_from_xml ()">gvir_config_domain_snapshot_new_from_xml</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
1926 </dt>
1927 <dd></dd>
1928 <dt>
1929 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-description" title="gvir_config_domain_snapshot_set_description ()">gvir_config_domain_snapshot_set_description</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
1930 </dt>
1931 <dd></dd>
1932 <dt>
1933 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-disks" title="gvir_config_domain_snapshot_set_disks ()">gvir_config_domain_snapshot_set_disks</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
1934 </dt>
1935 <dd></dd>
1936 <dt>
1937 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-memory-file" title="gvir_config_domain_snapshot_set_memory_file ()">gvir_config_domain_snapshot_set_memory_file</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
1938 </dt>
1939 <dd></dd>
1940 <dt>
1941 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-memory-state" title="gvir_config_domain_snapshot_set_memory_state ()">gvir_config_domain_snapshot_set_memory_state</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
1942 </dt>
1943 <dd></dd>
1944 <dt>
1945 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-name" title="gvir_config_domain_snapshot_set_name ()">gvir_config_domain_snapshot_set_name</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
2484 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-creation-time" title="gvir_config_domain_snapshot_get_creation_time ()">gvir_config_domain_snapshot_get_creation_time</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
2485 </dt>
2486 <dd></dd>
2487 <dt>
2488 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-description" title="gvir_config_domain_snapshot_get_description ()">gvir_config_domain_snapshot_get_description</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
2489 </dt>
2490 <dd></dd>
2491 <dt>
2492 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-disks" title="gvir_config_domain_snapshot_get_disks ()">gvir_config_domain_snapshot_get_disks</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
2493 </dt>
2494 <dd></dd>
2495 <dt>
2496 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-domain" title="gvir_config_domain_snapshot_get_domain ()">gvir_config_domain_snapshot_get_domain</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
2497 </dt>
2498 <dd></dd>
2499 <dt>
2500 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-memory-file" title="gvir_config_domain_snapshot_get_memory_file ()">gvir_config_domain_snapshot_get_memory_file</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
2501 </dt>
2502 <dd></dd>
2503 <dt>
2504 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-memory-state" title="gvir_config_domain_snapshot_get_memory_state ()">gvir_config_domain_snapshot_get_memory_state</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
2505 </dt>
2506 <dd></dd>
2507 <dt>
2508 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-name" title="gvir_config_domain_snapshot_get_name ()">gvir_config_domain_snapshot_get_name</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
2509 </dt>
2510 <dd></dd>
2511 <dt>
2512 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-parent" title="gvir_config_domain_snapshot_get_parent ()">gvir_config_domain_snapshot_get_parent</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
2513 </dt>
2514 <dd></dd>
2515 <dt>
2516 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-state" title="gvir_config_domain_snapshot_get_state ()">gvir_config_domain_snapshot_get_state</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
2517 </dt>
2518 <dd></dd>
2519 <dt>
2520 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-new" title="gvir_config_domain_snapshot_new ()">gvir_config_domain_snapshot_new</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
2521 </dt>
2522 <dd></dd>
2523 <dt>
2524 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-new-from-xml" title="gvir_config_domain_snapshot_new_from_xml ()">gvir_config_domain_snapshot_new_from_xml</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
2525 </dt>
2526 <dd></dd>
2527 <dt>
2528 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-description" title="gvir_config_domain_snapshot_set_description ()">gvir_config_domain_snapshot_set_description</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
2529 </dt>
2530 <dd></dd>
2531 <dt>
2532 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-disks" title="gvir_config_domain_snapshot_set_disks ()">gvir_config_domain_snapshot_set_disks</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
2533 </dt>
2534 <dd></dd>
2535 <dt>
2536 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-memory-file" title="gvir_config_domain_snapshot_set_memory_file ()">gvir_config_domain_snapshot_set_memory_file</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
2537 </dt>
2538 <dd></dd>
2539 <dt>
2540 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-memory-state" title="gvir_config_domain_snapshot_set_memory_state ()">gvir_config_domain_snapshot_set_memory_state</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
2541 </dt>
2542 <dd></dd>
2543 <dt>
2544 <a class="link" href="GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-name" title="gvir_config_domain_snapshot_set_name ()">gvir_config_domain_snapshot_set_name</a>, function in <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
19462545 </dt>
19472546 <dd></dd>
19482547 <dt>
19582557 </dt>
19592558 <dd></dd>
19602559 <dt>
2560 gvir_config_domain_timer_get_present, function in GVirConfigDomainTimer
2561 </dt>
2562 <dd></dd>
2563 <dt>
19612564 gvir_config_domain_timer_get_tick_policy, function in GVirConfigDomainTimer
19622565 </dt>
19632566 <dd></dd>
19642567 <dt>
2568 gvir_config_domain_timer_hpet_new, function in GVirConfigDomainTimerHpet
2569 </dt>
2570 <dd></dd>
2571 <dt>
2572 gvir_config_domain_timer_hpet_new_from_xml, function in GVirConfigDomainTimerHpet
2573 </dt>
2574 <dd></dd>
2575 <dt>
19652576 gvir_config_domain_timer_pit_new, function in GVirConfigDomainTimerPit
19662577 </dt>
19672578 <dd></dd>
19782589 </dt>
19792590 <dd></dd>
19802591 <dt>
2592 gvir_config_domain_timer_set_present, function in GVirConfigDomainTimer
2593 </dt>
2594 <dd></dd>
2595 <dt>
19812596 gvir_config_domain_timer_set_tick_policy, function in GVirConfigDomainTimer
19822597 </dt>
19832598 <dd></dd>
20222637 </dt>
20232638 <dd></dd>
20242639 <dt>
2025 <a class="link" href="Libvirt-gconfig-GVirConfig.html#gvir-config-interface-new" title="gvir_config_interface_new ()">gvir_config_interface_new</a>, function in <a class="link" href="Libvirt-gconfig-GVirConfig.html" title="GVirConfig">GVirConfig</a>
2026 </dt>
2027 <dd></dd>
2028 <dt>
2029 <a class="link" href="Libvirt-gconfig-GVirConfig.html#gvir-config-interface-new-from-xml" title="gvir_config_interface_new_from_xml ()">gvir_config_interface_new_from_xml</a>, function in <a class="link" href="Libvirt-gconfig-GVirConfig.html" title="GVirConfig">GVirConfig</a>
2030 </dt>
2031 <dd></dd>
2032 <dt>
2033 <a class="link" href="GVirConfigNetworkFilter.html#gvir-config-network-filter-new" title="gvir_config_network_filter_new ()">gvir_config_network_filter_new</a>, function in <a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter">GVirConfigNetworkFilter</a>
2034 </dt>
2035 <dd></dd>
2036 <dt>
2037 <a class="link" href="GVirConfigNetworkFilter.html#gvir-config-network-filter-new-from-xml" title="gvir_config_network_filter_new_from_xml ()">gvir_config_network_filter_new_from_xml</a>, function in <a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter">GVirConfigNetworkFilter</a>
2038 </dt>
2039 <dd></dd>
2040 <dt>
2041 <a class="link" href="GVirConfigNetwork.html#gvir-config-network-new" title="gvir_config_network_new ()">gvir_config_network_new</a>, function in <a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork">GVirConfigNetwork</a>
2042 </dt>
2043 <dd></dd>
2044 <dt>
2045 <a class="link" href="GVirConfigNetwork.html#gvir-config-network-new-from-xml" title="gvir_config_network_new_from_xml ()">gvir_config_network_new_from_xml</a>, function in <a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork">GVirConfigNetwork</a>
2046 </dt>
2047 <dd></dd>
2048 <dt>
2049 <a class="link" href="GVirConfigNodeDevice.html#gvir-config-node-device-new" title="gvir_config_node_device_new ()">gvir_config_node_device_new</a>, function in <a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice">GVirConfigNodeDevice</a>
2050 </dt>
2051 <dd></dd>
2052 <dt>
2053 <a class="link" href="GVirConfigNodeDevice.html#gvir-config-node-device-new-from-xml" title="gvir_config_node_device_new_from_xml ()">gvir_config_node_device_new_from_xml</a>, function in <a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice">GVirConfigNodeDevice</a>
2640 <a class="link" href="GVirConfigInterface.html#gvir-config-interface-new" title="gvir_config_interface_new ()">gvir_config_interface_new</a>, function in <a class="link" href="GVirConfigInterface.html" title="GVirConfigInterface">GVirConfigInterface</a>
2641 </dt>
2642 <dd></dd>
2643 <dt>
2644 <a class="link" href="GVirConfigInterface.html#gvir-config-interface-new-from-xml" title="gvir_config_interface_new_from_xml ()">gvir_config_interface_new_from_xml</a>, function in <a class="link" href="GVirConfigInterface.html" title="GVirConfigInterface">GVirConfigInterface</a>
2645 </dt>
2646 <dd></dd>
2647 <dt>
2648 <a class="link" href="GVirConfigNetworkFilter.html#gvir-config-network-filter-new" title="gvir_config_network_filter_new ()">gvir_config_network_filter_new</a>, function in <a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter">GVirConfigNetworkFilter</a>
2649 </dt>
2650 <dd></dd>
2651 <dt>
2652 <a class="link" href="GVirConfigNetworkFilter.html#gvir-config-network-filter-new-from-xml" title="gvir_config_network_filter_new_from_xml ()">gvir_config_network_filter_new_from_xml</a>, function in <a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter">GVirConfigNetworkFilter</a>
2653 </dt>
2654 <dd></dd>
2655 <dt>
2656 <a class="link" href="GVirConfigNetwork.html#gvir-config-network-new" title="gvir_config_network_new ()">gvir_config_network_new</a>, function in <a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork">GVirConfigNetwork</a>
2657 </dt>
2658 <dd></dd>
2659 <dt>
2660 <a class="link" href="GVirConfigNetwork.html#gvir-config-network-new-from-xml" title="gvir_config_network_new_from_xml ()">gvir_config_network_new_from_xml</a>, function in <a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork">GVirConfigNetwork</a>
2661 </dt>
2662 <dd></dd>
2663 <dt>
2664 <a class="link" href="GVirConfigNodeDevice.html#gvir-config-node-device-new" title="gvir_config_node_device_new ()">gvir_config_node_device_new</a>, function in <a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice">GVirConfigNodeDevice</a>
2665 </dt>
2666 <dd></dd>
2667 <dt>
2668 <a class="link" href="GVirConfigNodeDevice.html#gvir-config-node-device-new-from-xml" title="gvir_config_node_device_new_from_xml ()">gvir_config_node_device_new_from_xml</a>, function in <a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice">GVirConfigNodeDevice</a>
20542669 </dt>
20552670 <dd></dd>
20562671 <dt>
20982713 </dt>
20992714 <dd></dd>
21002715 <dt>
2716 gvir_config_object_get_attribute_boolean, function in libvirt-gconfig-object-private
2717 </dt>
2718 <dd></dd>
2719 <dt>
21012720 gvir_config_object_get_attribute_genum, function in libvirt-gconfig-object-private
21022721 </dt>
21032722 <dd></dd>
21262745 </dt>
21272746 <dd></dd>
21282747 <dt>
2129 <a class="link" href="GVirConfigObject.html#gvir-config-object-get-schema" title="gvir_config_object_get_schema ()">gvir_config_object_get_schema</a>, function in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
2748 <a class="link" href="GVirConfigObject.html#gvir-config-object-get-schema" title="gvir_config_object_get_schema ()">gvir_config_object_get_schema</a>, function in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
21302749 </dt>
21312750 <dd></dd>
21322751 <dt>
21382757 </dt>
21392758 <dd></dd>
21402759 <dt>
2141 <a class="link" href="GVirConfigObject.html#gvir-config-object-new" title="gvir_config_object_new ()">gvir_config_object_new</a>, function in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
2760 <a class="link" href="GVirConfigObject.html#gvir-config-object-new" title="gvir_config_object_new ()">gvir_config_object_new</a>, function in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
21422761 </dt>
21432762 <dd></dd>
21442763 <dt>
21462765 </dt>
21472766 <dd></dd>
21482767 <dt>
2149 <a class="link" href="GVirConfigObject.html#gvir-config-object-new-from-xml" title="gvir_config_object_new_from_xml ()">gvir_config_object_new_from_xml</a>, function in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
2768 <a class="link" href="GVirConfigObject.html#gvir-config-object-new-from-xml" title="gvir_config_object_new_from_xml ()">gvir_config_object_new_from_xml</a>, function in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
21502769 </dt>
21512770 <dd></dd>
21522771 <dt>
21902809 </dt>
21912810 <dd></dd>
21922811 <dt>
2193 <a class="link" href="GVirConfigObject.html#gvir-config-object-to-xml" title="gvir_config_object_to_xml ()">gvir_config_object_to_xml</a>, function in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
2194 </dt>
2195 <dd></dd>
2196 <dt>
2197 <a class="link" href="GVirConfigObject.html#gvir-config-object-validate" title="gvir_config_object_validate ()">gvir_config_object_validate</a>, function in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
2198 </dt>
2199 <dd></dd>
2200 <dt>
2201 <a class="link" href="GVirConfigSecret.html#gvir-config-secret-new" title="gvir_config_secret_new ()">gvir_config_secret_new</a>, function in <a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret">GVirConfigSecret</a>
2202 </dt>
2203 <dd></dd>
2204 <dt>
2205 <a class="link" href="GVirConfigSecret.html#gvir-config-secret-new-from-xml" title="gvir_config_secret_new_from_xml ()">gvir_config_secret_new_from_xml</a>, function in <a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret">GVirConfigSecret</a>
2812 <a class="link" href="GVirConfigObject.html#gvir-config-object-to-xml" title="gvir_config_object_to_xml ()">gvir_config_object_to_xml</a>, function in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
2813 </dt>
2814 <dd></dd>
2815 <dt>
2816 <a class="link" href="GVirConfigObject.html#gvir-config-object-validate" title="gvir_config_object_validate ()">gvir_config_object_validate</a>, function in <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
2817 </dt>
2818 <dd></dd>
2819 <dt>
2820 <a class="link" href="GVirConfigSecret.html#gvir-config-secret-new" title="gvir_config_secret_new ()">gvir_config_secret_new</a>, function in <a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret">GVirConfigSecret</a>
2821 </dt>
2822 <dd></dd>
2823 <dt>
2824 <a class="link" href="GVirConfigSecret.html#gvir-config-secret-new-from-xml" title="gvir_config_secret_new_from_xml ()">gvir_config_secret_new_from_xml</a>, function in <a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret">GVirConfigSecret</a>
22062825 </dt>
22072826 <dd></dd>
22082827 <dt>
22582877 </dt>
22592878 <dd></dd>
22602879 <dt>
2261 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-allocation" title="gvir_config_storage_pool_get_allocation ()">gvir_config_storage_pool_get_allocation</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2262 </dt>
2263 <dd></dd>
2264 <dt>
2265 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-available" title="gvir_config_storage_pool_get_available ()">gvir_config_storage_pool_get_available</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2266 </dt>
2267 <dd></dd>
2268 <dt>
2269 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-capacity" title="gvir_config_storage_pool_get_capacity ()">gvir_config_storage_pool_get_capacity</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2270 </dt>
2271 <dd></dd>
2272 <dt>
2273 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-name" title="gvir_config_storage_pool_get_name ()">gvir_config_storage_pool_get_name</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2274 </dt>
2275 <dd></dd>
2276 <dt>
2277 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-pool-type" title="gvir_config_storage_pool_get_pool_type ()">gvir_config_storage_pool_get_pool_type</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2278 </dt>
2279 <dd></dd>
2280 <dt>
2281 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-source" title="gvir_config_storage_pool_get_source ()">gvir_config_storage_pool_get_source</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2282 </dt>
2283 <dd></dd>
2284 <dt>
2285 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-target" title="gvir_config_storage_pool_get_target ()">gvir_config_storage_pool_get_target</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2286 </dt>
2287 <dd></dd>
2288 <dt>
2289 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-uuid" title="gvir_config_storage_pool_get_uuid ()">gvir_config_storage_pool_get_uuid</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2290 </dt>
2291 <dd></dd>
2292 <dt>
2293 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-new" title="gvir_config_storage_pool_new ()">gvir_config_storage_pool_new</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2294 </dt>
2295 <dd></dd>
2296 <dt>
2297 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-new-from-xml" title="gvir_config_storage_pool_new_from_xml ()">gvir_config_storage_pool_new_from_xml</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2298 </dt>
2299 <dd></dd>
2300 <dt>
2301 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-allocation" title="gvir_config_storage_pool_set_allocation ()">gvir_config_storage_pool_set_allocation</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2302 </dt>
2303 <dd></dd>
2304 <dt>
2305 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-available" title="gvir_config_storage_pool_set_available ()">gvir_config_storage_pool_set_available</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2306 </dt>
2307 <dd></dd>
2308 <dt>
2309 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-capacity" title="gvir_config_storage_pool_set_capacity ()">gvir_config_storage_pool_set_capacity</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2310 </dt>
2311 <dd></dd>
2312 <dt>
2313 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-name" title="gvir_config_storage_pool_set_name ()">gvir_config_storage_pool_set_name</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2314 </dt>
2315 <dd></dd>
2316 <dt>
2317 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-pool-type" title="gvir_config_storage_pool_set_pool_type ()">gvir_config_storage_pool_set_pool_type</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2318 </dt>
2319 <dd></dd>
2320 <dt>
2321 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-source" title="gvir_config_storage_pool_set_source ()">gvir_config_storage_pool_set_source</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2322 </dt>
2323 <dd></dd>
2324 <dt>
2325 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-target" title="gvir_config_storage_pool_set_target ()">gvir_config_storage_pool_set_target</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2326 </dt>
2327 <dd></dd>
2328 <dt>
2329 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-uuid" title="gvir_config_storage_pool_set_uuid ()">gvir_config_storage_pool_set_uuid</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2880 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-allocation" title="gvir_config_storage_pool_get_allocation ()">gvir_config_storage_pool_get_allocation</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2881 </dt>
2882 <dd></dd>
2883 <dt>
2884 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-available" title="gvir_config_storage_pool_get_available ()">gvir_config_storage_pool_get_available</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2885 </dt>
2886 <dd></dd>
2887 <dt>
2888 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-capacity" title="gvir_config_storage_pool_get_capacity ()">gvir_config_storage_pool_get_capacity</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2889 </dt>
2890 <dd></dd>
2891 <dt>
2892 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-name" title="gvir_config_storage_pool_get_name ()">gvir_config_storage_pool_get_name</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2893 </dt>
2894 <dd></dd>
2895 <dt>
2896 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-pool-type" title="gvir_config_storage_pool_get_pool_type ()">gvir_config_storage_pool_get_pool_type</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2897 </dt>
2898 <dd></dd>
2899 <dt>
2900 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-source" title="gvir_config_storage_pool_get_source ()">gvir_config_storage_pool_get_source</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2901 </dt>
2902 <dd></dd>
2903 <dt>
2904 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-target" title="gvir_config_storage_pool_get_target ()">gvir_config_storage_pool_get_target</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2905 </dt>
2906 <dd></dd>
2907 <dt>
2908 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-get-uuid" title="gvir_config_storage_pool_get_uuid ()">gvir_config_storage_pool_get_uuid</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2909 </dt>
2910 <dd></dd>
2911 <dt>
2912 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-new" title="gvir_config_storage_pool_new ()">gvir_config_storage_pool_new</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2913 </dt>
2914 <dd></dd>
2915 <dt>
2916 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-new-from-xml" title="gvir_config_storage_pool_new_from_xml ()">gvir_config_storage_pool_new_from_xml</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2917 </dt>
2918 <dd></dd>
2919 <dt>
2920 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-allocation" title="gvir_config_storage_pool_set_allocation ()">gvir_config_storage_pool_set_allocation</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2921 </dt>
2922 <dd></dd>
2923 <dt>
2924 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-available" title="gvir_config_storage_pool_set_available ()">gvir_config_storage_pool_set_available</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2925 </dt>
2926 <dd></dd>
2927 <dt>
2928 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-capacity" title="gvir_config_storage_pool_set_capacity ()">gvir_config_storage_pool_set_capacity</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2929 </dt>
2930 <dd></dd>
2931 <dt>
2932 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-name" title="gvir_config_storage_pool_set_name ()">gvir_config_storage_pool_set_name</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2933 </dt>
2934 <dd></dd>
2935 <dt>
2936 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-pool-type" title="gvir_config_storage_pool_set_pool_type ()">gvir_config_storage_pool_set_pool_type</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2937 </dt>
2938 <dd></dd>
2939 <dt>
2940 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-source" title="gvir_config_storage_pool_set_source ()">gvir_config_storage_pool_set_source</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2941 </dt>
2942 <dd></dd>
2943 <dt>
2944 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-target" title="gvir_config_storage_pool_set_target ()">gvir_config_storage_pool_set_target</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
2945 </dt>
2946 <dd></dd>
2947 <dt>
2948 <a class="link" href="GVirConfigStoragePool.html#gvir-config-storage-pool-set-uuid" title="gvir_config_storage_pool_set_uuid ()">gvir_config_storage_pool_set_uuid</a>, function in <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
23302949 </dt>
23312950 <dd></dd>
23322951 <dt>
24423061 </dt>
24433062 <dd></dd>
24443063 <dt>
2445 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-new" title="gvir_config_storage_vol_new ()">gvir_config_storage_vol_new</a>, function in <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
2446 </dt>
2447 <dd></dd>
2448 <dt>
2449 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-new-from-xml" title="gvir_config_storage_vol_new_from_xml ()">gvir_config_storage_vol_new_from_xml</a>, function in <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
2450 </dt>
2451 <dd></dd>
2452 <dt>
2453 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-allocation" title="gvir_config_storage_vol_set_allocation ()">gvir_config_storage_vol_set_allocation</a>, function in <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
2454 </dt>
2455 <dd></dd>
2456 <dt>
2457 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-backing-store" title="gvir_config_storage_vol_set_backing_store ()">gvir_config_storage_vol_set_backing_store</a>, function in <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
2458 </dt>
2459 <dd></dd>
2460 <dt>
2461 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-capacity" title="gvir_config_storage_vol_set_capacity ()">gvir_config_storage_vol_set_capacity</a>, function in <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
2462 </dt>
2463 <dd></dd>
2464 <dt>
2465 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-name" title="gvir_config_storage_vol_set_name ()">gvir_config_storage_vol_set_name</a>, function in <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
2466 </dt>
2467 <dd></dd>
2468 <dt>
2469 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-target" title="gvir_config_storage_vol_set_target ()">gvir_config_storage_vol_set_target</a>, function in <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
3064 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-new" title="gvir_config_storage_vol_new ()">gvir_config_storage_vol_new</a>, function in <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
3065 </dt>
3066 <dd></dd>
3067 <dt>
3068 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-new-from-xml" title="gvir_config_storage_vol_new_from_xml ()">gvir_config_storage_vol_new_from_xml</a>, function in <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
3069 </dt>
3070 <dd></dd>
3071 <dt>
3072 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-allocation" title="gvir_config_storage_vol_set_allocation ()">gvir_config_storage_vol_set_allocation</a>, function in <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
3073 </dt>
3074 <dd></dd>
3075 <dt>
3076 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-backing-store" title="gvir_config_storage_vol_set_backing_store ()">gvir_config_storage_vol_set_backing_store</a>, function in <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
3077 </dt>
3078 <dd></dd>
3079 <dt>
3080 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-capacity" title="gvir_config_storage_vol_set_capacity ()">gvir_config_storage_vol_set_capacity</a>, function in <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
3081 </dt>
3082 <dd></dd>
3083 <dt>
3084 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-name" title="gvir_config_storage_vol_set_name ()">gvir_config_storage_vol_set_name</a>, function in <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
3085 </dt>
3086 <dd></dd>
3087 <dt>
3088 <a class="link" href="GVirConfigStorageVol.html#gvir-config-storage-vol-set-target" title="gvir_config_storage_vol_set_target ()">gvir_config_storage_vol_set_target</a>, function in <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
24703089 </dt>
24713090 <dd></dd>
24723091 <dt>
25163135 </div>
25173136 <div class="footer">
25183137 <hr>
2519 Generated by GTK-Doc V1.19</div>
3138 Generated by GTK-Doc V1.21</div>
25203139 </body>
25213140 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>Libvirt-gconfig</title>
4 <title>Libvirt-gconfig Reference Manual: Libvirt-gconfig</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
77 <link rel="up" href="index.html" title="Libvirt-gconfig Reference Manual">
88 <link rel="prev" href="index.html" title="Libvirt-gconfig Reference Manual">
99 <link rel="next" href="GVirConfigObject.html" title="GVirConfigObject">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
15 <td><a accesskey="p" href="index.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
16 <td> </td>
17 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
18 <th width="100%" align="center">Libvirt-gconfig Reference Manual</th>
19 <td><a accesskey="n" href="GVirConfigObject.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts"></td>
16 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
17 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
18 <td><a accesskey="p" href="index.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
19 <td><a accesskey="n" href="GVirConfigObject.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
2020 </tr></table>
2121 <div class="chapter">
2222 <div class="titlepage"><div><div><h1 class="title">
3232 <span class="refentrytitle"><a href="GVirConfigDomainSnapshot.html">GVirConfigDomainSnapshot</a></span><span class="refpurpose"></span>
3333 </dt>
3434 <dt>
35 <span class="refentrytitle"><a href="Libvirt-gconfig-GVirConfig.html">GVirConfig</a></span><span class="refpurpose"></span>
35 <span class="refentrytitle"><a href="GVirConfigInterface.html">GVirConfigInterface</a></span><span class="refpurpose"></span>
3636 </dt>
3737 <dt>
3838 <span class="refentrytitle"><a href="GVirConfigNetworkFilter.html">GVirConfigNetworkFilter</a></span><span class="refpurpose"></span>
5959 </div>
6060 <div class="footer">
6161 <hr>
62 Generated by GTK-Doc V1.19</div>
62 Generated by GTK-Doc V1.21</div>
6363 </body>
6464 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>Libvirt-gconfig Reference Manual</title>
4 <title>Libvirt-gconfig Reference Manual: Libvirt-gconfig Reference Manual</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
77 <link rel="next" href="ch01.html" title="Libvirt-gconfig">
8 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
8 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
99 <link rel="stylesheet" href="style.css" type="text/css">
1010 </head>
1111 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
2727 <span class="refentrytitle"><a href="GVirConfigDomainSnapshot.html">GVirConfigDomainSnapshot</a></span><span class="refpurpose"></span>
2828 </dt>
2929 <dt>
30 <span class="refentrytitle"><a href="Libvirt-gconfig-GVirConfig.html">GVirConfig</a></span><span class="refpurpose"></span>
30 <span class="refentrytitle"><a href="GVirConfigInterface.html">GVirConfigInterface</a></span><span class="refpurpose"></span>
3131 </dt>
3232 <dt>
3333 <span class="refentrytitle"><a href="GVirConfigNetworkFilter.html">GVirConfigNetworkFilter</a></span><span class="refpurpose"></span>
5858 </div>
5959 <div class="footer">
6060 <hr>
61 Generated by GTK-Doc V1.19</div>
61 Generated by GTK-Doc V1.21</div>
6262 </body>
6363 </html>
00 <ANCHOR id="GVirConfigObject" href="Libvirt-gconfig/GVirConfigObject.html">
1 <ANCHOR id="GVirConfigObject.synopsis" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObject.synopsis">
1 <ANCHOR id="GVirConfigObject.functions" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObject.functions">
2 <ANCHOR id="GVirConfigObject.properties" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObject.properties">
3 <ANCHOR id="GVirConfigObject.other" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObject.other">
24 <ANCHOR id="GVirConfigObject.object-hierarchy" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObject.object-hierarchy">
3 <ANCHOR id="GVirConfigObject.properties" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObject.properties">
45 <ANCHOR id="GVirConfigObject.description" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObject.description">
5 <ANCHOR id="GVirConfigObject.details" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObject.details">
6 <ANCHOR id="GVirConfigObject-struct" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObject-struct">
7 <ANCHOR id="GVirConfigObjectClass" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObjectClass">
6 <ANCHOR id="GVirConfigObject.functions_details" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObject.functions_details">
87 <ANCHOR id="gvir-config-object-new" href="Libvirt-gconfig/GVirConfigObject.html#gvir-config-object-new">
98 <ANCHOR id="gvir-config-object-new-from-xml" href="Libvirt-gconfig/GVirConfigObject.html#gvir-config-object-new-from-xml">
109 <ANCHOR id="gvir-config-object-validate" href="Libvirt-gconfig/GVirConfigObject.html#gvir-config-object-validate">
1110 <ANCHOR id="gvir-config-object-to-xml" href="Libvirt-gconfig/GVirConfigObject.html#gvir-config-object-to-xml">
1211 <ANCHOR id="gvir-config-object-get-schema" href="Libvirt-gconfig/GVirConfigObject.html#gvir-config-object-get-schema">
12 <ANCHOR id="GVirConfigObject.other_details" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObject.other_details">
13 <ANCHOR id="GVirConfigObject-struct" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObject-struct">
14 <ANCHOR id="GVirConfigObjectClass" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObjectClass">
15 <ANCHOR id="GVirConfigObjectPrivate" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObjectPrivate">
1316 <ANCHOR id="GVirConfigObject.property-details" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObject.property-details">
1417 <ANCHOR id="GVirConfigObject--doc" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObject--doc">
1518 <ANCHOR id="GVirConfigObject--node" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObject--node">
1619 <ANCHOR id="GVirConfigObject--schema" href="Libvirt-gconfig/GVirConfigObject.html#GVirConfigObject--schema">
1720 <ANCHOR id="GVirConfigDomain" href="Libvirt-gconfig/GVirConfigDomain.html">
18 <ANCHOR id="GVirConfigDomain.synopsis" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain.synopsis">
21 <ANCHOR id="GVirConfigDomain.functions" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain.functions">
22 <ANCHOR id="GVirConfigDomain.properties" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain.properties">
23 <ANCHOR id="GVirConfigDomain.other" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain.other">
1924 <ANCHOR id="GVirConfigDomain.object-hierarchy" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain.object-hierarchy">
20 <ANCHOR id="GVirConfigDomain.properties" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain.properties">
2125 <ANCHOR id="GVirConfigDomain.description" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain.description">
22 <ANCHOR id="GVirConfigDomain.details" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain.details">
23 <ANCHOR id="GVirConfigDomain-struct" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain-struct">
24 <ANCHOR id="GVirConfigDomainClass" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomainClass">
25 <ANCHOR id="GVirConfigDomainVirtType" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomainVirtType">
26 <ANCHOR id="GVIR-CONFIG-DOMAIN-VIRT-QEMU:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-QEMU:CAPS">
27 <ANCHOR id="GVIR-CONFIG-DOMAIN-VIRT-KQEMU:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-KQEMU:CAPS">
28 <ANCHOR id="GVIR-CONFIG-DOMAIN-VIRT-KVM:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-KVM:CAPS">
29 <ANCHOR id="GVIR-CONFIG-DOMAIN-VIRT-XEN:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-XEN:CAPS">
30 <ANCHOR id="GVIR-CONFIG-DOMAIN-VIRT-LXC:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-LXC:CAPS">
31 <ANCHOR id="GVIR-CONFIG-DOMAIN-VIRT-UML:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-UML:CAPS">
32 <ANCHOR id="GVIR-CONFIG-DOMAIN-VIRT-OPENVZ:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-OPENVZ:CAPS">
33 <ANCHOR id="GVIR-CONFIG-DOMAIN-VIRT-VSERVER:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-VSERVER:CAPS">
34 <ANCHOR id="GVIR-CONFIG-DOMAIN-VIRT-LDOM:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-LDOM:CAPS">
35 <ANCHOR id="GVIR-CONFIG-DOMAIN-VIRT-TEST:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-TEST:CAPS">
36 <ANCHOR id="GVIR-CONFIG-DOMAIN-VIRT-VMWARE:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-VMWARE:CAPS">
37 <ANCHOR id="GVIR-CONFIG-DOMAIN-VIRT-HYPERV:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-HYPERV:CAPS">
38 <ANCHOR id="GVIR-CONFIG-DOMAIN-VIRT-VBOX:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-VBOX:CAPS">
39 <ANCHOR id="GVIR-CONFIG-DOMAIN-VIRT-ONE:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-ONE:CAPS">
40 <ANCHOR id="GVIR-CONFIG-DOMAIN-VIRT-PHYP:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-VIRT-PHYP:CAPS">
41 <ANCHOR id="GVirConfigDomainLifecycleEvent" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomainLifecycleEvent">
42 <ANCHOR id="GVIR-CONFIG-DOMAIN-LIFECYCLE-ON-POWEROFF:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-ON-POWEROFF:CAPS">
43 <ANCHOR id="GVIR-CONFIG-DOMAIN-LIFECYCLE-ON-REBOOT:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-ON-REBOOT:CAPS">
44 <ANCHOR id="GVIR-CONFIG-DOMAIN-LIFECYCLE-ON-CRASH:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-ON-CRASH:CAPS">
45 <ANCHOR id="GVirConfigDomainLifecycleAction" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomainLifecycleAction">
46 <ANCHOR id="GVIR-CONFIG-DOMAIN-LIFECYCLE-DESTROY:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-DESTROY:CAPS">
47 <ANCHOR id="GVIR-CONFIG-DOMAIN-LIFECYCLE-RESTART:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-RESTART:CAPS">
48 <ANCHOR id="GVIR-CONFIG-DOMAIN-LIFECYCLE-PRESERVE:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-PRESERVE:CAPS">
49 <ANCHOR id="GVIR-CONFIG-DOMAIN-LIFECYCLE-RENAME-RESTART:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-RENAME-RESTART:CAPS">
50 <ANCHOR id="GVIR-CONFIG-DOMAIN-LIFECYCLE-COREDUMP-DESTROY:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-COREDUMP-DESTROY:CAPS">
51 <ANCHOR id="GVIR-CONFIG-DOMAIN-LIFECYCLE-COREDUMP-RESTART:CAPS" href="Libvirt-gconfig/GVirConfigDomain.html#GVIR-CONFIG-DOMAIN-LIFECYCLE-COREDUMP-RESTART:CAPS">
26 <ANCHOR id="GVirConfigDomain.functions_details" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain.functions_details">
5227 <ANCHOR id="gvir-config-domain-new-from-xml" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-new-from-xml">
5328 <ANCHOR id="gvir-config-domain-new" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-new">
5429 <ANCHOR id="gvir-config-domain-get-virt-type" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-get-virt-type">
5530 <ANCHOR id="gvir-config-domain-set-virt-type" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-set-virt-type">
5631 <ANCHOR id="gvir-config-domain-get-name" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-get-name">
5732 <ANCHOR id="gvir-config-domain-set-name" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-set-name">
33 <ANCHOR id="gvir-config-domain-get-uuid" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-get-uuid">
34 <ANCHOR id="gvir-config-domain-set-uuid" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-set-uuid">
5835 <ANCHOR id="gvir-config-domain-get-description" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-get-description">
5936 <ANCHOR id="gvir-config-domain-set-description" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-set-description">
6037 <ANCHOR id="gvir-config-domain-get-memory" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-get-memory">
6542 <ANCHOR id="gvir-config-domain-set-vcpus" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-set-vcpus">
6643 <ANCHOR id="gvir-config-domain-get-features" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-get-features">
6744 <ANCHOR id="gvir-config-domain-set-features" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-set-features">
45 <ANCHOR id="gvir-config-domain-get-clock" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-get-clock">
6846 <ANCHOR id="gvir-config-domain-set-clock" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-set-clock">
6947 <ANCHOR id="gvir-config-domain-get-os" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-get-os">
7048 <ANCHOR id="gvir-config-domain-set-os" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-set-os">
8058 <ANCHOR id="gvir-config-domain-get-cpu" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-get-cpu">
8159 <ANCHOR id="gvir-config-domain-set-cpu" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-set-cpu">
8260 <ANCHOR id="gvir-config-domain-set-power-management" href="Libvirt-gconfig/GVirConfigDomain.html#gvir-config-domain-set-power-management">
61 <ANCHOR id="GVirConfigDomain.other_details" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain.other_details">
62 <ANCHOR id="GVirConfigDomain-struct" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain-struct">
63 <ANCHOR id="GVirConfigDomainClass" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomainClass">
64 <ANCHOR id="GVirConfigDomainVirtType" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomainVirtType">
65 <ANCHOR id="GVirConfigDomainLifecycleEvent" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomainLifecycleEvent">
66 <ANCHOR id="GVirConfigDomainLifecycleAction" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomainLifecycleAction">
67 <ANCHOR id="GVirConfigDomainPrivate" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomainPrivate">
8368 <ANCHOR id="GVirConfigDomain.property-details" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain.property-details">
8469 <ANCHOR id="GVirConfigDomain--current-memory" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain--current-memory">
8570 <ANCHOR id="GVirConfigDomain--description" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain--description">
8772 <ANCHOR id="GVirConfigDomain--memory" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain--memory">
8873 <ANCHOR id="GVirConfigDomain--name" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain--name">
8974 <ANCHOR id="GVirConfigDomain--title" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain--title">
75 <ANCHOR id="GVirConfigDomain--uuid" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain--uuid">
9076 <ANCHOR id="GVirConfigDomain--vcpu" href="Libvirt-gconfig/GVirConfigDomain.html#GVirConfigDomain--vcpu">
9177 <ANCHOR id="GVirConfigDomainSnapshot" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html">
92 <ANCHOR id="GVirConfigDomainSnapshot.synopsis" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot.synopsis">
78 <ANCHOR id="GVirConfigDomainSnapshot.functions" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot.functions">
79 <ANCHOR id="GVirConfigDomainSnapshot.other" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot.other">
9380 <ANCHOR id="GVirConfigDomainSnapshot.object-hierarchy" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot.object-hierarchy">
9481 <ANCHOR id="GVirConfigDomainSnapshot.description" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot.description">
95 <ANCHOR id="GVirConfigDomainSnapshot.details" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot.details">
96 <ANCHOR id="GVirConfigDomainSnapshot-struct" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot-struct">
97 <ANCHOR id="GVirConfigDomainSnapshotClass" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotClass">
98 <ANCHOR id="GVirConfigDomainSnapshotDomainState" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotDomainState">
99 <ANCHOR id="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-NOSTATE:CAPS" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-NOSTATE:CAPS">
100 <ANCHOR id="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-RUNNING:CAPS" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-RUNNING:CAPS">
101 <ANCHOR id="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-BLOCKED:CAPS" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-BLOCKED:CAPS">
102 <ANCHOR id="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-PAUSED:CAPS" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-PAUSED:CAPS">
103 <ANCHOR id="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-SHUTDOWN:CAPS" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-SHUTDOWN:CAPS">
104 <ANCHOR id="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-SHUTOFF:CAPS" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-SHUTOFF:CAPS">
105 <ANCHOR id="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-CRASHED:CAPS" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-CRASHED:CAPS">
106 <ANCHOR id="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-PMSUSPENDED:CAPS" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-PMSUSPENDED:CAPS">
107 <ANCHOR id="GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-DISK-SNAPSHOT:CAPS" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-DOMAIN-STATE-DISK-SNAPSHOT:CAPS">
108 <ANCHOR id="GVirConfigDomainSnapshotMemoryState" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotMemoryState">
109 <ANCHOR id="GVIR-CONFIG-DOMAIN-SNAPSHOT-MEMORY-STATE-NONE:CAPS" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-MEMORY-STATE-NONE:CAPS">
110 <ANCHOR id="GVIR-CONFIG-DOMAIN-SNAPSHOT-MEMORY-STATE-INTERNAL:CAPS" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-MEMORY-STATE-INTERNAL:CAPS">
111 <ANCHOR id="GVIR-CONFIG-DOMAIN-SNAPSHOT-MEMORY-STATE-EXTERNAL:CAPS" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVIR-CONFIG-DOMAIN-SNAPSHOT-MEMORY-STATE-EXTERNAL:CAPS">
82 <ANCHOR id="GVirConfigDomainSnapshot.functions_details" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot.functions_details">
11283 <ANCHOR id="gvir-config-domain-snapshot-new" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-new">
11384 <ANCHOR id="gvir-config-domain-snapshot-new-from-xml" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-new-from-xml">
11485 <ANCHOR id="gvir-config-domain-snapshot-get-name" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-name">
12697 <ANCHOR id="gvir-config-domain-snapshot-set-disks" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-set-disks">
12798 <ANCHOR id="gvir-config-domain-snapshot-add-disk" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-add-disk">
12899 <ANCHOR id="gvir-config-domain-snapshot-get-disks" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#gvir-config-domain-snapshot-get-disks">
129 <ANCHOR id="Libvirt-gconfig-GVirConfig" href="Libvirt-gconfig/Libvirt-gconfig-GVirConfig.html">
130 <ANCHOR id="Libvirt-gconfig-GVirConfig.synopsis" href="Libvirt-gconfig/Libvirt-gconfig-GVirConfig.html#Libvirt-gconfig-GVirConfig.synopsis">
131 <ANCHOR id="GVirConfigInterface" href="Libvirt-gconfig/Libvirt-gconfig-GVirConfig.html#GVirConfigInterface">
132 <ANCHOR id="Libvirt-gconfig-GVirConfig.object-hierarchy" href="Libvirt-gconfig/Libvirt-gconfig-GVirConfig.html#Libvirt-gconfig-GVirConfig.object-hierarchy">
133 <ANCHOR id="Libvirt-gconfig-GVirConfig.description" href="Libvirt-gconfig/Libvirt-gconfig-GVirConfig.html#Libvirt-gconfig-GVirConfig.description">
134 <ANCHOR id="Libvirt-gconfig-GVirConfig.details" href="Libvirt-gconfig/Libvirt-gconfig-GVirConfig.html#Libvirt-gconfig-GVirConfig.details">
135 <ANCHOR id="GVirConfigInterface-struct" href="Libvirt-gconfig/Libvirt-gconfig-GVirConfig.html#GVirConfigInterface-struct">
136 <ANCHOR id="GVirConfigInterfaceClass" href="Libvirt-gconfig/Libvirt-gconfig-GVirConfig.html#GVirConfigInterfaceClass">
137 <ANCHOR id="gvir-config-interface-new" href="Libvirt-gconfig/Libvirt-gconfig-GVirConfig.html#gvir-config-interface-new">
138 <ANCHOR id="gvir-config-interface-new-from-xml" href="Libvirt-gconfig/Libvirt-gconfig-GVirConfig.html#gvir-config-interface-new-from-xml">
100 <ANCHOR id="GVirConfigDomainSnapshot.other_details" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot.other_details">
101 <ANCHOR id="GVirConfigDomainSnapshot-struct" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshot-struct">
102 <ANCHOR id="GVirConfigDomainSnapshotClass" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotClass">
103 <ANCHOR id="GVirConfigDomainSnapshotDomainState" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotDomainState">
104 <ANCHOR id="GVirConfigDomainSnapshotMemoryState" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotMemoryState">
105 <ANCHOR id="GVirConfigDomainSnapshotPrivate" href="Libvirt-gconfig/GVirConfigDomainSnapshot.html#GVirConfigDomainSnapshotPrivate">
106 <ANCHOR id="GVirConfigInterface" href="Libvirt-gconfig/GVirConfigInterface.html">
107 <ANCHOR id="GVirConfigInterface.functions" href="Libvirt-gconfig/GVirConfigInterface.html#GVirConfigInterface.functions">
108 <ANCHOR id="GVirConfigInterface.other" href="Libvirt-gconfig/GVirConfigInterface.html#GVirConfigInterface.other">
109 <ANCHOR id="GVirConfigInterface.object-hierarchy" href="Libvirt-gconfig/GVirConfigInterface.html#GVirConfigInterface.object-hierarchy">
110 <ANCHOR id="GVirConfigInterface.description" href="Libvirt-gconfig/GVirConfigInterface.html#GVirConfigInterface.description">
111 <ANCHOR id="GVirConfigInterface.functions_details" href="Libvirt-gconfig/GVirConfigInterface.html#GVirConfigInterface.functions_details">
112 <ANCHOR id="gvir-config-interface-new" href="Libvirt-gconfig/GVirConfigInterface.html#gvir-config-interface-new">
113 <ANCHOR id="gvir-config-interface-new-from-xml" href="Libvirt-gconfig/GVirConfigInterface.html#gvir-config-interface-new-from-xml">
114 <ANCHOR id="GVirConfigInterface.other_details" href="Libvirt-gconfig/GVirConfigInterface.html#GVirConfigInterface.other_details">
115 <ANCHOR id="GVirConfigInterface-struct" href="Libvirt-gconfig/GVirConfigInterface.html#GVirConfigInterface-struct">
116 <ANCHOR id="GVirConfigInterfaceClass" href="Libvirt-gconfig/GVirConfigInterface.html#GVirConfigInterfaceClass">
117 <ANCHOR id="GVirConfigInterfacePrivate" href="Libvirt-gconfig/GVirConfigInterface.html#GVirConfigInterfacePrivate">
139118 <ANCHOR id="GVirConfigNetworkFilter" href="Libvirt-gconfig/GVirConfigNetworkFilter.html">
140 <ANCHOR id="GVirConfigNetworkFilter.synopsis" href="Libvirt-gconfig/GVirConfigNetworkFilter.html#GVirConfigNetworkFilter.synopsis">
119 <ANCHOR id="GVirConfigNetworkFilter.functions" href="Libvirt-gconfig/GVirConfigNetworkFilter.html#GVirConfigNetworkFilter.functions">
120 <ANCHOR id="GVirConfigNetworkFilter.other" href="Libvirt-gconfig/GVirConfigNetworkFilter.html#GVirConfigNetworkFilter.other">
141121 <ANCHOR id="GVirConfigNetworkFilter.object-hierarchy" href="Libvirt-gconfig/GVirConfigNetworkFilter.html#GVirConfigNetworkFilter.object-hierarchy">
142122 <ANCHOR id="GVirConfigNetworkFilter.description" href="Libvirt-gconfig/GVirConfigNetworkFilter.html#GVirConfigNetworkFilter.description">
143 <ANCHOR id="GVirConfigNetworkFilter.details" href="Libvirt-gconfig/GVirConfigNetworkFilter.html#GVirConfigNetworkFilter.details">
123 <ANCHOR id="GVirConfigNetworkFilter.functions_details" href="Libvirt-gconfig/GVirConfigNetworkFilter.html#GVirConfigNetworkFilter.functions_details">
124 <ANCHOR id="gvir-config-network-filter-new" href="Libvirt-gconfig/GVirConfigNetworkFilter.html#gvir-config-network-filter-new">
125 <ANCHOR id="gvir-config-network-filter-new-from-xml" href="Libvirt-gconfig/GVirConfigNetworkFilter.html#gvir-config-network-filter-new-from-xml">
126 <ANCHOR id="GVirConfigNetworkFilter.other_details" href="Libvirt-gconfig/GVirConfigNetworkFilter.html#GVirConfigNetworkFilter.other_details">
144127 <ANCHOR id="GVirConfigNetworkFilter-struct" href="Libvirt-gconfig/GVirConfigNetworkFilter.html#GVirConfigNetworkFilter-struct">
145128 <ANCHOR id="GVirConfigNetworkFilterClass" href="Libvirt-gconfig/GVirConfigNetworkFilter.html#GVirConfigNetworkFilterClass">
146 <ANCHOR id="gvir-config-network-filter-new" href="Libvirt-gconfig/GVirConfigNetworkFilter.html#gvir-config-network-filter-new">
147 <ANCHOR id="gvir-config-network-filter-new-from-xml" href="Libvirt-gconfig/GVirConfigNetworkFilter.html#gvir-config-network-filter-new-from-xml">
129 <ANCHOR id="GVirConfigNetworkFilterPrivate" href="Libvirt-gconfig/GVirConfigNetworkFilter.html#GVirConfigNetworkFilterPrivate">
148130 <ANCHOR id="GVirConfigNetwork" href="Libvirt-gconfig/GVirConfigNetwork.html">
149 <ANCHOR id="GVirConfigNetwork.synopsis" href="Libvirt-gconfig/GVirConfigNetwork.html#GVirConfigNetwork.synopsis">
131 <ANCHOR id="GVirConfigNetwork.functions" href="Libvirt-gconfig/GVirConfigNetwork.html#GVirConfigNetwork.functions">
132 <ANCHOR id="GVirConfigNetwork.other" href="Libvirt-gconfig/GVirConfigNetwork.html#GVirConfigNetwork.other">
150133 <ANCHOR id="GVirConfigNetwork.object-hierarchy" href="Libvirt-gconfig/GVirConfigNetwork.html#GVirConfigNetwork.object-hierarchy">
151134 <ANCHOR id="GVirConfigNetwork.description" href="Libvirt-gconfig/GVirConfigNetwork.html#GVirConfigNetwork.description">
152 <ANCHOR id="GVirConfigNetwork.details" href="Libvirt-gconfig/GVirConfigNetwork.html#GVirConfigNetwork.details">
135 <ANCHOR id="GVirConfigNetwork.functions_details" href="Libvirt-gconfig/GVirConfigNetwork.html#GVirConfigNetwork.functions_details">
136 <ANCHOR id="gvir-config-network-new" href="Libvirt-gconfig/GVirConfigNetwork.html#gvir-config-network-new">
137 <ANCHOR id="gvir-config-network-new-from-xml" href="Libvirt-gconfig/GVirConfigNetwork.html#gvir-config-network-new-from-xml">
138 <ANCHOR id="GVirConfigNetwork.other_details" href="Libvirt-gconfig/GVirConfigNetwork.html#GVirConfigNetwork.other_details">
153139 <ANCHOR id="GVirConfigNetwork-struct" href="Libvirt-gconfig/GVirConfigNetwork.html#GVirConfigNetwork-struct">
154140 <ANCHOR id="GVirConfigNetworkClass" href="Libvirt-gconfig/GVirConfigNetwork.html#GVirConfigNetworkClass">
155 <ANCHOR id="gvir-config-network-new" href="Libvirt-gconfig/GVirConfigNetwork.html#gvir-config-network-new">
156 <ANCHOR id="gvir-config-network-new-from-xml" href="Libvirt-gconfig/GVirConfigNetwork.html#gvir-config-network-new-from-xml">
141 <ANCHOR id="GVirConfigNetworkPrivate" href="Libvirt-gconfig/GVirConfigNetwork.html#GVirConfigNetworkPrivate">
157142 <ANCHOR id="GVirConfigNodeDevice" href="Libvirt-gconfig/GVirConfigNodeDevice.html">
158 <ANCHOR id="GVirConfigNodeDevice.synopsis" href="Libvirt-gconfig/GVirConfigNodeDevice.html#GVirConfigNodeDevice.synopsis">
143 <ANCHOR id="GVirConfigNodeDevice.functions" href="Libvirt-gconfig/GVirConfigNodeDevice.html#GVirConfigNodeDevice.functions">
144 <ANCHOR id="GVirConfigNodeDevice.other" href="Libvirt-gconfig/GVirConfigNodeDevice.html#GVirConfigNodeDevice.other">
159145 <ANCHOR id="GVirConfigNodeDevice.object-hierarchy" href="Libvirt-gconfig/GVirConfigNodeDevice.html#GVirConfigNodeDevice.object-hierarchy">
160146 <ANCHOR id="GVirConfigNodeDevice.description" href="Libvirt-gconfig/GVirConfigNodeDevice.html#GVirConfigNodeDevice.description">
161 <ANCHOR id="GVirConfigNodeDevice.details" href="Libvirt-gconfig/GVirConfigNodeDevice.html#GVirConfigNodeDevice.details">
147 <ANCHOR id="GVirConfigNodeDevice.functions_details" href="Libvirt-gconfig/GVirConfigNodeDevice.html#GVirConfigNodeDevice.functions_details">
148 <ANCHOR id="gvir-config-node-device-new" href="Libvirt-gconfig/GVirConfigNodeDevice.html#gvir-config-node-device-new">
149 <ANCHOR id="gvir-config-node-device-new-from-xml" href="Libvirt-gconfig/GVirConfigNodeDevice.html#gvir-config-node-device-new-from-xml">
150 <ANCHOR id="GVirConfigNodeDevice.other_details" href="Libvirt-gconfig/GVirConfigNodeDevice.html#GVirConfigNodeDevice.other_details">
162151 <ANCHOR id="GVirConfigNodeDevice-struct" href="Libvirt-gconfig/GVirConfigNodeDevice.html#GVirConfigNodeDevice-struct">
163152 <ANCHOR id="GVirConfigNodeDeviceClass" href="Libvirt-gconfig/GVirConfigNodeDevice.html#GVirConfigNodeDeviceClass">
164 <ANCHOR id="gvir-config-node-device-new" href="Libvirt-gconfig/GVirConfigNodeDevice.html#gvir-config-node-device-new">
165 <ANCHOR id="gvir-config-node-device-new-from-xml" href="Libvirt-gconfig/GVirConfigNodeDevice.html#gvir-config-node-device-new-from-xml">
153 <ANCHOR id="GVirConfigNodeDevicePrivate" href="Libvirt-gconfig/GVirConfigNodeDevice.html#GVirConfigNodeDevicePrivate">
166154 <ANCHOR id="GVirConfigSecret" href="Libvirt-gconfig/GVirConfigSecret.html">
167 <ANCHOR id="GVirConfigSecret.synopsis" href="Libvirt-gconfig/GVirConfigSecret.html#GVirConfigSecret.synopsis">
155 <ANCHOR id="GVirConfigSecret.functions" href="Libvirt-gconfig/GVirConfigSecret.html#GVirConfigSecret.functions">
156 <ANCHOR id="GVirConfigSecret.other" href="Libvirt-gconfig/GVirConfigSecret.html#GVirConfigSecret.other">
168157 <ANCHOR id="GVirConfigSecret.object-hierarchy" href="Libvirt-gconfig/GVirConfigSecret.html#GVirConfigSecret.object-hierarchy">
169158 <ANCHOR id="GVirConfigSecret.description" href="Libvirt-gconfig/GVirConfigSecret.html#GVirConfigSecret.description">
170 <ANCHOR id="GVirConfigSecret.details" href="Libvirt-gconfig/GVirConfigSecret.html#GVirConfigSecret.details">
159 <ANCHOR id="GVirConfigSecret.functions_details" href="Libvirt-gconfig/GVirConfigSecret.html#GVirConfigSecret.functions_details">
160 <ANCHOR id="gvir-config-secret-new" href="Libvirt-gconfig/GVirConfigSecret.html#gvir-config-secret-new">
161 <ANCHOR id="gvir-config-secret-new-from-xml" href="Libvirt-gconfig/GVirConfigSecret.html#gvir-config-secret-new-from-xml">
162 <ANCHOR id="GVirConfigSecret.other_details" href="Libvirt-gconfig/GVirConfigSecret.html#GVirConfigSecret.other_details">
171163 <ANCHOR id="GVirConfigSecret-struct" href="Libvirt-gconfig/GVirConfigSecret.html#GVirConfigSecret-struct">
172164 <ANCHOR id="GVirConfigSecretClass" href="Libvirt-gconfig/GVirConfigSecret.html#GVirConfigSecretClass">
173 <ANCHOR id="gvir-config-secret-new" href="Libvirt-gconfig/GVirConfigSecret.html#gvir-config-secret-new">
174 <ANCHOR id="gvir-config-secret-new-from-xml" href="Libvirt-gconfig/GVirConfigSecret.html#gvir-config-secret-new-from-xml">
165 <ANCHOR id="GVirConfigSecretPrivate" href="Libvirt-gconfig/GVirConfigSecret.html#GVirConfigSecretPrivate">
175166 <ANCHOR id="GVirConfigStoragePool" href="Libvirt-gconfig/GVirConfigStoragePool.html">
176 <ANCHOR id="GVirConfigStoragePool.synopsis" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVirConfigStoragePool.synopsis">
167 <ANCHOR id="GVirConfigStoragePool.functions" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVirConfigStoragePool.functions">
168 <ANCHOR id="GVirConfigStoragePool.other" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVirConfigStoragePool.other">
177169 <ANCHOR id="GVirConfigStoragePool.object-hierarchy" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVirConfigStoragePool.object-hierarchy">
178170 <ANCHOR id="GVirConfigStoragePool.description" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVirConfigStoragePool.description">
179 <ANCHOR id="GVirConfigStoragePool.details" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVirConfigStoragePool.details">
180 <ANCHOR id="GVirConfigStoragePool-struct" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVirConfigStoragePool-struct">
181 <ANCHOR id="GVirConfigStoragePoolClass" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVirConfigStoragePoolClass">
182 <ANCHOR id="GVirConfigStoragePoolType" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVirConfigStoragePoolType">
183 <ANCHOR id="GVIR-CONFIG-STORAGE-POOL-TYPE-DIR:CAPS" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVIR-CONFIG-STORAGE-POOL-TYPE-DIR:CAPS">
184 <ANCHOR id="GVIR-CONFIG-STORAGE-POOL-TYPE-FS:CAPS" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVIR-CONFIG-STORAGE-POOL-TYPE-FS:CAPS">
185 <ANCHOR id="GVIR-CONFIG-STORAGE-POOL-TYPE-NETFS:CAPS" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVIR-CONFIG-STORAGE-POOL-TYPE-NETFS:CAPS">
186 <ANCHOR id="GVIR-CONFIG-STORAGE-POOL-TYPE-LOGICAL:CAPS" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVIR-CONFIG-STORAGE-POOL-TYPE-LOGICAL:CAPS">
187 <ANCHOR id="GVIR-CONFIG-STORAGE-POOL-TYPE-DISK:CAPS" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVIR-CONFIG-STORAGE-POOL-TYPE-DISK:CAPS">
188 <ANCHOR id="GVIR-CONFIG-STORAGE-POOL-TYPE-ISCSI:CAPS" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVIR-CONFIG-STORAGE-POOL-TYPE-ISCSI:CAPS">
189 <ANCHOR id="GVIR-CONFIG-STORAGE-POOL-TYPE-SCSI:CAPS" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVIR-CONFIG-STORAGE-POOL-TYPE-SCSI:CAPS">
190 <ANCHOR id="GVIR-CONFIG-STORAGE-POOL-TYPE-MPATH:CAPS" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVIR-CONFIG-STORAGE-POOL-TYPE-MPATH:CAPS">
171 <ANCHOR id="GVirConfigStoragePool.functions_details" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVirConfigStoragePool.functions_details">
191172 <ANCHOR id="gvir-config-storage-pool-new" href="Libvirt-gconfig/GVirConfigStoragePool.html#gvir-config-storage-pool-new">
192173 <ANCHOR id="gvir-config-storage-pool-new-from-xml" href="Libvirt-gconfig/GVirConfigStoragePool.html#gvir-config-storage-pool-new-from-xml">
193174 <ANCHOR id="gvir-config-storage-pool-get-allocation" href="Libvirt-gconfig/GVirConfigStoragePool.html#gvir-config-storage-pool-get-allocation">
206187 <ANCHOR id="gvir-config-storage-pool-set-target" href="Libvirt-gconfig/GVirConfigStoragePool.html#gvir-config-storage-pool-set-target">
207188 <ANCHOR id="gvir-config-storage-pool-get-uuid" href="Libvirt-gconfig/GVirConfigStoragePool.html#gvir-config-storage-pool-get-uuid">
208189 <ANCHOR id="gvir-config-storage-pool-set-uuid" href="Libvirt-gconfig/GVirConfigStoragePool.html#gvir-config-storage-pool-set-uuid">
190 <ANCHOR id="GVirConfigStoragePool.other_details" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVirConfigStoragePool.other_details">
191 <ANCHOR id="GVirConfigStoragePool-struct" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVirConfigStoragePool-struct">
192 <ANCHOR id="GVirConfigStoragePoolClass" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVirConfigStoragePoolClass">
193 <ANCHOR id="GVirConfigStoragePoolType" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVirConfigStoragePoolType">
194 <ANCHOR id="GVirConfigStoragePoolPrivate" href="Libvirt-gconfig/GVirConfigStoragePool.html#GVirConfigStoragePoolPrivate">
209195 <ANCHOR id="GVirConfigStorageVol" href="Libvirt-gconfig/GVirConfigStorageVol.html">
210 <ANCHOR id="GVirConfigStorageVol.synopsis" href="Libvirt-gconfig/GVirConfigStorageVol.html#GVirConfigStorageVol.synopsis">
196 <ANCHOR id="GVirConfigStorageVol.functions" href="Libvirt-gconfig/GVirConfigStorageVol.html#GVirConfigStorageVol.functions">
197 <ANCHOR id="GVirConfigStorageVol.other" href="Libvirt-gconfig/GVirConfigStorageVol.html#GVirConfigStorageVol.other">
211198 <ANCHOR id="GVirConfigStorageVol.object-hierarchy" href="Libvirt-gconfig/GVirConfigStorageVol.html#GVirConfigStorageVol.object-hierarchy">
212199 <ANCHOR id="GVirConfigStorageVol.description" href="Libvirt-gconfig/GVirConfigStorageVol.html#GVirConfigStorageVol.description">
213 <ANCHOR id="GVirConfigStorageVol.details" href="Libvirt-gconfig/GVirConfigStorageVol.html#GVirConfigStorageVol.details">
214 <ANCHOR id="GVirConfigStorageVol-struct" href="Libvirt-gconfig/GVirConfigStorageVol.html#GVirConfigStorageVol-struct">
215 <ANCHOR id="GVirConfigStorageVolClass" href="Libvirt-gconfig/GVirConfigStorageVol.html#GVirConfigStorageVolClass">
200 <ANCHOR id="GVirConfigStorageVol.functions_details" href="Libvirt-gconfig/GVirConfigStorageVol.html#GVirConfigStorageVol.functions_details">
216201 <ANCHOR id="gvir-config-storage-vol-new" href="Libvirt-gconfig/GVirConfigStorageVol.html#gvir-config-storage-vol-new">
217202 <ANCHOR id="gvir-config-storage-vol-new-from-xml" href="Libvirt-gconfig/GVirConfigStorageVol.html#gvir-config-storage-vol-new-from-xml">
218203 <ANCHOR id="gvir-config-storage-vol-set-allocation" href="Libvirt-gconfig/GVirConfigStorageVol.html#gvir-config-storage-vol-set-allocation">
220205 <ANCHOR id="gvir-config-storage-vol-set-capacity" href="Libvirt-gconfig/GVirConfigStorageVol.html#gvir-config-storage-vol-set-capacity">
221206 <ANCHOR id="gvir-config-storage-vol-set-name" href="Libvirt-gconfig/GVirConfigStorageVol.html#gvir-config-storage-vol-set-name">
222207 <ANCHOR id="gvir-config-storage-vol-set-target" href="Libvirt-gconfig/GVirConfigStorageVol.html#gvir-config-storage-vol-set-target">
208 <ANCHOR id="GVirConfigStorageVol.other_details" href="Libvirt-gconfig/GVirConfigStorageVol.html#GVirConfigStorageVol.other_details">
209 <ANCHOR id="GVirConfigStorageVol-struct" href="Libvirt-gconfig/GVirConfigStorageVol.html#GVirConfigStorageVol-struct">
210 <ANCHOR id="GVirConfigStorageVolClass" href="Libvirt-gconfig/GVirConfigStorageVol.html#GVirConfigStorageVolClass">
211 <ANCHOR id="GVirConfigStorageVolPrivate" href="Libvirt-gconfig/GVirConfigStorageVol.html#GVirConfigStorageVolPrivate">
223212 <ANCHOR id="GVirConfigCapabilities" href="Libvirt-gconfig/GVirConfigCapabilities.html">
224 <ANCHOR id="GVirConfigCapabilities.synopsis" href="Libvirt-gconfig/GVirConfigCapabilities.html#GVirConfigCapabilities.synopsis">
213 <ANCHOR id="GVirConfigCapabilities.functions" href="Libvirt-gconfig/GVirConfigCapabilities.html#GVirConfigCapabilities.functions">
214 <ANCHOR id="GVirConfigCapabilities.other" href="Libvirt-gconfig/GVirConfigCapabilities.html#GVirConfigCapabilities.other">
225215 <ANCHOR id="GVirConfigCapabilities.object-hierarchy" href="Libvirt-gconfig/GVirConfigCapabilities.html#GVirConfigCapabilities.object-hierarchy">
226216 <ANCHOR id="GVirConfigCapabilities.description" href="Libvirt-gconfig/GVirConfigCapabilities.html#GVirConfigCapabilities.description">
227 <ANCHOR id="GVirConfigCapabilities.details" href="Libvirt-gconfig/GVirConfigCapabilities.html#GVirConfigCapabilities.details">
228 <ANCHOR id="GVirConfigCapabilities-struct" href="Libvirt-gconfig/GVirConfigCapabilities.html#GVirConfigCapabilities-struct">
229 <ANCHOR id="GVirConfigCapabilitiesClass" href="Libvirt-gconfig/GVirConfigCapabilities.html#GVirConfigCapabilitiesClass">
217 <ANCHOR id="GVirConfigCapabilities.functions_details" href="Libvirt-gconfig/GVirConfigCapabilities.html#GVirConfigCapabilities.functions_details">
230218 <ANCHOR id="gvir-config-capabilities-new" href="Libvirt-gconfig/GVirConfigCapabilities.html#gvir-config-capabilities-new">
231219 <ANCHOR id="gvir-config-capabilities-new-from-xml" href="Libvirt-gconfig/GVirConfigCapabilities.html#gvir-config-capabilities-new-from-xml">
232220 <ANCHOR id="gvir-config-capabilities-get-host" href="Libvirt-gconfig/GVirConfigCapabilities.html#gvir-config-capabilities-get-host">
233221 <ANCHOR id="gvir-config-capabilities-get-guests" href="Libvirt-gconfig/GVirConfigCapabilities.html#gvir-config-capabilities-get-guests">
222 <ANCHOR id="GVirConfigCapabilities.other_details" href="Libvirt-gconfig/GVirConfigCapabilities.html#GVirConfigCapabilities.other_details">
223 <ANCHOR id="GVirConfigCapabilities-struct" href="Libvirt-gconfig/GVirConfigCapabilities.html#GVirConfigCapabilities-struct">
224 <ANCHOR id="GVirConfigCapabilitiesClass" href="Libvirt-gconfig/GVirConfigCapabilities.html#GVirConfigCapabilitiesClass">
225 <ANCHOR id="GVirConfigCapabilitiesPrivate" href="Libvirt-gconfig/GVirConfigCapabilities.html#GVirConfigCapabilitiesPrivate">
234226 <ANCHOR id="annotation-glossterm-allow-none" href="Libvirt-gconfig/annotation-glossary.html#annotation-glossterm-allow-none">
235 <ANCHOR id="annotation-glossterm-inout" href="Libvirt-gconfig/annotation-glossary.html#annotation-glossterm-inout">
236 <ANCHOR id="annotation-glossterm-transfer none" href="Libvirt-gconfig/annotation-glossary.html#annotation-glossterm-transfer none">
237227 <ANCHOR id="annotation-glossterm-array" href="Libvirt-gconfig/annotation-glossary.html#annotation-glossterm-array">
238228 <ANCHOR id="annotation-glossterm-element-type" href="Libvirt-gconfig/annotation-glossary.html#annotation-glossterm-element-type">
239229 <ANCHOR id="annotation-glossterm-in" href="Libvirt-gconfig/annotation-glossary.html#annotation-glossterm-in">
230 <ANCHOR id="annotation-glossterm-inout" href="Libvirt-gconfig/annotation-glossary.html#annotation-glossterm-inout">
231 <ANCHOR id="annotation-glossterm-transfer container" href="Libvirt-gconfig/annotation-glossary.html#annotation-glossterm-transfer container">
240232 <ANCHOR id="annotation-glossterm-transfer full" href="Libvirt-gconfig/annotation-glossary.html#annotation-glossterm-transfer full">
233 <ANCHOR id="annotation-glossterm-transfer none" href="Libvirt-gconfig/annotation-glossary.html#annotation-glossterm-transfer none">
241234 <ANCHOR id="annotation-glossterm-type" href="Libvirt-gconfig/annotation-glossary.html#annotation-glossterm-type">
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>Object Hierarchy</title>
4 <title>Libvirt-gconfig Reference Manual: Object Hierarchy</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gconfig Reference Manual">
77 <link rel="up" href="index.html" title="Libvirt-gconfig Reference Manual">
88 <link rel="prev" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities">
99 <link rel="next" href="api-index-full.html" title="API Index">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
15 <td><a accesskey="p" href="GVirConfigCapabilities.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
16 <td> </td>
17 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
18 <th width="100%" align="center">Libvirt-gconfig Reference Manual</th>
19 <td><a accesskey="n" href="api-index-full.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts"></td>
16 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
17 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
18 <td><a accesskey="p" href="GVirConfigCapabilities.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
19 <td><a accesskey="n" href="api-index-full.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
2020 </tr></table>
2121 <div class="chapter">
2222 <div class="titlepage"><div><div><h1 class="title">
2323 <a name="object-tree"></a>Object Hierarchy</h1></div></div></div>
2424 <pre class="screen">
25 GObject
26 <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
27 GVirConfigCapabilitiesCpuFeature
28 GVirConfigDomainCpuFeature
29 GVirConfigCapabilitiesCpu
30 GVirConfigDomainCpu
31 GVirConfigCapabilitiesCpuTopology
32 <a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities">GVirConfigCapabilities</a>
33 GVirConfigCapabilitiesGuestArch
34 GVirConfigCapabilitiesGuestDomain
35 GVirConfigCapabilitiesGuestFeature
36 GVirConfigCapabilitiesGuest
37 GVirConfigCapabilitiesHost
38 GVirConfigDomainAddress
39 GVirConfigDomainAddressPci
40 GVirConfigDomainAddressUsb
41 GVirConfigDomainDevice
42 GVirConfigDomainChardev
43 GVirConfigDomainChannel
44 GVirConfigDomainConsole
45 GVirConfigDomainParallel
46 GVirConfigDomainRedirdev
47 GVirConfigDomainSerial
48 GVirConfigDomainController
49 GVirConfigDomainControllerUsb
50 GVirConfigDomainDisk
51 GVirConfigDomainFilesys
52 GVirConfigDomainGraphics
53 GVirConfigDomainGraphicsDesktop
54 GVirConfigDomainGraphicsRdp
55 GVirConfigDomainGraphicsSdl
56 GVirConfigDomainGraphicsSpice
57 GVirConfigDomainGraphicsVnc
58 GVirConfigDomainInput
59 GVirConfigDomainInterface
60 GVirConfigDomainInterfaceBridge
61 GVirConfigDomainInterfaceNetwork
62 GVirConfigDomainInterfaceUser
63 GVirConfigDomainMemballoon
64 GVirConfigDomainSmartcard
65 GVirConfigDomainSmartcardHostCertificates
66 GVirConfigDomainSmartcardHost
67 GVirConfigDomainSmartcardPassthrough
68 GVirConfigDomainSound
69 GVirConfigDomainVideo
70 GVirConfigDomainChardevSource
71 GVirConfigDomainChardevSourcePty
72 GVirConfigDomainChardevSourceSpiceVmc
73 GVirConfigDomainClock
74 <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
75 GVirConfigDomainOs
76 GVirConfigDomainPowerManagement
77 GVirConfigDomainSeclabel
78 GVirConfigDomainSnapshotDisk
79 <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
80 GVirConfigDomainTimer
81 GVirConfigDomainTimerPit
82 GVirConfigDomainTimerRtc
83 <a class="link" href="Libvirt-gconfig-GVirConfig.html#GVirConfigInterface">GVirConfigInterface</a>
84 <a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter">GVirConfigNetworkFilter</a>
85 <a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork">GVirConfigNetwork</a>
86 <a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice">GVirConfigNodeDevice</a>
87 <a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret">GVirConfigSecret</a>
88 GVirConfigStoragePermissions
89 <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
90 GVirConfigStoragePoolSource
91 GVirConfigStoragePoolTarget
92 GVirConfigStorageVolBackingStore
93 <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
94 GVirConfigStorageVolTarget
95 GVirConfigXmlDoc
25 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
26 <span class="lineart">├──</span> <a class="link" href="GVirConfigObject.html" title="GVirConfigObject">GVirConfigObject</a>
27 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigCapabilitiesCpuFeature
28 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GVirConfigDomainCpuFeature
29 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigCapabilitiesCpu
30 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GVirConfigDomainCpu
31 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigCapabilitiesCpuModel
32 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GVirConfigDomainCpuModel
33 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigCapabilitiesCpuTopology
34 <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GVirConfigCapabilities.html" title="GVirConfigCapabilities">GVirConfigCapabilities</a>
35 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigCapabilitiesGuestArch
36 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigCapabilitiesGuestDomain
37 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigCapabilitiesGuestFeature
38 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigCapabilitiesGuest
39 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigCapabilitiesHost
40 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigCapabilitiesHostSecModel
41 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainAddress
42 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainAddressPci
43 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GVirConfigDomainAddressUsb
44 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainDevice
45 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainChardev
46 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainChannel
47 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainConsole
48 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainParallel
49 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainRedirdev
50 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GVirConfigDomainSerial
51 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainController
52 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GVirConfigDomainControllerUsb
53 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainDisk
54 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainFilesys
55 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainGraphics
56 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainGraphicsDesktop
57 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainGraphicsRdp
58 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainGraphicsSdl
59 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainGraphicsSpice
60 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GVirConfigDomainGraphicsVnc
61 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainInput
62 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainInterface
63 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainInterfaceBridge
64 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainInterfaceNetwork
65 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GVirConfigDomainInterfaceUser
66 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainMemballoon
67 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainSmartcard
68 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainSmartcardHostCertificates
69 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainSmartcardHost
70 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GVirConfigDomainSmartcardPassthrough
71 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainSound
72 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GVirConfigDomainVideo
73 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainChardevSource
74 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainChardevSourcePty
75 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainChardevSourceSpicePort
76 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GVirConfigDomainChardevSourceSpiceVmc
77 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainClock
78 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainDiskDriver
79 <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GVirConfigDomain.html" title="GVirConfigDomain">GVirConfigDomain</a>
80 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainInterfaceFilterref
81 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainInterfaceFilterrefParameter
82 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainOs
83 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainPowerManagement
84 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainSeclabel
85 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainSnapshotDisk
86 <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GVirConfigDomainSnapshot.html" title="GVirConfigDomainSnapshot">GVirConfigDomainSnapshot</a>
87 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainTimer
88 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainTimerHpet
89 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigDomainTimerPit
90 <span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> GVirConfigDomainTimerRtc
91 <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GVirConfigInterface.html" title="GVirConfigInterface">GVirConfigInterface</a>
92 <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GVirConfigNetworkFilter.html" title="GVirConfigNetworkFilter">GVirConfigNetworkFilter</a>
93 <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GVirConfigNetwork.html" title="GVirConfigNetwork">GVirConfigNetwork</a>
94 <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GVirConfigNodeDevice.html" title="GVirConfigNodeDevice">GVirConfigNodeDevice</a>
95 <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GVirConfigSecret.html" title="GVirConfigSecret">GVirConfigSecret</a>
96 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigStoragePermissions
97 <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GVirConfigStoragePool.html" title="GVirConfigStoragePool">GVirConfigStoragePool</a>
98 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigStoragePoolSource
99 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigStoragePoolTarget
100 <span class="lineart">│</span> <span class="lineart">├──</span> GVirConfigStorageVolBackingStore
101 <span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="GVirConfigStorageVol.html" title="GVirConfigStorageVol">GVirConfigStorageVol</a>
102 <span class="lineart">│</span> <span class="lineart">╰──</span> GVirConfigStorageVolTarget
103 <span class="lineart">╰──</span> GVirConfigXmlDoc
96104 </pre>
97105 </div>
98106 <div class="footer">
99107 <hr>
100 Generated by GTK-Doc V1.19</div>
108 Generated by GTK-Doc V1.21</div>
101109 </body>
102110 </html>
0 body
1 {
2 font-family: cantarell, sans-serif;
3 }
04 .synopsis, .classsynopsis
15 {
26 /* tango:aluminium 1/2 */
37 background: #eeeeec;
4 border: solid 1px #d3d7cf;
8 background: rgba(238, 238, 236, 0.5);
9 border: solid 1px rgb(238, 238, 236);
510 padding: 0.5em;
611 }
712 .programlisting
813 {
914 /* tango:sky blue 0/1 */
15 /* fallback for no rgba support */
1016 background: #e6f3ff;
1117 border: solid 1px #729fcf;
18 background: rgba(114, 159, 207, 0.1);
19 border: solid 1px rgba(114, 159, 207, 0.2);
1220 padding: 0.5em;
1321 }
1422 .variablelist
2129 vertical-align: top;
2230 }
2331
32 div.gallery-float
33 {
34 float: left;
35 padding: 10px;
36 }
37 div.gallery-float img
38 {
39 border-style: none;
40 }
41 div.gallery-spacer
42 {
43 clear: both;
44 }
45
46 a, a:visited
47 {
48 text-decoration: none;
49 /* tango:sky blue 2 */
50 color: #3465a4;
51 }
52 a:hover
53 {
54 text-decoration: underline;
55 /* tango:sky blue 1 */
56 color: #729fcf;
57 }
58
59 div.informaltable table
60 {
61 border-collapse: separate;
62 border-spacing: 1em 0.5em;
63 border: none;
64 }
65
66 div.informaltable table td, div.informaltable table th
67 {
68 vertical-align: top;
69 }
70
71 .function_type,
72 .variable_type,
73 .property_type,
74 .signal_type,
75 .parameter_name,
76 .struct_member_name,
77 .union_member_name,
78 .define_keyword,
79 .datatype_keyword,
80 .typedef_keyword
81 {
82 text-align: right;
83 }
84
85 /* dim non-primary columns */
86 .c_punctuation,
87 .function_type,
88 .variable_type,
89 .property_type,
90 .signal_type,
91 .define_keyword,
92 .datatype_keyword,
93 .typedef_keyword,
94 .property_flags,
95 .signal_flags,
96 .parameter_annotations,
97 .enum_member_annotations,
98 .struct_member_annotations,
99 .union_member_annotations
100 {
101 color: #888a85;
102 }
103
104 .function_type a,
105 .function_type a:visited,
106 .function_type a:hover,
107 .property_type a,
108 .property_type a:visited,
109 .property_type a:hover,
110 .signal_type a,
111 .signal_type a:visited,
112 .signal_type a:hover,
113 .signal_flags a,
114 .signal_flags a:visited,
115 .signal_flags a:hover
116 {
117 color: #729fcf;
118 }
119
120 td p
121 {
122 margin: 0.25em;
123 }
124
125 div.table table
126 {
127 border-collapse: collapse;
128 border-spacing: 0px;
129 /* tango:aluminium 3 */
130 border: solid 1px #babdb6;
131 }
132
133 div.table table td, div.table table th
134 {
135 /* tango:aluminium 3 */
136 border: solid 1px #babdb6;
137 padding: 3px;
138 vertical-align: top;
139 }
140
141 div.table table th
142 {
143 /* tango:aluminium 2 */
144 background-color: #d3d7cf;
145 }
146
147 h4
148 {
149 color: #555753;
150 }
151
152 hr
153 {
154 /* tango:aluminium 1 */
155 color: #d3d7cf;
156 background: #d3d7cf;
157 border: none 0px;
158 height: 1px;
159 clear: both;
160 margin: 2.0em 0em 2.0em 0em;
161 }
162
163 dl.toc dt
164 {
165 padding-bottom: 0.25em;
166 }
167
168 dl.toc > dd > dl > dt
169 {
170 padding-top: 0.25em;
171 padding-bottom: 0.25em;
172 }
173
174 dl.toc > dt
175 {
176 padding-top: 1em;
177 padding-bottom: 0.5em;
178 font-weight: bold;
179 }
180
181 .parameter
182 {
183 font-style: normal;
184 }
185
186 .footer
187 {
188 padding-top: 3.5em;
189 /* tango:aluminium 3 */
190 color: #babdb6;
191 text-align: center;
192 font-size: 80%;
193 }
194
195 .informalfigure,
196 .figure
197 {
198 margin: 1em;
199 }
200
201 .informalexample,
202 .example
203 {
204 margin-top: 1em;
205 margin-bottom: 1em;
206 }
207
208 .warning
209 {
210 /* tango:orange 0/1 */
211 background: #ffeed9;
212 background: rgba(252, 175, 62, 0.1);
213 border-color: #ffb04f;
214 border-color: rgba(252, 175, 62, 0.2);
215 }
216 .note
217 {
218 /* tango:chameleon 0/0.5 */
219 background: #d8ffb2;
220 background: rgba(138, 226, 52, 0.1);
221 border-color: #abf562;
222 border-color: rgba(138, 226, 52, 0.2);
223 }
224 div.blockquote
225 {
226 border-color: #eeeeec;
227 }
228 .note, .warning, div.blockquote
229 {
230 padding: 0.5em;
231 border-width: 1px;
232 border-style: solid;
233 margin: 2em;
234 }
235 .note p, .warning p
236 {
237 margin: 0;
238 }
239
240 div.warning h3.title,
241 div.note h3.title
242 {
243 display: none;
244 }
245
246 p + div.section
247 {
248 margin-top: 1em;
249 }
250
251 div.refnamediv,
252 div.refsynopsisdiv,
253 div.refsect1,
254 div.refsect2,
255 div.toc,
256 div.section
257 {
258 margin-bottom: 1em;
259 }
260
261 /* blob links */
262 h2 .extralinks, h3 .extralinks
263 {
264 float: right;
265 /* tango:aluminium 3 */
266 color: #babdb6;
267 font-size: 80%;
268 font-weight: normal;
269 }
270
271 .lineart
272 {
273 color: #d3d7cf;
274 font-weight: normal;
275 }
276
277 .annotation
278 {
279 /* tango:aluminium 5 */
280 color: #555753;
281 font-weight: normal;
282 }
283
284 .structfield
285 {
286 font-style: normal;
287 font-weight: normal;
288 }
289
290 acronym,abbr
291 {
292 border-bottom: 1px dotted gray;
293 }
294
295 /* code listings */
296
297 .listing_code .programlisting .normal,
298 .listing_code .programlisting .normal a,
299 .listing_code .programlisting .number,
300 .listing_code .programlisting .cbracket,
301 .listing_code .programlisting .symbol { color: #555753; }
302 .listing_code .programlisting .comment,
303 .listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */
304 .listing_code .programlisting .function,
305 .listing_code .programlisting .function a,
306 .listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */
307 .listing_code .programlisting .string { color: #ad7fa8; } /* tango: plum */
308 .listing_code .programlisting .keyword,
309 .listing_code .programlisting .usertype,
310 .listing_code .programlisting .type,
311 .listing_code .programlisting .type a { color: #4e9a06; } /* tango: chameleon 3 */
312
313 .listing_frame {
314 /* tango:sky blue 1 */
315 border: solid 1px #729fcf;
316 border: solid 1px rgba(114, 159, 207, 0.2);
317 padding: 0px;
318 }
319
320 .listing_lines, .listing_code {
321 margin-top: 0px;
322 margin-bottom: 0px;
323 padding: 0.5em;
324 }
325 .listing_lines {
326 /* tango:sky blue 0.5 */
327 background: #a6c5e3;
328 background: rgba(114, 159, 207, 0.2);
329 /* tango:aluminium 6 */
330 color: #2e3436;
331 }
332 .listing_code {
333 /* tango:sky blue 0 */
334 background: #e6f3ff;
335 background: rgba(114, 159, 207, 0.1);
336 }
337 .listing_code .programlisting {
338 /* override from previous */
339 border: none 0px;
340 padding: 0px;
341 background: none;
342 }
343 .listing_lines pre, .listing_code pre {
344 margin: 0px;
345 }
346
24347 @media screen {
25348 sup a.footnote
26349 {
27350 position: relative;
28351 top: 0em ! important;
29
30352 }
31353 /* this is needed so that the local anchors are displayed below the naviagtion */
32354 div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name]
45367 */
46368 body
47369 {
48 padding-top: 3.2em;
49 padding-bottom: 20em;
370 padding-top: 2.5em;
371 padding-bottom: 500px;
372 max-width: 60em;
373 }
374 p
375 {
376 max-width: 60em;
50377 }
51378 /* style and size the navigation bar */
52379 table.navigation#top
53380 {
54381 position: fixed;
55 /* tango:scarlet red 0/1 */
56 background: #ffe6e6;
57 border: solid 1px #ef2929;
382 background: #e2e2e2;
383 border-bottom: solid 1px #babdb6;
384 border-spacing: 5px;
385 margin-top: 0;
386 margin-bottom: 0;
387 top: 0;
388 left: 0;
389 z-index: 10;
390 }
391 table.navigation#top td
392 {
393 padding-left: 6px;
394 padding-right: 6px;
395 }
396 .navigation a, .navigation a:visited
397 {
398 /* tango:sky blue 3 */
399 color: #204a87;
400 }
401 .navigation a:hover
402 {
403 /* tango:sky blue 2 */
404 color: #3465a4;
405 }
406 td.shortcuts
407 {
408 /* tango:sky blue 2 */
409 color: #3465a4;
410 font-size: 80%;
411 white-space: nowrap;
412 }
413 td.shortcuts .dim
414 {
415 color: #babdb6;
416 }
417 .navigation .title
418 {
419 font-size: 80%;
420 max-width: none;
421 margin: 0px;
422 font-weight: normal;
423 }
424 }
425 @media screen and (min-width: 60em) {
426 /* screen larger than 60em */
427 body { margin: auto; }
428 }
429 @media screen and (max-width: 60em) {
430 /* screen less than 60em */
431 #nav_hierarchy { display: none; }
432 #nav_interfaces { display: none; }
433 #nav_prerequisites { display: none; }
434 #nav_derived_interfaces { display: none; }
435 #nav_implementations { display: none; }
436 #nav_child_properties { display: none; }
437 #nav_style_properties { display: none; }
438 #nav_index { display: none; }
439 #nav_glossary { display: none; }
440 .gallery_image { display: none; }
441 .property_flags { display: none; }
442 .signal_flags { display: none; }
443 .parameter_annotations { display: none; }
444 .enum_member_annotations { display: none; }
445 .struct_member_annotations { display: none; }
446 .union_member_annotations { display: none; }
447 /* now that a column is hidden, optimize space */
448 col.parameters_name { width: auto; }
449 col.parameters_description { width: auto; }
450 col.struct_members_name { width: auto; }
451 col.struct_members_description { width: auto; }
452 col.enum_members_name { width: auto; }
453 col.enum_members_description { width: auto; }
454 col.union_members_name { width: auto; }
455 col.union_members_description { width: auto; }
456 .listing_lines { display: none; }
457 }
458 @media print {
459 table.navigation {
460 visibility: collapse;
461 display: none;
462 }
463 div.titlepage table.navigation {
464 visibility: visible;
465 display: table;
466 background: #e2e2e2;
467 border: solid 1px #babdb6;
58468 margin-top: 0;
59469 margin-bottom: 0;
60470 top: 0;
61471 left: 0;
62472 height: 3em;
63 z-index: 10;
64 }
65 .navigation a, .navigation a:visited
66 {
67 /* tango:scarlet red 3 */
68 color: #a40000;
69 }
70 .navigation a:hover
71 {
72 /* tango:scarlet red 1 */
73 color: #ef2929;
74 }
75 td.shortcuts
76 {
77 /* tango:scarlet red 1 */
78 color: #ef2929;
79 font-size: 80%;
80 white-space: nowrap;
81 }
82 }
83 @media print {
84 table.navigation {
85 visibility: collapse;
86 display: none;
87 }
88 div.titlepage table.navigation {
89 visibility: visible;
90 display: table;
91 /* tango:scarlet red 0/1 */
92 background: #ffe6e6;
93 border: solid 1px #ef2929;
94 margin-top: 0;
95 margin-bottom: 0;
96 top: 0;
97 left: 0;
98 height: 3em;
99 }
100 }
101
102 .navigation .title
103 {
104 font-size: 200%;
105 }
106
107 div.gallery-float
108 {
109 float: left;
110 padding: 10px;
111 }
112 div.gallery-float img
113 {
114 border-style: none;
115 }
116 div.gallery-spacer
117 {
118 clear: both;
119 }
120
121 a, a:visited
122 {
123 text-decoration: none;
124 /* tango:sky blue 2 */
125 color: #3465a4;
126 }
127 a:hover
128 {
129 text-decoration: underline;
130 /* tango:sky blue 1 */
131 color: #729fcf;
132 }
133
134 div.table table
135 {
136 border-collapse: collapse;
137 border-spacing: 0px;
138 /* tango:aluminium 3 */
139 border: solid 1px #babdb6;
140 }
141
142 div.table table td, div.table table th
143 {
144 /* tango:aluminium 3 */
145 border: solid 1px #babdb6;
146 padding: 3px;
147 vertical-align: top;
148 }
149
150 div.table table th
151 {
152 /* tango:aluminium 2 */
153 background-color: #d3d7cf;
154 }
155
156 hr
157 {
158 /* tango:aluminium 3 */
159 color: #babdb6;
160 background: #babdb6;
161 border: none 0px;
162 height: 1px;
163 clear: both;
164 }
165
166 .footer
167 {
168 padding-top: 3.5em;
169 /* tango:aluminium 3 */
170 color: #babdb6;
171 text-align: center;
172 font-size: 80%;
173 }
174
175 .warning
176 {
177 /* tango:orange 0/1 */
178 background: #ffeed9;
179 border-color: #ffb04f;
180 }
181 .note
182 {
183 /* tango:chameleon 0/0.5 */
184 background: #d8ffb2;
185 border-color: #abf562;
186 }
187 .note, .warning
188 {
189 padding: 0.5em;
190 border-width: 1px;
191 border-style: solid;
192 }
193 .note h3, .warning h3
194 {
195 margin-top: 0.0em
196 }
197 .note p, .warning p
198 {
199 margin-bottom: 0.0em
200 }
201
202 /* blob links */
203 h2 .extralinks, h3 .extralinks
204 {
205 float: right;
206 /* tango:aluminium 3 */
207 color: #babdb6;
208 font-size: 80%;
209 font-weight: normal;
210 }
211
212 .annotation
213 {
214 /* tango:aluminium 5 */
215 color: #555753;
216 font-size: 80%;
217 font-weight: normal;
218 }
219
220 /* code listings */
221
222 .listing_code .programlisting .cbracket { color: #a40000; } /* tango: scarlet red 3 */
223 .listing_code .programlisting .comment { color: #a1a39d; } /* tango: aluminium 4 */
224 .listing_code .programlisting .function { color: #000000; font-weight: bold; }
225 .listing_code .programlisting .function a { color: #11326b; font-weight: bold; } /* tango: sky blue 4 */
226 .listing_code .programlisting .keyword { color: #4e9a06; } /* tango: chameleon 3 */
227 .listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */
228 .listing_code .programlisting .normal { color: #000000; }
229 .listing_code .programlisting .number { color: #75507b; } /* tango: plum 2 */
230 .listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */
231 .listing_code .programlisting .string { color: #c17d11; } /* tango: chocolate 2 */
232 .listing_code .programlisting .type { color: #000000; }
233 .listing_code .programlisting .type a { color: #11326b; } /* tango: sky blue 4 */
234 .listing_code .programlisting .symbol { color: #ce5c00; } /* tango: orange 3 */
235
236 .listing_frame {
237 /* tango:sky blue 1 */
238 border: solid 1px #729fcf;
239 padding: 0px;
240 }
241
242 .listing_lines, .listing_code {
243 margin-top: 0px;
244 margin-bottom: 0px;
245 padding: 0.5em;
246 }
247 .listing_lines {
248 /* tango:sky blue 0.5 */
249 background: #a6c5e3;
250 /* tango:aluminium 6 */
251 color: #2e3436;
252 }
253 .listing_code {
254 /* tango:sky blue 0 */
255 background: #e6f3ff;
256 }
257 .listing_code .programlisting {
258 /* override from previous */
259 border: none 0px;
260 padding: 0px;
261 }
262 .listing_lines pre, .listing_code pre {
263 margin: 0px;
264 }
265
473 }
474 }
475
0 # Makefile.in generated by automake 1.13.2 from Makefile.am.
0 # Makefile.in generated by automake 1.13.4 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
8686 $(srcdir)/Makefile.am $(srcdir)/version.xml.in
8787 subdir = docs/libvirt-glib
8888 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
89 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
90 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
91 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
92 $(top_srcdir)/m4/lt~obsolete.m4 \
89 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
90 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
91 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
92 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
9393 $(top_srcdir)/m4/manywarnings.m4 \
9494 $(top_srcdir)/m4/virt-compile-warnings.m4 \
9595 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
160160 GIO2_LIBS = @GIO2_LIBS@
161161 GLIB2_CFLAGS = @GLIB2_CFLAGS@
162162 GLIB2_LIBS = @GLIB2_LIBS@
163 GLIB2_REQUIRED = @GLIB2_REQUIRED@
163164 GLIB_MKENUMS = @GLIB_MKENUMS@
164165 GMSGFMT = @GMSGFMT@
165166 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
166167 GOBJECT2_LIBS = @GOBJECT2_LIBS@
167 GOBJECT_INTROSPECTION_CFLAGS = @GOBJECT_INTROSPECTION_CFLAGS@
168 GOBJECT_INTROSPECTION_LIBS = @GOBJECT_INTROSPECTION_LIBS@
169168 GREP = @GREP@
170169 GTHREAD2_CFLAGS = @GTHREAD2_CFLAGS@
171170 GTHREAD2_LIBS = @GTHREAD2_LIBS@
172171 GTKDOC_CHECK = @GTKDOC_CHECK@
172 GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
173173 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
174174 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
175175 GTKDOC_MKPDF = @GTKDOC_MKPDF@
176176 GTKDOC_REBASE = @GTKDOC_REBASE@
177 G_IR_COMPILER = @G_IR_COMPILER@
178 G_IR_SCANNER = @G_IR_SCANNER@
179177 HTML_DIR = @HTML_DIR@
180178 INSTALL = @INSTALL@
181179 INSTALL_DATA = @INSTALL_DATA@
190188 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
191189 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
192190 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
191 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
192 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
193 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
194 INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
195 INTROSPECTION_LIBS = @INTROSPECTION_LIBS@
196 INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@
197 INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
198 INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
193199 LD = @LD@
194200 LDFLAGS = @LDFLAGS@
195201 LIBOBJS = @LIBOBJS@
280286 includedir = @includedir@
281287 infodir = @infodir@
282288 install_sh = @install_sh@
289 installed_test_metadir = @installed_test_metadir@
290 installed_testdir = @installed_testdir@
283291 intltool__v_merge_options_ = @intltool__v_merge_options_@
284292 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
285293 libdir = @libdir@
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>Error reporting</title>
4 <title>Libvirt GLib Reference Manual: Error reporting</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt GLib Reference Manual">
77 <link rel="up" href="ch01.html" title="API Reference">
88 <link rel="prev" href="Libvirt-glib-Library-initialization.html" title="Library initialization">
99 <link rel="next" href="Libvirt-glib-Event-loop.html" title="Event loop">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="Libvirt-glib-Library-initialization.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt GLib Reference Manual</th>
20 <td><a accesskey="n" href="Libvirt-glib-Event-loop.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#Libvirt-glib-Error-reporting.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#Libvirt-glib-Error-reporting.description" class="shortcut">Description</a>
26 </td></tr>
27 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#Libvirt-glib-Error-reporting.description" class="shortcut">Description</a></span>
18 </td>
19 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
20 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
21 <td><a accesskey="p" href="Libvirt-glib-Library-initialization.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
22 <td><a accesskey="n" href="Libvirt-glib-Event-loop.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
23 </tr></table>
2824 <div class="refentry">
2925 <a name="Libvirt-glib-Error-reporting"></a><div class="titlepage"></div>
3026 <div class="refnamediv"><table width="100%"><tr>
3228 <h2><span class="refentrytitle"><a name="Libvirt-glib-Error-reporting.top_of_page"></a>Error reporting</span></h2>
3329 <p>Error reporting — Convert libvirt error reports to GLib error reports</p>
3430 </td>
35 <td valign="top" align="right"></td>
31 <td class="gallery_image" valign="top" align="right"></td>
3632 </tr></table></div>
3733 <div class="refsect1">
3834 <a name="Libvirt-glib-Error-reporting.stability-level"></a><h2>Stability Level</h2>
39 Stable, unless otherwise indicated
40 </div>
41 <div class="refsynopsisdiv">
42 <a name="Libvirt-glib-Error-reporting.synopsis"></a><h2>Synopsis</h2>
43 <pre class="synopsis">
44 #include &lt;libvirt-glib/libvirt-glib.h&gt;
45
46 <span class="returnvalue">GError</span> * <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new" title="gvir_error_new ()">gvir_error_new</a> (<em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
47 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
48 <em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
49 <em class="parameter"><code>...</code></em>);
50 <span class="returnvalue">GError</span> * <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new-literal" title="gvir_error_new_literal ()">gvir_error_new_literal</a> (<em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
51 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
52 <em class="parameter"><code>const <span class="type">gchar</span> *message</code></em>);
53 <span class="returnvalue">GError</span> * <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new-valist" title="gvir_error_new_valist ()">gvir_error_new_valist</a> (<em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
54 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
55 <em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
56 <em class="parameter"><code><span class="type">va_list</span> args</code></em>);
57 <span class="returnvalue">void</span> <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-set-error" title="gvir_set_error ()">gvir_set_error</a> (<em class="parameter"><code><span class="type">GError</span> **error</code></em>,
58 <em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
59 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
60 <em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
61 <em class="parameter"><code>...</code></em>);
62 <span class="returnvalue">void</span> <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-set-error-literal" title="gvir_set_error_literal ()">gvir_set_error_literal</a> (<em class="parameter"><code><span class="type">GError</span> **error</code></em>,
63 <em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
64 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
65 <em class="parameter"><code>const <span class="type">gchar</span> *message</code></em>);
66 <span class="returnvalue">void</span> <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-set-error-valist" title="gvir_set_error_valist ()">gvir_set_error_valist</a> (<em class="parameter"><code><span class="type">GError</span> **error</code></em>,
67 <em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
68 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
69 <em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
70 <em class="parameter"><code><span class="type">va_list</span> args</code></em>);
71 <span class="returnvalue">void</span> <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-critical" title="gvir_critical ()">gvir_critical</a> (<em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
72 <em class="parameter"><code>...</code></em>);
73 <span class="returnvalue">void</span> <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-warning" title="gvir_warning ()">gvir_warning</a> (<em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
74 <em class="parameter"><code>...</code></em>);
35 <acronym title="The intention of a Stable interface is to enable arbitrary third parties to
36 develop applications to these interfaces, release them, and have confidence that
37 they will run on all minor releases of the product (after the one in which the
38 interface was introduced, and within the same major release). Even at a major
39 release, incompatible changes are expected to be rare, and to have strong
40 justifications.
41 "><span class="acronym">Stable</span></acronym>, unless otherwise indicated
42 </div>
43 <div class="refsect1">
44 <a name="Libvirt-glib-Error-reporting.functions"></a><h2>Functions</h2>
45 <div class="informaltable"><table width="100%" border="0">
46 <colgroup>
47 <col width="150px" class="functions_return">
48 <col class="functions_name">
49 </colgroup>
50 <tbody>
51 <tr>
52 <td class="function_type">
53 <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> *
54 </td>
55 <td class="function_name">
56 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new" title="gvir_error_new ()">gvir_error_new</a> <span class="c_punctuation">()</span>
57 </td>
58 </tr>
59 <tr>
60 <td class="function_type">
61 <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> *
62 </td>
63 <td class="function_name">
64 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new-literal" title="gvir_error_new_literal ()">gvir_error_new_literal</a> <span class="c_punctuation">()</span>
65 </td>
66 </tr>
67 <tr>
68 <td class="function_type">
69 <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> *
70 </td>
71 <td class="function_name">
72 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new-valist" title="gvir_error_new_valist ()">gvir_error_new_valist</a> <span class="c_punctuation">()</span>
73 </td>
74 </tr>
75 <tr>
76 <td class="function_type">
77 <span class="returnvalue">void</span>
78 </td>
79 <td class="function_name">
80 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-set-error" title="gvir_set_error ()">gvir_set_error</a> <span class="c_punctuation">()</span>
81 </td>
82 </tr>
83 <tr>
84 <td class="function_type">
85 <span class="returnvalue">void</span>
86 </td>
87 <td class="function_name">
88 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-set-error-literal" title="gvir_set_error_literal ()">gvir_set_error_literal</a> <span class="c_punctuation">()</span>
89 </td>
90 </tr>
91 <tr>
92 <td class="function_type">
93 <span class="returnvalue">void</span>
94 </td>
95 <td class="function_name">
96 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-set-error-valist" title="gvir_set_error_valist ()">gvir_set_error_valist</a> <span class="c_punctuation">()</span>
97 </td>
98 </tr>
99 <tr>
100 <td class="function_type">
101 <span class="returnvalue">void</span>
102 </td>
103 <td class="function_name">
104 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-critical" title="gvir_critical ()">gvir_critical</a> <span class="c_punctuation">()</span>
105 </td>
106 </tr>
107 <tr>
108 <td class="function_type">
109 <span class="returnvalue">void</span>
110 </td>
111 <td class="function_name">
112 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-warning" title="gvir_warning ()">gvir_warning</a> <span class="c_punctuation">()</span>
113 </td>
114 </tr>
115 </tbody>
116 </table></div>
117 </div>
118 <div class="refsect1">
119 <a name="Libvirt-glib-Error-reporting.includes"></a><h2>Includes</h2>
120 <pre class="synopsis">#include &lt;libvirt-glib/libvirt-glib.h&gt;
75121 </pre>
76122 </div>
77123 <div class="refsect1">
78124 <a name="Libvirt-glib-Error-reporting.description"></a><h2>Description</h2>
79 <p>
80 The libvirt API uses the <code class="code">virError</code> structure for reporting
125 <p>The libvirt API uses the <code class="code">virError</code> structure for reporting
81126 errors back to the application programmer. The libvirt API errors are
82127 provided in thread-local variables, while the GLib standard practice is
83128 to return errors via out parameters. This library provides a simple way
84129 to fill in <code class="code">GError **</code> output parameters with the contents
85 of the most recent libvirt error object in the current thread.
86 </p>
87 <p>
88 The <code class="code">gvir_error_new</code>, <code class="code">gvir_error_new_literal</code> and
130 of the most recent libvirt error object in the current thread.</p>
131 <p>The <code class="code">gvir_error_new</code>, <code class="code">gvir_error_new_literal</code> and</p>
89132 <code class="code">gvir_error_new_valist</code> methods all return a newly created
90133 <code class="code">GError *</code> object instance, differing only in the way the
91 message needs to be provided. For most usage though, it is preferrable
134 <p>message needs to be provided. For most usage though, it is preferrable
92135 to use the <code class="code">gvir_set_error</code>, <code class="code">gvir_set_error_literal</code>
93 and <code class="code">gvir_set_error_valist</code> methods. These all accept a
136 and <code class="code">gvir_set_error_valist</code> methods. These all accept a</p>
94137 <code class="code">GError **</code> argument and take care to only fill it if it
95 points to a non-NULL location.
96 </p>
97 <p>
98 </p>
138 <p>points to a non-NULL location.</p>
99139 <div class="example">
100 <a name="id-1.2.3.5.4.1"></a><p class="title"><b>Example 2. Reporting GLib errors with libvirt APIs</b></p>
140 <a name="id-1.2.3.6.9"></a><p class="title"><b>Example 2. Reporting GLib errors with libvirt APIs</b></p>
101141 <div class="example-contents">
102142 <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
103143 <tbody>
113153 9</pre></td>
114154 <td class="listing_code"><pre class="programlisting"><span class="usertype">gboolean</span><span class="normal"> </span><span class="function">myapp_start_guest</span><span class="symbol">(</span><span class="keyword">const</span><span class="normal"> </span><span class="usertype">gchar</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">xml</span><span class="symbol">,</span><span class="normal"> </span><span class="usertype">GError</span><span class="normal"> </span><span class="symbol">**</span><span class="normal">error</span><span class="symbol">)</span>
115155 <span class="cbracket">{</span>
116 <span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="function">virDomainCreate</span><span class="symbol">(</span><span class="normal">conn</span><span class="symbol">,</span><span class="normal"> xml</span><span class="symbol">,</span><span class="normal"> </span><span class="number">0</span><span class="symbol">)</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">lt</span><span class="symbol">;</span><span class="normal"> </span><span class="number">0</span><span class="symbol">)</span><span class="normal"> </span><span class="cbracket">{</span>
156 <span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="function">virDomainCreate</span><span class="symbol">(</span><span class="normal">conn</span><span class="symbol">,</span><span class="normal"> xml</span><span class="symbol">,</span><span class="normal"> </span><span class="number">0</span><span class="symbol">)</span><span class="normal"> </span><span class="symbol">&lt;</span><span class="normal"> </span><span class="number">0</span><span class="symbol">)</span><span class="normal"> </span><span class="cbracket">{</span>
117157 <span class="normal"> </span><span class="function"><a href="Libvirt-glib-Error-reporting.html#gvir-set-error-literal">gvir_set_error_literal</a></span><span class="symbol">(</span><span class="normal">error</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"Unable to start virtual machine"</span><span class="symbol">);</span>
118 <span class="normal"> </span><span class="keyword">return</span><span class="normal"> FALSE</span><span class="symbol">;</span>
158 <span class="normal"> </span><span class="keyword">return</span><span class="normal"> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS">FALSE</a></span><span class="symbol">;</span>
119159 <span class="normal"> </span><span class="cbracket">}</span>
120160
121 <span class="normal"> </span><span class="keyword">return</span><span class="normal"> TRUE</span><span class="symbol">;</span>
161 <span class="normal"> </span><span class="keyword">return</span><span class="normal"> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS">TRUE</a></span><span class="symbol">;</span>
122162 <span class="cbracket">}</span></pre></td>
123163 </tr>
124164 </tbody>
126166 </div>
127167
128168 </div>
129 <p><br class="example-break">
130 </p>
169 <br class="example-break">
131170 </div>
132171 <div class="refsect1">
133 <a name="Libvirt-glib-Error-reporting.details"></a><h2>Details</h2>
134 <div class="refsect2">
135 <a name="gvir-error-new"></a><h3>gvir_error_new ()</h3>
136 <pre class="programlisting"><span class="returnvalue">GError</span> * gvir_error_new (<em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
137 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
138 <em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
139 <em class="parameter"><code>...</code></em>);</pre>
140 <p>
141 Creates a new <span class="type">GError</span> with the given <em class="parameter"><code>domain</code></em> and <em class="parameter"><code>code</code></em>,
142 and a message formatted with <em class="parameter"><code>format</code></em>.
143 </p>
144 <div class="variablelist"><table border="0" class="variablelist">
145 <colgroup>
146 <col align="left" valign="top">
147 <col>
148 </colgroup>
149 <tbody>
150 <tr>
151 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
152 <td>error domain</td>
153 </tr>
154 <tr>
155 <td><p><span class="term"><em class="parameter"><code>code</code></em> :</span></p></td>
156 <td>error code</td>
157 </tr>
158 <tr>
159 <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
160 <td>printf()-style format for error message</td>
161 </tr>
162 <tr>
163 <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
164 <td>parameters for message format</td>
165 </tr>
166 <tr>
167 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
168 <td>a new <span class="type">GError</span>
169 </td>
170 </tr>
171 </tbody>
172 </table></div>
173 </div>
174 <hr>
175 <div class="refsect2">
176 <a name="gvir-error-new-literal"></a><h3>gvir_error_new_literal ()</h3>
177 <pre class="programlisting"><span class="returnvalue">GError</span> * gvir_error_new_literal (<em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
178 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
179 <em class="parameter"><code>const <span class="type">gchar</span> *message</code></em>);</pre>
180 <p>
181 Creates a new <span class="type">GError</span>; unlike <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new" title="gvir_error_new ()"><code class="function">gvir_error_new()</code></a>, <em class="parameter"><code>message</code></em> is
172 <a name="Libvirt-glib-Error-reporting.functions_details"></a><h2>Functions</h2>
173 <div class="refsect2">
174 <a name="gvir-error-new"></a><h3>gvir_error_new ()</h3>
175 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> *
176 gvir_error_new (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> domain</code></em>,
177 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> code</code></em>,
178 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *format</code></em>,
179 <em class="parameter"><code>...</code></em>);</pre>
180 <p>Creates a new <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> with the given <em class="parameter"><code>domain</code></em>
181 and <em class="parameter"><code>code</code></em>
182 ,
183 and a message formatted with <em class="parameter"><code>format</code></em>
184 .</p>
185 <div class="refsect3">
186 <a name="id-1.2.3.7.2.5"></a><h4>Parameters</h4>
187 <div class="informaltable"><table width="100%" border="0">
188 <colgroup>
189 <col width="150px" class="parameters_name">
190 <col class="parameters_description">
191 <col width="200px" class="parameters_annotations">
192 </colgroup>
193 <tbody>
194 <tr>
195 <td class="parameter_name"><p>domain</p></td>
196 <td class="parameter_description"><p>error domain</p></td>
197 <td class="parameter_annotations"> </td>
198 </tr>
199 <tr>
200 <td class="parameter_name"><p>code</p></td>
201 <td class="parameter_description"><p>error code</p></td>
202 <td class="parameter_annotations"> </td>
203 </tr>
204 <tr>
205 <td class="parameter_name"><p>format</p></td>
206 <td class="parameter_description"><p>printf()-style format for error message</p></td>
207 <td class="parameter_annotations"> </td>
208 </tr>
209 <tr>
210 <td class="parameter_name"><p>...</p></td>
211 <td class="parameter_description"><p>parameters for message format</p></td>
212 <td class="parameter_annotations"> </td>
213 </tr>
214 </tbody>
215 </table></div>
216 </div>
217 <div class="refsect3">
218 <a name="id-1.2.3.7.2.6"></a><h4>Returns</h4>
219 <p> a new <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p>
220 <p></p>
221 </div>
222 </div>
223 <hr>
224 <div class="refsect2">
225 <a name="gvir-error-new-literal"></a><h3>gvir_error_new_literal ()</h3>
226 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> *
227 gvir_error_new_literal (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> domain</code></em>,
228 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> code</code></em>,
229 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *message</code></em>);</pre>
230 <p>Creates a new <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a>; unlike <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new" title="gvir_error_new ()"><code class="function">gvir_error_new()</code></a>, <em class="parameter"><code>message</code></em>
231 is
182232 not a <code class="function">printf()</code>-style format string. Use this function if
183 <em class="parameter"><code>message</code></em> contains text you don't have control over,
184 that could include <code class="function">printf()</code> escape sequences.
185 </p>
186 <div class="variablelist"><table border="0" class="variablelist">
187 <colgroup>
188 <col align="left" valign="top">
189 <col>
190 </colgroup>
191 <tbody>
192 <tr>
193 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
194 <td>error domain</td>
195 </tr>
196 <tr>
197 <td><p><span class="term"><em class="parameter"><code>code</code></em> :</span></p></td>
198 <td>error code</td>
199 </tr>
200 <tr>
201 <td><p><span class="term"><em class="parameter"><code>message</code></em> :</span></p></td>
202 <td>error message</td>
203 </tr>
204 <tr>
205 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
206 <td>a new <span class="type">GError</span>
207 </td>
208 </tr>
209 </tbody>
210 </table></div>
211 </div>
212 <hr>
213 <div class="refsect2">
214 <a name="gvir-error-new-valist"></a><h3>gvir_error_new_valist ()</h3>
215 <pre class="programlisting"><span class="returnvalue">GError</span> * gvir_error_new_valist (<em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
216 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
217 <em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
218 <em class="parameter"><code><span class="type">va_list</span> args</code></em>);</pre>
219 <p>
220 Creates a new <span class="type">GError</span> with the given <em class="parameter"><code>domain</code></em> and <em class="parameter"><code>code</code></em>,
221 and a message formatted with <em class="parameter"><code>format</code></em>.
222 </p>
223 <div class="variablelist"><table border="0" class="variablelist">
224 <colgroup>
225 <col align="left" valign="top">
226 <col>
227 </colgroup>
228 <tbody>
229 <tr>
230 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
231 <td>error domain</td>
232 </tr>
233 <tr>
234 <td><p><span class="term"><em class="parameter"><code>code</code></em> :</span></p></td>
235 <td>error code</td>
236 </tr>
237 <tr>
238 <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
239 <td>printf()-style format for error message</td>
240 </tr>
241 <tr>
242 <td><p><span class="term"><em class="parameter"><code>args</code></em> :</span></p></td>
243 <td>
244 <span class="type">va_list</span> of parameters for the message format</td>
245 </tr>
246 <tr>
247 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
248 <td>a new <span class="type">GError</span>
249 </td>
250 </tr>
251 </tbody>
252 </table></div>
253 </div>
254 <hr>
255 <div class="refsect2">
256 <a name="gvir-set-error"></a><h3>gvir_set_error ()</h3>
257 <pre class="programlisting"><span class="returnvalue">void</span> gvir_set_error (<em class="parameter"><code><span class="type">GError</span> **error</code></em>,
258 <em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
259 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
260 <em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
261 <em class="parameter"><code>...</code></em>);</pre>
262 <p>
263 If <em class="parameter"><code>error</code></em> is NULL this does nothing. Otherwise it
264 creates a new <span class="type">GError</span> with the given <em class="parameter"><code>domain</code></em> and <em class="parameter"><code>code</code></em>,
265 and a message formatted with <em class="parameter"><code>format</code></em>, and stores it
266 in <em class="parameter"><code>error</code></em>.
267 </p>
268 <div class="variablelist"><table border="0" class="variablelist">
269 <colgroup>
270 <col align="left" valign="top">
271 <col>
272 </colgroup>
273 <tbody>
274 <tr>
275 <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
276 <td>pointer to error location</td>
277 </tr>
278 <tr>
279 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
280 <td>error domain</td>
281 </tr>
282 <tr>
283 <td><p><span class="term"><em class="parameter"><code>code</code></em> :</span></p></td>
284 <td>error code</td>
285 </tr>
286 <tr>
287 <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
288 <td>printf()-style format for error message</td>
289 </tr>
290 <tr>
291 <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
292 <td>parameters for message format</td>
293 </tr>
294 </tbody>
295 </table></div>
296 </div>
297 <hr>
298 <div class="refsect2">
299 <a name="gvir-set-error-literal"></a><h3>gvir_set_error_literal ()</h3>
300 <pre class="programlisting"><span class="returnvalue">void</span> gvir_set_error_literal (<em class="parameter"><code><span class="type">GError</span> **error</code></em>,
301 <em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
302 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
303 <em class="parameter"><code>const <span class="type">gchar</span> *message</code></em>);</pre>
304 <p>
305 If <em class="parameter"><code>error</code></em> is NULL this does nothing. Otherwise it
306 creates a new <span class="type">GError</span> and stores it in <em class="parameter"><code>error</code></em>; unlike
307 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-set-error" title="gvir_set_error ()"><code class="function">gvir_set_error()</code></a>, <em class="parameter"><code>message</code></em> is not a <code class="function">printf()</code>-style
308 format string. Use this function if <em class="parameter"><code>message</code></em> contains
233 <em class="parameter"><code>message</code></em>
234 contains text you don't have control over,
235 that could include <code class="function">printf()</code> escape sequences.</p>
236 <div class="refsect3">
237 <a name="id-1.2.3.7.3.5"></a><h4>Parameters</h4>
238 <div class="informaltable"><table width="100%" border="0">
239 <colgroup>
240 <col width="150px" class="parameters_name">
241 <col class="parameters_description">
242 <col width="200px" class="parameters_annotations">
243 </colgroup>
244 <tbody>
245 <tr>
246 <td class="parameter_name"><p>domain</p></td>
247 <td class="parameter_description"><p>error domain</p></td>
248 <td class="parameter_annotations"> </td>
249 </tr>
250 <tr>
251 <td class="parameter_name"><p>code</p></td>
252 <td class="parameter_description"><p>error code</p></td>
253 <td class="parameter_annotations"> </td>
254 </tr>
255 <tr>
256 <td class="parameter_name"><p>message</p></td>
257 <td class="parameter_description"><p>error message</p></td>
258 <td class="parameter_annotations"> </td>
259 </tr>
260 </tbody>
261 </table></div>
262 </div>
263 <div class="refsect3">
264 <a name="id-1.2.3.7.3.6"></a><h4>Returns</h4>
265 <p> a new <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p>
266 <p></p>
267 </div>
268 </div>
269 <hr>
270 <div class="refsect2">
271 <a name="gvir-error-new-valist"></a><h3>gvir_error_new_valist ()</h3>
272 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="returnvalue">GError</span></a> *
273 gvir_error_new_valist (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> domain</code></em>,
274 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> code</code></em>,
275 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *format</code></em>,
276 <em class="parameter"><code><span class="type">va_list</span> args</code></em>);</pre>
277 <p>Creates a new <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> with the given <em class="parameter"><code>domain</code></em>
278 and <em class="parameter"><code>code</code></em>
279 ,
280 and a message formatted with <em class="parameter"><code>format</code></em>
281 .</p>
282 <div class="refsect3">
283 <a name="id-1.2.3.7.4.5"></a><h4>Parameters</h4>
284 <div class="informaltable"><table width="100%" border="0">
285 <colgroup>
286 <col width="150px" class="parameters_name">
287 <col class="parameters_description">
288 <col width="200px" class="parameters_annotations">
289 </colgroup>
290 <tbody>
291 <tr>
292 <td class="parameter_name"><p>domain</p></td>
293 <td class="parameter_description"><p>error domain</p></td>
294 <td class="parameter_annotations"> </td>
295 </tr>
296 <tr>
297 <td class="parameter_name"><p>code</p></td>
298 <td class="parameter_description"><p>error code</p></td>
299 <td class="parameter_annotations"> </td>
300 </tr>
301 <tr>
302 <td class="parameter_name"><p>format</p></td>
303 <td class="parameter_description"><p>printf()-style format for error message</p></td>
304 <td class="parameter_annotations"> </td>
305 </tr>
306 <tr>
307 <td class="parameter_name"><p>args</p></td>
308 <td class="parameter_description"><p><span class="type">va_list</span> of parameters for the message format</p></td>
309 <td class="parameter_annotations"> </td>
310 </tr>
311 </tbody>
312 </table></div>
313 </div>
314 <div class="refsect3">
315 <a name="id-1.2.3.7.4.6"></a><h4>Returns</h4>
316 <p> a new <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p>
317 <p></p>
318 </div>
319 </div>
320 <hr>
321 <div class="refsect2">
322 <a name="gvir-set-error"></a><h3>gvir_set_error ()</h3>
323 <pre class="programlisting"><span class="returnvalue">void</span>
324 gvir_set_error (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>,
325 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> domain</code></em>,
326 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> code</code></em>,
327 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *format</code></em>,
328 <em class="parameter"><code>...</code></em>);</pre>
329 <p>If <em class="parameter"><code>error</code></em>
330 is NULL this does nothing. Otherwise it
331 creates a new <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> with the given <em class="parameter"><code>domain</code></em>
332 and <em class="parameter"><code>code</code></em>
333 ,
334 and a message formatted with <em class="parameter"><code>format</code></em>
335 , and stores it
336 in <em class="parameter"><code>error</code></em>
337 .</p>
338 <div class="refsect3">
339 <a name="id-1.2.3.7.5.5"></a><h4>Parameters</h4>
340 <div class="informaltable"><table width="100%" border="0">
341 <colgroup>
342 <col width="150px" class="parameters_name">
343 <col class="parameters_description">
344 <col width="200px" class="parameters_annotations">
345 </colgroup>
346 <tbody>
347 <tr>
348 <td class="parameter_name"><p>error</p></td>
349 <td class="parameter_description"><p>pointer to error location</p></td>
350 <td class="parameter_annotations"> </td>
351 </tr>
352 <tr>
353 <td class="parameter_name"><p>domain</p></td>
354 <td class="parameter_description"><p>error domain</p></td>
355 <td class="parameter_annotations"> </td>
356 </tr>
357 <tr>
358 <td class="parameter_name"><p>code</p></td>
359 <td class="parameter_description"><p>error code</p></td>
360 <td class="parameter_annotations"> </td>
361 </tr>
362 <tr>
363 <td class="parameter_name"><p>format</p></td>
364 <td class="parameter_description"><p>printf()-style format for error message</p></td>
365 <td class="parameter_annotations"> </td>
366 </tr>
367 <tr>
368 <td class="parameter_name"><p>...</p></td>
369 <td class="parameter_description"><p>parameters for message format</p></td>
370 <td class="parameter_annotations"> </td>
371 </tr>
372 </tbody>
373 </table></div>
374 </div>
375 </div>
376 <hr>
377 <div class="refsect2">
378 <a name="gvir-set-error-literal"></a><h3>gvir_set_error_literal ()</h3>
379 <pre class="programlisting"><span class="returnvalue">void</span>
380 gvir_set_error_literal (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>,
381 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> domain</code></em>,
382 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> code</code></em>,
383 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *message</code></em>);</pre>
384 <p>If <em class="parameter"><code>error</code></em>
385 is NULL this does nothing. Otherwise it
386 creates a new <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> and stores it in <em class="parameter"><code>error</code></em>
387 ; unlike
388 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-set-error" title="gvir_set_error ()"><code class="function">gvir_set_error()</code></a>, <em class="parameter"><code>message</code></em>
389 is not a <code class="function">printf()</code>-style
390 format string. Use this function if <em class="parameter"><code>message</code></em>
391 contains
309392 text you don't have control over, that could include
310 <code class="function">printf()</code> escape sequences.
311 </p>
312 <div class="variablelist"><table border="0" class="variablelist">
313 <colgroup>
314 <col align="left" valign="top">
315 <col>
316 </colgroup>
317 <tbody>
318 <tr>
319 <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
320 <td>pointer to error location</td>
321 </tr>
322 <tr>
323 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
324 <td>error domain</td>
325 </tr>
326 <tr>
327 <td><p><span class="term"><em class="parameter"><code>code</code></em> :</span></p></td>
328 <td>error code</td>
329 </tr>
330 <tr>
331 <td><p><span class="term"><em class="parameter"><code>message</code></em> :</span></p></td>
332 <td>error message</td>
333 </tr>
334 </tbody>
335 </table></div>
336 </div>
337 <hr>
338 <div class="refsect2">
339 <a name="gvir-set-error-valist"></a><h3>gvir_set_error_valist ()</h3>
340 <pre class="programlisting"><span class="returnvalue">void</span> gvir_set_error_valist (<em class="parameter"><code><span class="type">GError</span> **error</code></em>,
341 <em class="parameter"><code><span class="type">GQuark</span> domain</code></em>,
342 <em class="parameter"><code><span class="type">gint</span> code</code></em>,
343 <em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
344 <em class="parameter"><code><span class="type">va_list</span> args</code></em>);</pre>
345 <p>
346 If <em class="parameter"><code>error</code></em> is NULL this does nothing. Otherwise it
347 creates a new <span class="type">GError</span> with the given <em class="parameter"><code>domain</code></em> and <em class="parameter"><code>code</code></em>,
348 and a message formatted with <em class="parameter"><code>format</code></em>, and stores it
349 in <em class="parameter"><code>error</code></em>.
350 </p>
351 <div class="variablelist"><table border="0" class="variablelist">
352 <colgroup>
353 <col align="left" valign="top">
354 <col>
355 </colgroup>
356 <tbody>
357 <tr>
358 <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
359 <td>pointer to error location</td>
360 </tr>
361 <tr>
362 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
363 <td>error domain</td>
364 </tr>
365 <tr>
366 <td><p><span class="term"><em class="parameter"><code>code</code></em> :</span></p></td>
367 <td>error code</td>
368 </tr>
369 <tr>
370 <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
371 <td>printf()-style format for error message</td>
372 </tr>
373 <tr>
374 <td><p><span class="term"><em class="parameter"><code>args</code></em> :</span></p></td>
375 <td>
376 <span class="type">va_list</span> of parameters for the message format</td>
377 </tr>
378 </tbody>
379 </table></div>
380 </div>
381 <hr>
382 <div class="refsect2">
383 <a name="gvir-critical"></a><h3>gvir_critical ()</h3>
384 <pre class="programlisting"><span class="returnvalue">void</span> gvir_critical (<em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
385 <em class="parameter"><code>...</code></em>);</pre>
386 </div>
387 <hr>
388 <div class="refsect2">
389 <a name="gvir-warning"></a><h3>gvir_warning ()</h3>
390 <pre class="programlisting"><span class="returnvalue">void</span> gvir_warning (<em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
391 <em class="parameter"><code>...</code></em>);</pre>
392 </div>
393 <code class="function">printf()</code> escape sequences.</p>
394 <div class="refsect3">
395 <a name="id-1.2.3.7.6.5"></a><h4>Parameters</h4>
396 <div class="informaltable"><table width="100%" border="0">
397 <colgroup>
398 <col width="150px" class="parameters_name">
399 <col class="parameters_description">
400 <col width="200px" class="parameters_annotations">
401 </colgroup>
402 <tbody>
403 <tr>
404 <td class="parameter_name"><p>error</p></td>
405 <td class="parameter_description"><p>pointer to error location</p></td>
406 <td class="parameter_annotations"> </td>
407 </tr>
408 <tr>
409 <td class="parameter_name"><p>domain</p></td>
410 <td class="parameter_description"><p>error domain</p></td>
411 <td class="parameter_annotations"> </td>
412 </tr>
413 <tr>
414 <td class="parameter_name"><p>code</p></td>
415 <td class="parameter_description"><p>error code</p></td>
416 <td class="parameter_annotations"> </td>
417 </tr>
418 <tr>
419 <td class="parameter_name"><p>message</p></td>
420 <td class="parameter_description"><p>error message</p></td>
421 <td class="parameter_annotations"> </td>
422 </tr>
423 </tbody>
424 </table></div>
425 </div>
426 </div>
427 <hr>
428 <div class="refsect2">
429 <a name="gvir-set-error-valist"></a><h3>gvir_set_error_valist ()</h3>
430 <pre class="programlisting"><span class="returnvalue">void</span>
431 gvir_set_error_valist (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>,
432 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuark"><span class="type">GQuark</span></a> domain</code></em>,
433 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> code</code></em>,
434 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *format</code></em>,
435 <em class="parameter"><code><span class="type">va_list</span> args</code></em>);</pre>
436 <p>If <em class="parameter"><code>error</code></em>
437 is NULL this does nothing. Otherwise it
438 creates a new <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> with the given <em class="parameter"><code>domain</code></em>
439 and <em class="parameter"><code>code</code></em>
440 ,
441 and a message formatted with <em class="parameter"><code>format</code></em>
442 , and stores it
443 in <em class="parameter"><code>error</code></em>
444 .</p>
445 <div class="refsect3">
446 <a name="id-1.2.3.7.7.5"></a><h4>Parameters</h4>
447 <div class="informaltable"><table width="100%" border="0">
448 <colgroup>
449 <col width="150px" class="parameters_name">
450 <col class="parameters_description">
451 <col width="200px" class="parameters_annotations">
452 </colgroup>
453 <tbody>
454 <tr>
455 <td class="parameter_name"><p>error</p></td>
456 <td class="parameter_description"><p>pointer to error location</p></td>
457 <td class="parameter_annotations"> </td>
458 </tr>
459 <tr>
460 <td class="parameter_name"><p>domain</p></td>
461 <td class="parameter_description"><p>error domain</p></td>
462 <td class="parameter_annotations"> </td>
463 </tr>
464 <tr>
465 <td class="parameter_name"><p>code</p></td>
466 <td class="parameter_description"><p>error code</p></td>
467 <td class="parameter_annotations"> </td>
468 </tr>
469 <tr>
470 <td class="parameter_name"><p>format</p></td>
471 <td class="parameter_description"><p>printf()-style format for error message</p></td>
472 <td class="parameter_annotations"> </td>
473 </tr>
474 <tr>
475 <td class="parameter_name"><p>args</p></td>
476 <td class="parameter_description"><p><span class="type">va_list</span> of parameters for the message format</p></td>
477 <td class="parameter_annotations"> </td>
478 </tr>
479 </tbody>
480 </table></div>
481 </div>
482 </div>
483 <hr>
484 <div class="refsect2">
485 <a name="gvir-critical"></a><h3>gvir_critical ()</h3>
486 <pre class="programlisting"><span class="returnvalue">void</span>
487 gvir_critical (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *format</code></em>,
488 <em class="parameter"><code>...</code></em>);</pre>
489 </div>
490 <hr>
491 <div class="refsect2">
492 <a name="gvir-warning"></a><h3>gvir_warning ()</h3>
493 <pre class="programlisting"><span class="returnvalue">void</span>
494 gvir_warning (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *format</code></em>,
495 <em class="parameter"><code>...</code></em>);</pre>
496 </div>
497 </div>
498 <div class="refsect1">
499 <a name="Libvirt-glib-Error-reporting.other_details"></a><h2>Types and Values</h2>
393500 </div>
394501 </div>
395502 <div class="footer">
396503 <hr>
397 Generated by GTK-Doc V1.19</div>
504 Generated by GTK-Doc V1.21</div>
398505 </body>
399506 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>Event loop</title>
4 <title>Libvirt GLib Reference Manual: Event loop</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt GLib Reference Manual">
77 <link rel="up" href="ch01.html" title="API Reference">
88 <link rel="prev" href="Libvirt-glib-Error-reporting.html" title="Error reporting">
99 <link rel="next" href="object-tree.html" title="Object Hierarchy">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="Libvirt-glib-Error-reporting.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt GLib Reference Manual</th>
20 <td><a accesskey="n" href="object-tree.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#Libvirt-glib-Event-loop.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#Libvirt-glib-Event-loop.description" class="shortcut">Description</a>
26 </td></tr>
27 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#Libvirt-glib-Event-loop.description" class="shortcut">Description</a></span>
18 </td>
19 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
20 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
21 <td><a accesskey="p" href="Libvirt-glib-Error-reporting.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
22 <td><a accesskey="n" href="object-tree.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
23 </tr></table>
2824 <div class="refentry">
2925 <a name="Libvirt-glib-Event-loop"></a><div class="titlepage"></div>
3026 <div class="refnamediv"><table width="100%"><tr>
3228 <h2><span class="refentrytitle"><a name="Libvirt-glib-Event-loop.top_of_page"></a>Event loop</span></h2>
3329 <p>Event loop — Integrate libvirt with the GMain event framework</p>
3430 </td>
35 <td valign="top" align="right"></td>
31 <td class="gallery_image" valign="top" align="right"></td>
3632 </tr></table></div>
3733 <div class="refsect1">
3834 <a name="Libvirt-glib-Event-loop.stability-level"></a><h2>Stability Level</h2>
39 Stable, unless otherwise indicated
35 <acronym title="The intention of a Stable interface is to enable arbitrary third parties to
36 develop applications to these interfaces, release them, and have confidence that
37 they will run on all minor releases of the product (after the one in which the
38 interface was introduced, and within the same major release). Even at a major
39 release, incompatible changes are expected to be rare, and to have strong
40 justifications.
41 "><span class="acronym">Stable</span></acronym>, unless otherwise indicated
4042 </div>
41 <div class="refsynopsisdiv">
42 <a name="Libvirt-glib-Event-loop.synopsis"></a><h2>Synopsis</h2>
43 <pre class="synopsis">
44 #include &lt;libvirt-glib/libvirt-glib.h&gt;
45
46 <span class="returnvalue">void</span> <a class="link" href="Libvirt-glib-Event-loop.html#gvir-event-register" title="gvir_event_register ()">gvir_event_register</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
43 <div class="refsect1">
44 <a name="Libvirt-glib-Event-loop.functions"></a><h2>Functions</h2>
45 <div class="informaltable"><table width="100%" border="0">
46 <colgroup>
47 <col width="150px" class="functions_return">
48 <col class="functions_name">
49 </colgroup>
50 <tbody><tr>
51 <td class="function_type">
52 <span class="returnvalue">void</span>
53 </td>
54 <td class="function_name">
55 <a class="link" href="Libvirt-glib-Event-loop.html#gvir-event-register" title="gvir_event_register ()">gvir_event_register</a> <span class="c_punctuation">()</span>
56 </td>
57 </tr></tbody>
58 </table></div>
59 </div>
60 <div class="refsect1">
61 <a name="Libvirt-glib-Event-loop.includes"></a><h2>Includes</h2>
62 <pre class="synopsis">#include &lt;libvirt-glib/libvirt-glib.h&gt;
4763 </pre>
4864 </div>
4965 <div class="refsect1">
5066 <a name="Libvirt-glib-Event-loop.description"></a><h2>Description</h2>
51 <p>
52 The libvirt API has the ability to provide applications with asynchronous
67 <p>The libvirt API has the ability to provide applications with asynchronous
5368 notifications of interesting events. To enable this functionality though,
5469 applications must provide libvirt with an event loop implementation. The
5570 libvirt-glib API provides such an implementation, which naturally integrates
56 with the GMain event loop framework.
57 </p>
58 <p>
59 To enable use of the GMain event loop glue, the <code class="code"><a class="link" href="Libvirt-glib-Event-loop.html#gvir-event-register" title="gvir_event_register ()"><code class="function">gvir_event_register()</code></a></code>
71 with the GMain event loop framework.</p>
72 <p>To enable use of the GMain event loop glue, the <code class="code"><a class="link" href="Libvirt-glib-Event-loop.html#gvir-event-register" title="gvir_event_register ()"><code class="function">gvir_event_register()</code></a></code>
6073 should be invoked. Once this is done, it is mandatory to have the default
6174 GMain event loop run by a thread in the application, usually the primary
62 thread, eg by using <code class="code"><a href="http://library.gnome.org/devel/gtk3/gtk2-General.html#gtk-main"><code class="function">gtk_main()</code></a></code> or <code class="code"><code class="function">g_application_run()</code></code>
63 </p>
64 <p>
65 </p>
75 thread, eg by using <code class="code"><a href="http://developer.gnome.org/gtk2/gtk3-General.html#gtk-main"><code class="function">gtk_main()</code></a></code> or <code class="code"><a href="http://library.gnome.org/devel/gio/unstable/GApplication.html#g-application-run"><code class="function">g_application_run()</code></a></code></p>
6676 <div class="example">
67 <a name="id-1.2.4.5.4.1"></a><p class="title"><b>Example 3. Registering for events with a GTK application</b></p>
77 <a name="id-1.2.4.6.4"></a><p class="title"><b>Example 3. Registering for events with a GTK application</b></p>
6878 <div class="example-contents">
6979 <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
7080 <tbody>
8090 <span class="normal"> </span><span class="symbol">...</span><span class="normal">setup</span><span class="symbol">...</span>
8191 <span class="normal"> </span><span class="function"><a href="Libvirt-glib-Event-loop.html#gvir-event-register">gvir_event_register</a></span><span class="symbol">();</span>
8292 <span class="normal"> </span><span class="symbol">...</span><span class="usertype">more</span><span class="normal"> setup</span><span class="symbol">...</span>
83 <span class="normal"> </span><span class="function"><a href="http://library.gnome.org/devel/gtk3/gtk2-General.html#gtk-main">gtk_main</a></span><span class="symbol">();</span>
93 <span class="normal"> </span><span class="function"><a href="http://developer.gnome.org/gtk2/gtk3-General.html#gtk-main">gtk_main</a></span><span class="symbol">();</span>
8494 <span class="normal"> </span><span class="keyword">return</span><span class="normal"> </span><span class="number">0</span><span class="symbol">;</span>
8595 <span class="cbracket">}</span></pre></td>
8696 </tr>
8999 </div>
90100
91101 </div>
92 <p><br class="example-break">
93 </p>
94 <p>
95 </p>
96 <div class="example">
97 <a name="id-1.2.4.5.5.1"></a><p class="title"><b>Example 4. Registering for events using Appplication</b></p>
102 <br class="example-break"><div class="example">
103 <a name="id-1.2.4.6.5"></a><p class="title"><b>Example 4. Registering for events using Appplication</b></p>
98104 <div class="example-contents">
99105 <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
100106 <tbody>
109115 8</pre></td>
110116 <td class="listing_code"><pre class="programlisting"><span class="type">int</span><span class="normal"> </span><span class="function">main</span><span class="symbol">(</span><span class="type">int</span><span class="normal"> argc</span><span class="symbol">,</span><span class="normal"> </span><span class="type">char</span><span class="normal"> </span><span class="symbol">**</span><span class="normal">argv</span><span class="symbol">)</span><span class="normal"> </span><span class="cbracket">{</span>
111117 <span class="normal"> </span><span class="symbol">...</span><span class="normal">setup</span><span class="symbol">...</span>
112 <span class="normal"> </span><span class="usertype">GApplication</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">app </span><span class="symbol">=</span><span class="normal"> </span><span class="symbol">...</span><span class="normal">create some impl </span><span class="usertype">of</span><span class="normal"> GApplication</span><span class="symbol">...</span>
118 <span class="normal"> </span><span class="usertype">GApplication</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">app </span><span class="symbol">=</span><span class="normal"> </span><span class="symbol">...</span><span class="normal">create some impl </span><span class="usertype">of</span><span class="normal"> <a href="http://library.gnome.org/devel/gio/unstable/GApplication.html">GApplication</a></span><span class="symbol">...</span>
113119 <span class="normal"> </span><span class="function"><a href="Libvirt-glib-Event-loop.html#gvir-event-register">gvir_event_register</a></span><span class="symbol">();</span>
114120 <span class="normal"> </span><span class="symbol">...</span><span class="usertype">more</span><span class="normal"> setup</span><span class="symbol">...</span>
115 <span class="normal"> </span><span class="function">g_application_run</span><span class="symbol">(</span><span class="normal">app</span><span class="symbol">);</span>
121 <span class="normal"> </span><span class="function"><a href="http://library.gnome.org/devel/gio/unstable/GApplication.html#g-application-run">g_application_run</a></span><span class="symbol">(</span><span class="normal">app</span><span class="symbol">);</span>
116122 <span class="normal"> </span><span class="keyword">return</span><span class="normal"> </span><span class="number">0</span><span class="symbol">;</span>
117123 <span class="cbracket">}</span></pre></td>
118124 </tr>
121127 </div>
122128
123129 </div>
124 <p><br class="example-break">
125 </p>
130 <br class="example-break">
126131 </div>
127132 <div class="refsect1">
128 <a name="Libvirt-glib-Event-loop.details"></a><h2>Details</h2>
133 <a name="Libvirt-glib-Event-loop.functions_details"></a><h2>Functions</h2>
129134 <div class="refsect2">
130 <a name="gvir-event-register"></a><h3>gvir_event_register ()</h3>
131 <pre class="programlisting"><span class="returnvalue">void</span> gvir_event_register (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
132 <p>
133 Registers a libvirt event loop implementation that is backed
135 <a name="gvir-event-register"></a><h3>gvir_event_register ()</h3>
136 <pre class="programlisting"><span class="returnvalue">void</span>
137 gvir_event_register (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
138 <p>Registers a libvirt event loop implementation that is backed
134139 by the default <code class="code">GMain</code> context. If invoked more
135140 than once this method will be a no-op. Applications should,
136141 however, take care not to register any another non-GLib
137 event loop with libvirt.
138 </p>
139 <p>
140 After invoking this method, it is mandatory to run the
142 event loop with libvirt.</p>
143 <p>After invoking this method, it is mandatory to run the
141144 default GMain event loop. Typically this can be satisfied
142145 by invoking <code class="code">gtk_main</code> or <code class="code">g_application_run</code>
143146 in the application's main thread. Failure to run the event
144147 loop will mean no libvirt events get dispatched, and the
145148 libvirt keepalive timer will kill off libvirt connections
146 frequently.
147 </p>
149 frequently.</p>
148150 </div>
151 </div>
152 <div class="refsect1">
153 <a name="Libvirt-glib-Event-loop.other_details"></a><h2>Types and Values</h2>
149154 </div>
150155 </div>
151156 <div class="footer">
152157 <hr>
153 Generated by GTK-Doc V1.19</div>
158 Generated by GTK-Doc V1.21</div>
154159 </body>
155160 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>Library initialization</title>
4 <title>Libvirt GLib Reference Manual: Library initialization</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt GLib Reference Manual">
77 <link rel="up" href="ch01.html" title="API Reference">
88 <link rel="prev" href="ch01.html" title="API Reference">
99 <link rel="next" href="Libvirt-glib-Error-reporting.html" title="Error reporting">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="ch01.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt GLib Reference Manual</th>
20 <td><a accesskey="n" href="Libvirt-glib-Error-reporting.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#Libvirt-glib-Library-initialization.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#Libvirt-glib-Library-initialization.description" class="shortcut">Description</a>
26 </td></tr>
27 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#Libvirt-glib-Library-initialization.description" class="shortcut">Description</a></span>
18 </td>
19 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
20 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
21 <td><a accesskey="p" href="ch01.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
22 <td><a accesskey="n" href="Libvirt-glib-Error-reporting.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
23 </tr></table>
2824 <div class="refentry">
2925 <a name="Libvirt-glib-Library-initialization"></a><div class="titlepage"></div>
3026 <div class="refnamediv"><table width="100%"><tr>
3228 <h2><span class="refentrytitle"><a name="Libvirt-glib-Library-initialization.top_of_page"></a>Library initialization</span></h2>
3329 <p>Library initialization — Initialize the library</p>
3430 </td>
35 <td valign="top" align="right"></td>
31 <td class="gallery_image" valign="top" align="right"></td>
3632 </tr></table></div>
3733 <div class="refsect1">
3834 <a name="Libvirt-glib-Library-initialization.stability-level"></a><h2>Stability Level</h2>
39 Stable, unless otherwise indicated
40 </div>
41 <div class="refsynopsisdiv">
42 <a name="Libvirt-glib-Library-initialization.synopsis"></a><h2>Synopsis</h2>
43 <pre class="synopsis">
44 #include &lt;libvirt-glib/libvirt-glib.h&gt;
45
46 <span class="returnvalue">void</span> <a class="link" href="Libvirt-glib-Library-initialization.html#gvir-init" title="gvir_init ()">gvir_init</a> (<em class="parameter"><code><span class="type">int</span> *argc</code></em>,
47 <em class="parameter"><code><span class="type">char</span> ***argv</code></em>);
48 <span class="returnvalue">gboolean</span> <a class="link" href="Libvirt-glib-Library-initialization.html#gvir-init-check" title="gvir_init_check ()">gvir_init_check</a> (<em class="parameter"><code><span class="type">int</span> *argc</code></em>,
49 <em class="parameter"><code><span class="type">char</span> ***argv</code></em>,
50 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
35 <acronym title="The intention of a Stable interface is to enable arbitrary third parties to
36 develop applications to these interfaces, release them, and have confidence that
37 they will run on all minor releases of the product (after the one in which the
38 interface was introduced, and within the same major release). Even at a major
39 release, incompatible changes are expected to be rare, and to have strong
40 justifications.
41 "><span class="acronym">Stable</span></acronym>, unless otherwise indicated
42 </div>
43 <div class="refsect1">
44 <a name="Libvirt-glib-Library-initialization.functions"></a><h2>Functions</h2>
45 <div class="informaltable"><table width="100%" border="0">
46 <colgroup>
47 <col width="150px" class="functions_return">
48 <col class="functions_name">
49 </colgroup>
50 <tbody>
51 <tr>
52 <td class="function_type">
53 <span class="returnvalue">void</span>
54 </td>
55 <td class="function_name">
56 <a class="link" href="Libvirt-glib-Library-initialization.html#gvir-init" title="gvir_init ()">gvir_init</a> <span class="c_punctuation">()</span>
57 </td>
58 </tr>
59 <tr>
60 <td class="function_type">
61 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
62 </td>
63 <td class="function_name">
64 <a class="link" href="Libvirt-glib-Library-initialization.html#gvir-init-check" title="gvir_init_check ()">gvir_init_check</a> <span class="c_punctuation">()</span>
65 </td>
66 </tr>
67 </tbody>
68 </table></div>
69 </div>
70 <div class="refsect1">
71 <a name="Libvirt-glib-Library-initialization.includes"></a><h2>Includes</h2>
72 <pre class="synopsis">#include &lt;libvirt-glib/libvirt-glib.h&gt;
5173 </pre>
5274 </div>
5375 <div class="refsect1">
5476 <a name="Libvirt-glib-Library-initialization.description"></a><h2>Description</h2>
55 <p>
56 The Libvirt GLib library provides glue to integrate core libvirt
77 <p>The Libvirt GLib library provides glue to integrate core libvirt
5778 infrastructure with the GLib library. This enables consistent
5879 error reporting procedures and a common event loop implementation
59 for applications.
60 </p>
61 <p>
62 Before using any functions in the Libvirt GLib library, it must be initialized
63 by calling <code class="code">gvir_init</code> or <code class="code">gvir_init_check</code>.
64 </p>
65 <p>
66 </p>
80 for applications.</p>
81 <p>Before using any functions in the Libvirt GLib library, it must be initialized
82 by calling <code class="code">gvir_init</code> or <code class="code">gvir_init_check</code>.</p>
6783 <div class="example">
68 <a name="id-1.2.2.5.4.1"></a><p class="title"><b>Example 1. Initializing the Libvirt GLib library</b></p>
84 <a name="id-1.2.2.6.4"></a><p class="title"><b>Example 1. Initializing the Libvirt GLib library</b></p>
6985 <div class="example-contents">
7086 <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
7187 <tbody>
8197 <span class="normal"> </span><span class="symbol">...</span><span class="normal">setup</span><span class="symbol">...</span>
8298 <span class="normal"> </span><span class="function"><a href="Libvirt-glib-Library-initialization.html#gvir-init">gvir_init</a></span><span class="symbol">(&amp;</span><span class="normal">argc</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">argv</span><span class="symbol">);</span>
8399 <span class="normal"> </span><span class="symbol">...</span><span class="usertype">more</span><span class="normal"> setup</span><span class="symbol">...</span>
84 <span class="normal"> </span><span class="function"><a href="http://library.gnome.org/devel/gtk3/gtk2-General.html#gtk-main">gtk_main</a></span><span class="symbol">();</span>
100 <span class="normal"> </span><span class="function"><a href="http://developer.gnome.org/gtk2/gtk3-General.html#gtk-main">gtk_main</a></span><span class="symbol">();</span>
85101 <span class="normal"> </span><span class="keyword">return</span><span class="normal"> </span><span class="number">0</span><span class="symbol">;</span>
86102 <span class="cbracket">}</span></pre></td>
87103 </tr>
90106 </div>
91107
92108 </div>
93 <p><br class="example-break">
94 </p>
95 </div>
96 <div class="refsect1">
97 <a name="Libvirt-glib-Library-initialization.details"></a><h2>Details</h2>
109 <br class="example-break">
110 </div>
111 <div class="refsect1">
112 <a name="Libvirt-glib-Library-initialization.functions_details"></a><h2>Functions</h2>
98113 <div class="refsect2">
99 <a name="gvir-init"></a><h3>gvir_init ()</h3>
100 <pre class="programlisting"><span class="returnvalue">void</span> gvir_init (<em class="parameter"><code><span class="type">int</span> *argc</code></em>,
101 <em class="parameter"><code><span class="type">char</span> ***argv</code></em>);</pre>
102 <p>
103 Call this function before using any other Libvirt GLib functions in your applications.
114 <a name="gvir-init"></a><h3>gvir_init ()</h3>
115 <pre class="programlisting"><span class="returnvalue">void</span>
116 gvir_init (<em class="parameter"><code><span class="type">int</span> *argc</code></em>,
117 <em class="parameter"><code><span class="type">char</span> ***argv</code></em>);</pre>
118 <p>Call this function before using any other Libvirt GLib functions in your applications.
104119 It will initialize everything needed to operate the toolkit and parses some standard
105 command line options.
106 </p>
107 <p>
108 Although you are expected to pass the <em class="parameter"><code>argc</code></em>, <em class="parameter"><code>argv</code></em> parameters from <code class="function">main()</code> to this
109 function, it is possible to pass NULL if <em class="parameter"><code>argv</code></em> is not available or commandline
110 handling is not required.
111 </p>
112 <p>
113 <em class="parameter"><code>argc</code></em> and <em class="parameter"><code>argv</code></em> are adjusted accordingly so your own code will never see those
114 standard arguments.
115 </p>
116 <p>
117 This method will also turn on debug logging of the library if the
118 <code class="literal">LIBVIRT_GLIB_DEBUG</code> environment variable is set.
119 </p>
120 <p>
121 This function will terminate your program if it was unable to initialize
120 command line options.</p>
121 <p>Although you are expected to pass the <em class="parameter"><code>argc</code></em>
122 , <em class="parameter"><code>argv</code></em>
123 parameters from <code class="function">main()</code> to this
124 function, it is possible to pass NULL if <em class="parameter"><code>argv</code></em>
125 is not available or commandline
126 handling is not required.</p>
127 <p><em class="parameter"><code>argc</code></em>
128 and <em class="parameter"><code>argv</code></em>
129 are adjusted accordingly so your own code will never see those
130 standard arguments.</p>
131 <p>This method will also turn on debug logging of the library if the
132 <code class="literal">LIBVIRT_GLIB_DEBUG</code> environment variable is set.</p>
133 <p>This function will terminate your program if it was unable to initialize
122134 for some reason. If you want the program to fall back to an alternate
123 mode of operation call <code class="code">gvir_init_check</code> instead.
124 </p>
125 <div class="variablelist"><table border="0" class="variablelist">
135 mode of operation call <code class="code">gvir_init_check</code> instead.</p>
136 <div class="refsect3">
137 <a name="id-1.2.2.7.2.9"></a><h4>Parameters</h4>
138 <div class="informaltable"><table width="100%" border="0">
126139 <colgroup>
127 <col align="left" valign="top">
128 <col>
140 <col width="150px" class="parameters_name">
141 <col class="parameters_description">
142 <col width="200px" class="parameters_annotations">
129143 </colgroup>
130144 <tbody>
131145 <tr>
132 <td><p><span class="term"><em class="parameter"><code>argc</code></em> :</span></p></td>
133 <td>Address of the argc parameter of your <code class="function">main()</code> function (or 0
134 if argv is NULL). This will be changed if any arguments were handled. <span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span>
135 </td>
136 </tr>
137 <tr>
138 <td><p><span class="term"><em class="parameter"><code>argv</code></em> :</span></p></td>
139 <td>Address of the
140 <em class="parameter"><code>argv</code></em> parameter of <code class="function">main()</code>, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL:CAPS"><code class="literal">NULL</code></a>. Any options
141 understood by GTK+ are stripped before return. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=argc][<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
142 </td>
146 <td class="parameter_name"><p>argc</p></td>
147 <td class="parameter_description"><p> Address of the argc parameter of your <code class="function">main()</code> function (or 0
148 if argv is NULL). This will be changed if any arguments were handled. </p></td>
149 <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span></td>
150 </tr>
151 <tr>
152 <td class="parameter_name"><p>argv</p></td>
153 <td class="parameter_description">
154 <p> Address of the</p>
155 <em class="parameter"><code>argv</code></em> parameter of <code class="function">main()</code>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. Any options
156 <p> understood by GTK+ are stripped before return. </p>
157 </td>
158 <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=argc][<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
143159 </tr>
144160 </tbody>
145161 </table></div>
146162 </div>
163 </div>
147164 <hr>
148165 <div class="refsect2">
149 <a name="gvir-init-check"></a><h3>gvir_init_check ()</h3>
150 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_init_check (<em class="parameter"><code><span class="type">int</span> *argc</code></em>,
151 <em class="parameter"><code><span class="type">char</span> ***argv</code></em>,
152 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
153 <p>
154 This function does the same work as <a class="link" href="Libvirt-glib-Library-initialization.html#gvir-init" title="gvir_init ()"><code class="function">gvir_init()</code></a> with only a single
166 <a name="gvir-init-check"></a><h3>gvir_init_check ()</h3>
167 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
168 gvir_init_check (<em class="parameter"><code><span class="type">int</span> *argc</code></em>,
169 <em class="parameter"><code><span class="type">char</span> ***argv</code></em>,
170 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
171 <p>This function does the same work as <a class="link" href="Libvirt-glib-Library-initialization.html#gvir-init" title="gvir_init ()"><code class="function">gvir_init()</code></a> with only a single
155172 change: It does not terminate the program if the Libvirt GLib library
156 can't be initialized. Instead it returns <code class="literal">FALSE</code> on failure.
157 </p>
158 <p>
159 This way the application can fall back to some other mode of
160 operation.
161 </p>
162 <div class="variablelist"><table border="0" class="variablelist">
173 can't be initialized. Instead it returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> on failure.</p>
174 <p>This way the application can fall back to some other mode of
175 operation.</p>
176 <div class="refsect3">
177 <a name="id-1.2.2.7.3.6"></a><h4>Parameters</h4>
178 <div class="informaltable"><table width="100%" border="0">
163179 <colgroup>
164 <col align="left" valign="top">
165 <col>
180 <col width="150px" class="parameters_name">
181 <col class="parameters_description">
182 <col width="200px" class="parameters_annotations">
166183 </colgroup>
167184 <tbody>
168185 <tr>
169 <td><p><span class="term"><em class="parameter"><code>argc</code></em> :</span></p></td>
170 <td>Address of the argc parameter of your <code class="function">main()</code> function (or 0
171 if argv is NULL). This will be changed if any arguments were handled. <span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span>
172 </td>
173 </tr>
174 <tr>
175 <td><p><span class="term"><em class="parameter"><code>argv</code></em> :</span></p></td>
176 <td>Address of the
177 <em class="parameter"><code>argv</code></em> parameter of <code class="function">main()</code>, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL:CAPS"><code class="literal">NULL</code></a>. Any options
178 understood by GTK+ are stripped before return. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=argc][<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
179 </td>
180 </tr>
181 <tr>
182 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
183 <td>filled with the error information if initialized failed.</td>
184 </tr>
185 <tr>
186 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
187 <td>
188 <code class="literal">TRUE</code> if the library was successfully initialized,
189 <code class="literal">FALSE</code> otherwise</td>
186 <td class="parameter_name"><p>argc</p></td>
187 <td class="parameter_description"><p> Address of the argc parameter of your <code class="function">main()</code> function (or 0
188 if argv is NULL). This will be changed if any arguments were handled. </p></td>
189 <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>]</span></td>
190 </tr>
191 <tr>
192 <td class="parameter_name"><p>argv</p></td>
193 <td class="parameter_description">
194 <p> Address of the</p>
195 <em class="parameter"><code>argv</code></em> parameter of <code class="function">main()</code>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. Any options
196 <p> understood by GTK+ are stripped before return. </p>
197 </td>
198 <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=argc][<acronym title="Parameter for input and for returning results. Default is transfer full."><span class="acronym">inout</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
199 </tr>
200 <tr>
201 <td class="parameter_name"><p>err</p></td>
202 <td class="parameter_description"><p>filled with the error information if initialized failed.</p></td>
203 <td class="parameter_annotations"> </td>
190204 </tr>
191205 </tbody>
192206 </table></div>
193207 </div>
208 <div class="refsect3">
209 <a name="id-1.2.2.7.3.7"></a><h4>Returns</h4>
210 <p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the library was successfully initialized,
211 <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
212 <p></p>
213 </div>
214 </div>
215 </div>
216 <div class="refsect1">
217 <a name="Libvirt-glib-Library-initialization.other_details"></a><h2>Types and Values</h2>
194218 </div>
195219 </div>
196220 <div class="footer">
197221 <hr>
198 Generated by GTK-Doc V1.19</div>
222 Generated by GTK-Doc V1.21</div>
199223 </body>
200224 </html>
1111 <sub name="Annotation Glossary" link="annotation-glossary.html"/>
1212 </chapters>
1313 <functions>
14 <keyword type="function" name="gvir_init ()" link="Libvirt-glib-Library-initialization.html#gvir-init"/>
15 <keyword type="function" name="gvir_init_check ()" link="Libvirt-glib-Library-initialization.html#gvir-init-check"/>
16 <keyword type="function" name="gvir_error_new ()" link="Libvirt-glib-Error-reporting.html#gvir-error-new"/>
17 <keyword type="function" name="gvir_error_new_literal ()" link="Libvirt-glib-Error-reporting.html#gvir-error-new-literal"/>
18 <keyword type="function" name="gvir_error_new_valist ()" link="Libvirt-glib-Error-reporting.html#gvir-error-new-valist"/>
19 <keyword type="function" name="gvir_set_error ()" link="Libvirt-glib-Error-reporting.html#gvir-set-error"/>
20 <keyword type="function" name="gvir_set_error_literal ()" link="Libvirt-glib-Error-reporting.html#gvir-set-error-literal"/>
21 <keyword type="function" name="gvir_set_error_valist ()" link="Libvirt-glib-Error-reporting.html#gvir-set-error-valist"/>
22 <keyword type="function" name="gvir_critical ()" link="Libvirt-glib-Error-reporting.html#gvir-critical"/>
23 <keyword type="function" name="gvir_warning ()" link="Libvirt-glib-Error-reporting.html#gvir-warning"/>
24 <keyword type="function" name="gvir_event_register ()" link="Libvirt-glib-Event-loop.html#gvir-event-register"/>
14 <keyword type="function" name="gvir_init ()" link="Libvirt-glib-Library-initialization.html#gvir-init"/>
15 <keyword type="function" name="gvir_init_check ()" link="Libvirt-glib-Library-initialization.html#gvir-init-check"/>
16 <keyword type="function" name="gvir_error_new ()" link="Libvirt-glib-Error-reporting.html#gvir-error-new"/>
17 <keyword type="function" name="gvir_error_new_literal ()" link="Libvirt-glib-Error-reporting.html#gvir-error-new-literal"/>
18 <keyword type="function" name="gvir_error_new_valist ()" link="Libvirt-glib-Error-reporting.html#gvir-error-new-valist"/>
19 <keyword type="function" name="gvir_set_error ()" link="Libvirt-glib-Error-reporting.html#gvir-set-error"/>
20 <keyword type="function" name="gvir_set_error_literal ()" link="Libvirt-glib-Error-reporting.html#gvir-set-error-literal"/>
21 <keyword type="function" name="gvir_set_error_valist ()" link="Libvirt-glib-Error-reporting.html#gvir-set-error-valist"/>
22 <keyword type="function" name="gvir_critical ()" link="Libvirt-glib-Error-reporting.html#gvir-critical"/>
23 <keyword type="function" name="gvir_warning ()" link="Libvirt-glib-Error-reporting.html#gvir-warning"/>
24 <keyword type="function" name="gvir_event_register ()" link="Libvirt-glib-Event-loop.html#gvir-event-register"/>
2525 </functions>
2626 </book>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>Annotation Glossary</title>
4 <title>Libvirt GLib Reference Manual: Annotation Glossary</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt GLib Reference Manual">
77 <link rel="up" href="index.html" title="Libvirt GLib Reference Manual">
88 <link rel="prev" href="api-index-full.html" title="API Index">
9 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
9 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1010 <link rel="stylesheet" href="style.css" type="text/css">
1111 </head>
1212 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
13 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
14 <tr valign="middle">
15 <td><a accesskey="p" href="api-index-full.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
16 <td> </td>
17 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
18 <th width="100%" align="center">Libvirt GLib Reference Manual</th>
19 <td> </td>
20 </tr>
21 <tr><td colspan="5" class="shortcuts">
22 <a class="shortcut" href="#glsA">A</a>
23  | 
24 <a class="shortcut" href="#glsI">I</a>
25  | 
26 <a class="shortcut" href="#glsT">T</a>
27 </td></tr>
28 </table>
13 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
14 <td width="100%" align="left" class="shortcuts"><span id="nav_glossary"><a class="shortcut" href="#glsA">A</a>
15  <span class="dim">|</span> 
16 <a class="shortcut" href="#glsI">I</a>
17  <span class="dim">|</span> 
18 <a class="shortcut" href="#glsS">S</a>
19  <span class="dim">|</span> 
20 <a class="shortcut" href="#glsT">T</a></span></td>
21 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
23 <td><a accesskey="p" href="api-index-full.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24 <td><img src="right-insensitive.png" width="16" height="16" border="0"></td>
25 </tr></table>
2926 <div class="glossary">
3027 <div class="titlepage"><div><div><h1 class="title">
3128 <a name="annotation-glossary"></a>Annotation Glossary</h1></div></div></div>
3229 <a name="glsA"></a><h3 class="title">A</h3>
30 <dt><span class="glossterm"><a name="annotation-glossterm-allow-none"></a>allow-none</span></dt>
31 <dd class="glossdef"><p>NULL is OK, both for passing and for returning.</p></dd>
3332 <dt><span class="glossterm"><a name="annotation-glossterm-array"></a>array</span></dt>
3433 <dd class="glossdef"><p>Parameter points to an array of items.</p></dd>
35 <dt><span class="glossterm"><a name="annotation-glossterm-allow-none"></a>allow-none</span></dt>
36 <dd class="glossdef"><p>NULL is ok, both for passing and for returning.</p></dd>
3734 <a name="glsI"></a><h3 class="title">I</h3>
3835 <dt><span class="glossterm"><a name="annotation-glossterm-inout"></a>inout</span></dt>
3936 <dd class="glossdef"><p>Parameter for input and for returning results. Default is <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>.</p></dd>
37 <a name="glsS"></a><h3 class="title">S</h3>
38 <dt><span class="glossterm"><a name="annotation-glossterm-Stable"></a>Stable</span></dt>
39 <dd class="glossdef"><p>The intention of a Stable interface is to enable arbitrary third parties to
40 develop applications to these interfaces, release them, and have confidence that
41 they will run on all minor releases of the product (after the one in which the
42 interface was introduced, and within the same major release). Even at a major
43 release, incompatible changes are expected to be rare, and to have strong
44 justifications.
45 </p></dd>
4046 <a name="glsT"></a><h3 class="title">T</h3>
4147 <dt><span class="glossterm"><a name="annotation-glossterm-transfer%20full"></a>transfer full</span></dt>
4248 <dd class="glossdef"><p>Free data after the code is done.</p></dd>
4551 </div>
4652 <div class="footer">
4753 <hr>
48 Generated by GTK-Doc V1.19</div>
54 Generated by GTK-Doc V1.21</div>
4955 </body>
5056 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>API Index</title>
4 <title>Libvirt GLib Reference Manual: API Index</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt GLib Reference Manual">
77 <link rel="up" href="index.html" title="Libvirt GLib Reference Manual">
88 <link rel="prev" href="object-tree.html" title="Object Hierarchy">
99 <link rel="next" href="annotation-glossary.html" title="Annotation Glossary">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="object-tree.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td> </td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt GLib Reference Manual</th>
20 <td><a accesskey="n" href="annotation-glossary.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a class="shortcut" href="#idxC">C</a>
24  | 
25 <a class="shortcut" href="#idxE">E</a>
26  | 
27 <a class="shortcut" href="#idxI">I</a>
28  | 
29 <a class="shortcut" href="#idxS">S</a>
30  | 
31 <a class="shortcut" href="#idxW">W</a>
32 </td></tr>
33 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxC">C</a>
16  <span class="dim">|</span> 
17 <a class="shortcut" href="#idxE">E</a>
18  <span class="dim">|</span> 
19 <a class="shortcut" href="#idxI">I</a>
20  <span class="dim">|</span> 
21 <a class="shortcut" href="#idxS">S</a>
22  <span class="dim">|</span> 
23 <a class="shortcut" href="#idxW">W</a></span></td>
24 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
25 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
26 <td><a accesskey="p" href="object-tree.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
27 <td><a accesskey="n" href="annotation-glossary.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
28 </tr></table>
3429 <div class="index">
3530 <div class="titlepage"><div><div><h1 class="title">
3631 <a name="api-index-full"></a>API Index</h1></div></div></div>
3732 <a name="idx"></a><a name="idxC"></a><h3 class="title">C</h3>
3833 <dt>
39 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-critical" title="gvir_critical ()">gvir_critical</a>, function in <a class="link" href="Libvirt-glib-Error-reporting.html" title="Error reporting">Error reporting</a>
34 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-critical" title="gvir_critical ()">gvir_critical</a>, function in <a class="link" href="Libvirt-glib-Error-reporting.html" title="Error reporting">Error reporting</a>
4035 </dt>
4136 <dd></dd>
4237 <a name="idxE"></a><h3 class="title">E</h3>
4338 <dt>
44 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new" title="gvir_error_new ()">gvir_error_new</a>, function in <a class="link" href="Libvirt-glib-Error-reporting.html" title="Error reporting">Error reporting</a>
39 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new" title="gvir_error_new ()">gvir_error_new</a>, function in <a class="link" href="Libvirt-glib-Error-reporting.html" title="Error reporting">Error reporting</a>
4540 </dt>
4641 <dd></dd>
4742 <dt>
48 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new-literal" title="gvir_error_new_literal ()">gvir_error_new_literal</a>, function in <a class="link" href="Libvirt-glib-Error-reporting.html" title="Error reporting">Error reporting</a>
43 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new-literal" title="gvir_error_new_literal ()">gvir_error_new_literal</a>, function in <a class="link" href="Libvirt-glib-Error-reporting.html" title="Error reporting">Error reporting</a>
4944 </dt>
5045 <dd></dd>
5146 <dt>
52 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new-valist" title="gvir_error_new_valist ()">gvir_error_new_valist</a>, function in <a class="link" href="Libvirt-glib-Error-reporting.html" title="Error reporting">Error reporting</a>
47 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-error-new-valist" title="gvir_error_new_valist ()">gvir_error_new_valist</a>, function in <a class="link" href="Libvirt-glib-Error-reporting.html" title="Error reporting">Error reporting</a>
5348 </dt>
5449 <dd></dd>
5550 <dt>
56 <a class="link" href="Libvirt-glib-Event-loop.html#gvir-event-register" title="gvir_event_register ()">gvir_event_register</a>, function in <a class="link" href="Libvirt-glib-Event-loop.html" title="Event loop">Event loop</a>
51 <a class="link" href="Libvirt-glib-Event-loop.html#gvir-event-register" title="gvir_event_register ()">gvir_event_register</a>, function in <a class="link" href="Libvirt-glib-Event-loop.html" title="Event loop">Event loop</a>
5752 </dt>
5853 <dd></dd>
5954 <a name="idxI"></a><h3 class="title">I</h3>
6055 <dt>
61 <a class="link" href="Libvirt-glib-Library-initialization.html#gvir-init" title="gvir_init ()">gvir_init</a>, function in <a class="link" href="Libvirt-glib-Library-initialization.html" title="Library initialization">Library initialization</a>
56 <a class="link" href="Libvirt-glib-Library-initialization.html#gvir-init" title="gvir_init ()">gvir_init</a>, function in <a class="link" href="Libvirt-glib-Library-initialization.html" title="Library initialization">Library initialization</a>
6257 </dt>
6358 <dd></dd>
6459 <dt>
65 <a class="link" href="Libvirt-glib-Library-initialization.html#gvir-init-check" title="gvir_init_check ()">gvir_init_check</a>, function in <a class="link" href="Libvirt-glib-Library-initialization.html" title="Library initialization">Library initialization</a>
60 <a class="link" href="Libvirt-glib-Library-initialization.html#gvir-init-check" title="gvir_init_check ()">gvir_init_check</a>, function in <a class="link" href="Libvirt-glib-Library-initialization.html" title="Library initialization">Library initialization</a>
6661 </dt>
6762 <dd></dd>
6863 <a name="idxS"></a><h3 class="title">S</h3>
6964 <dt>
70 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-set-error" title="gvir_set_error ()">gvir_set_error</a>, function in <a class="link" href="Libvirt-glib-Error-reporting.html" title="Error reporting">Error reporting</a>
65 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-set-error" title="gvir_set_error ()">gvir_set_error</a>, function in <a class="link" href="Libvirt-glib-Error-reporting.html" title="Error reporting">Error reporting</a>
7166 </dt>
7267 <dd></dd>
7368 <dt>
74 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-set-error-literal" title="gvir_set_error_literal ()">gvir_set_error_literal</a>, function in <a class="link" href="Libvirt-glib-Error-reporting.html" title="Error reporting">Error reporting</a>
69 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-set-error-literal" title="gvir_set_error_literal ()">gvir_set_error_literal</a>, function in <a class="link" href="Libvirt-glib-Error-reporting.html" title="Error reporting">Error reporting</a>
7570 </dt>
7671 <dd></dd>
7772 <dt>
78 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-set-error-valist" title="gvir_set_error_valist ()">gvir_set_error_valist</a>, function in <a class="link" href="Libvirt-glib-Error-reporting.html" title="Error reporting">Error reporting</a>
73 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-set-error-valist" title="gvir_set_error_valist ()">gvir_set_error_valist</a>, function in <a class="link" href="Libvirt-glib-Error-reporting.html" title="Error reporting">Error reporting</a>
7974 </dt>
8075 <dd></dd>
8176 <a name="idxW"></a><h3 class="title">W</h3>
8277 <dt>
83 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-warning" title="gvir_warning ()">gvir_warning</a>, function in <a class="link" href="Libvirt-glib-Error-reporting.html" title="Error reporting">Error reporting</a>
78 <a class="link" href="Libvirt-glib-Error-reporting.html#gvir-warning" title="gvir_warning ()">gvir_warning</a>, function in <a class="link" href="Libvirt-glib-Error-reporting.html" title="Error reporting">Error reporting</a>
8479 </dt>
8580 <dd></dd>
8681 </div>
8782 <div class="footer">
8883 <hr>
89 Generated by GTK-Doc V1.19</div>
84 Generated by GTK-Doc V1.21</div>
9085 </body>
9186 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>API Reference</title>
4 <title>Libvirt GLib Reference Manual: API Reference</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt GLib Reference Manual">
77 <link rel="up" href="index.html" title="Libvirt GLib Reference Manual">
88 <link rel="prev" href="index.html" title="Libvirt GLib Reference Manual">
99 <link rel="next" href="Libvirt-glib-Library-initialization.html" title="Library initialization">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
15 <td><a accesskey="p" href="index.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
16 <td> </td>
17 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
18 <th width="100%" align="center">Libvirt GLib Reference Manual</th>
19 <td><a accesskey="n" href="Libvirt-glib-Library-initialization.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts"></td>
16 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
17 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
18 <td><a accesskey="p" href="index.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
19 <td><a accesskey="n" href="Libvirt-glib-Library-initialization.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
2020 </tr></table>
2121 <div class="chapter">
2222 <div class="titlepage"><div><div><h1 class="title">
3535 </div>
3636 <div class="footer">
3737 <hr>
38 Generated by GTK-Doc V1.19</div>
38 Generated by GTK-Doc V1.21</div>
3939 </body>
4040 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>Libvirt GLib Reference Manual</title>
4 <title>Libvirt GLib Reference Manual: Libvirt GLib Reference Manual</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt GLib Reference Manual">
77 <link rel="next" href="ch01.html" title="API Reference">
8 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
8 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
99 <link rel="stylesheet" href="style.css" type="text/css">
1010 </head>
1111 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3434 </div>
3535 <div class="footer">
3636 <hr>
37 Generated by GTK-Doc V1.19</div>
37 Generated by GTK-Doc V1.21</div>
3838 </body>
3939 </html>
00 <ANCHOR id="Libvirt-glib-Library-initialization" href="Libvirt-glib/Libvirt-glib-Library-initialization.html">
11 <ANCHOR id="Libvirt-glib-Library-initialization.stability-level" href="Libvirt-glib/Libvirt-glib-Library-initialization.html#Libvirt-glib-Library-initialization.stability-level">
2 <ANCHOR id="Libvirt-glib-Library-initialization.synopsis" href="Libvirt-glib/Libvirt-glib-Library-initialization.html#Libvirt-glib-Library-initialization.synopsis">
2 <ANCHOR id="Libvirt-glib-Library-initialization.functions" href="Libvirt-glib/Libvirt-glib-Library-initialization.html#Libvirt-glib-Library-initialization.functions">
3 <ANCHOR id="Libvirt-glib-Library-initialization.includes" href="Libvirt-glib/Libvirt-glib-Library-initialization.html#Libvirt-glib-Library-initialization.includes">
34 <ANCHOR id="Libvirt-glib-Library-initialization.description" href="Libvirt-glib/Libvirt-glib-Library-initialization.html#Libvirt-glib-Library-initialization.description">
4 <ANCHOR id="Libvirt-glib-Library-initialization.details" href="Libvirt-glib/Libvirt-glib-Library-initialization.html#Libvirt-glib-Library-initialization.details">
5 <ANCHOR id="Libvirt-glib-Library-initialization.functions_details" href="Libvirt-glib/Libvirt-glib-Library-initialization.html#Libvirt-glib-Library-initialization.functions_details">
56 <ANCHOR id="gvir-init" href="Libvirt-glib/Libvirt-glib-Library-initialization.html#gvir-init">
67 <ANCHOR id="gvir-init-check" href="Libvirt-glib/Libvirt-glib-Library-initialization.html#gvir-init-check">
8 <ANCHOR id="Libvirt-glib-Library-initialization.other_details" href="Libvirt-glib/Libvirt-glib-Library-initialization.html#Libvirt-glib-Library-initialization.other_details">
79 <ANCHOR id="Libvirt-glib-Error-reporting" href="Libvirt-glib/Libvirt-glib-Error-reporting.html">
810 <ANCHOR id="Libvirt-glib-Error-reporting.stability-level" href="Libvirt-glib/Libvirt-glib-Error-reporting.html#Libvirt-glib-Error-reporting.stability-level">
9 <ANCHOR id="Libvirt-glib-Error-reporting.synopsis" href="Libvirt-glib/Libvirt-glib-Error-reporting.html#Libvirt-glib-Error-reporting.synopsis">
11 <ANCHOR id="Libvirt-glib-Error-reporting.functions" href="Libvirt-glib/Libvirt-glib-Error-reporting.html#Libvirt-glib-Error-reporting.functions">
12 <ANCHOR id="Libvirt-glib-Error-reporting.includes" href="Libvirt-glib/Libvirt-glib-Error-reporting.html#Libvirt-glib-Error-reporting.includes">
1013 <ANCHOR id="Libvirt-glib-Error-reporting.description" href="Libvirt-glib/Libvirt-glib-Error-reporting.html#Libvirt-glib-Error-reporting.description">
11 <ANCHOR id="Libvirt-glib-Error-reporting.details" href="Libvirt-glib/Libvirt-glib-Error-reporting.html#Libvirt-glib-Error-reporting.details">
14 <ANCHOR id="Libvirt-glib-Error-reporting.functions_details" href="Libvirt-glib/Libvirt-glib-Error-reporting.html#Libvirt-glib-Error-reporting.functions_details">
1215 <ANCHOR id="gvir-error-new" href="Libvirt-glib/Libvirt-glib-Error-reporting.html#gvir-error-new">
1316 <ANCHOR id="gvir-error-new-literal" href="Libvirt-glib/Libvirt-glib-Error-reporting.html#gvir-error-new-literal">
1417 <ANCHOR id="gvir-error-new-valist" href="Libvirt-glib/Libvirt-glib-Error-reporting.html#gvir-error-new-valist">
1720 <ANCHOR id="gvir-set-error-valist" href="Libvirt-glib/Libvirt-glib-Error-reporting.html#gvir-set-error-valist">
1821 <ANCHOR id="gvir-critical" href="Libvirt-glib/Libvirt-glib-Error-reporting.html#gvir-critical">
1922 <ANCHOR id="gvir-warning" href="Libvirt-glib/Libvirt-glib-Error-reporting.html#gvir-warning">
23 <ANCHOR id="Libvirt-glib-Error-reporting.other_details" href="Libvirt-glib/Libvirt-glib-Error-reporting.html#Libvirt-glib-Error-reporting.other_details">
2024 <ANCHOR id="Libvirt-glib-Event-loop" href="Libvirt-glib/Libvirt-glib-Event-loop.html">
2125 <ANCHOR id="Libvirt-glib-Event-loop.stability-level" href="Libvirt-glib/Libvirt-glib-Event-loop.html#Libvirt-glib-Event-loop.stability-level">
22 <ANCHOR id="Libvirt-glib-Event-loop.synopsis" href="Libvirt-glib/Libvirt-glib-Event-loop.html#Libvirt-glib-Event-loop.synopsis">
26 <ANCHOR id="Libvirt-glib-Event-loop.functions" href="Libvirt-glib/Libvirt-glib-Event-loop.html#Libvirt-glib-Event-loop.functions">
27 <ANCHOR id="Libvirt-glib-Event-loop.includes" href="Libvirt-glib/Libvirt-glib-Event-loop.html#Libvirt-glib-Event-loop.includes">
2328 <ANCHOR id="Libvirt-glib-Event-loop.description" href="Libvirt-glib/Libvirt-glib-Event-loop.html#Libvirt-glib-Event-loop.description">
24 <ANCHOR id="Libvirt-glib-Event-loop.details" href="Libvirt-glib/Libvirt-glib-Event-loop.html#Libvirt-glib-Event-loop.details">
29 <ANCHOR id="Libvirt-glib-Event-loop.functions_details" href="Libvirt-glib/Libvirt-glib-Event-loop.html#Libvirt-glib-Event-loop.functions_details">
2530 <ANCHOR id="gvir-event-register" href="Libvirt-glib/Libvirt-glib-Event-loop.html#gvir-event-register">
31 <ANCHOR id="Libvirt-glib-Event-loop.other_details" href="Libvirt-glib/Libvirt-glib-Event-loop.html#Libvirt-glib-Event-loop.other_details">
32 <ANCHOR id="annotation-glossterm-allow-none" href="Libvirt-glib/annotation-glossary.html#annotation-glossterm-allow-none">
2633 <ANCHOR id="annotation-glossterm-array" href="Libvirt-glib/annotation-glossary.html#annotation-glossterm-array">
27 <ANCHOR id="annotation-glossterm-allow-none" href="Libvirt-glib/annotation-glossary.html#annotation-glossterm-allow-none">
2834 <ANCHOR id="annotation-glossterm-inout" href="Libvirt-glib/annotation-glossary.html#annotation-glossterm-inout">
35 <ANCHOR id="annotation-glossterm-Stable" href="Libvirt-glib/annotation-glossary.html#annotation-glossterm-Stable">
2936 <ANCHOR id="annotation-glossterm-transfer full" href="Libvirt-glib/annotation-glossary.html#annotation-glossterm-transfer full">
3037 <ANCHOR id="annotation-glossterm-transfer none" href="Libvirt-glib/annotation-glossary.html#annotation-glossterm-transfer none">
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>Object Hierarchy</title>
4 <title>Libvirt GLib Reference Manual: Object Hierarchy</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt GLib Reference Manual">
77 <link rel="up" href="index.html" title="Libvirt GLib Reference Manual">
88 <link rel="prev" href="Libvirt-glib-Event-loop.html" title="Event loop">
99 <link rel="next" href="api-index-full.html" title="API Index">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
15 <td><a accesskey="p" href="Libvirt-glib-Event-loop.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
16 <td> </td>
17 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
18 <th width="100%" align="center">Libvirt GLib Reference Manual</th>
19 <td><a accesskey="n" href="api-index-full.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts"></td>
16 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
17 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
18 <td><a accesskey="p" href="Libvirt-glib-Event-loop.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
19 <td><a accesskey="n" href="api-index-full.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
2020 </tr></table>
2121 <div class="chapter">
2222 <div class="titlepage"><div><div><h1 class="title">
2323 <a name="object-tree"></a>Object Hierarchy</h1></div></div></div>
2424 <pre class="screen">
25
2526 </pre>
2627 </div>
2728 <div class="footer">
2829 <hr>
29 Generated by GTK-Doc V1.19</div>
30 Generated by GTK-Doc V1.21</div>
3031 </body>
3132 </html>
0 body
1 {
2 font-family: cantarell, sans-serif;
3 }
04 .synopsis, .classsynopsis
15 {
26 /* tango:aluminium 1/2 */
37 background: #eeeeec;
4 border: solid 1px #d3d7cf;
8 background: rgba(238, 238, 236, 0.5);
9 border: solid 1px rgb(238, 238, 236);
510 padding: 0.5em;
611 }
712 .programlisting
813 {
914 /* tango:sky blue 0/1 */
15 /* fallback for no rgba support */
1016 background: #e6f3ff;
1117 border: solid 1px #729fcf;
18 background: rgba(114, 159, 207, 0.1);
19 border: solid 1px rgba(114, 159, 207, 0.2);
1220 padding: 0.5em;
1321 }
1422 .variablelist
2129 vertical-align: top;
2230 }
2331
32 div.gallery-float
33 {
34 float: left;
35 padding: 10px;
36 }
37 div.gallery-float img
38 {
39 border-style: none;
40 }
41 div.gallery-spacer
42 {
43 clear: both;
44 }
45
46 a, a:visited
47 {
48 text-decoration: none;
49 /* tango:sky blue 2 */
50 color: #3465a4;
51 }
52 a:hover
53 {
54 text-decoration: underline;
55 /* tango:sky blue 1 */
56 color: #729fcf;
57 }
58
59 div.informaltable table
60 {
61 border-collapse: separate;
62 border-spacing: 1em 0.5em;
63 border: none;
64 }
65
66 div.informaltable table td, div.informaltable table th
67 {
68 vertical-align: top;
69 }
70
71 .function_type,
72 .variable_type,
73 .property_type,
74 .signal_type,
75 .parameter_name,
76 .struct_member_name,
77 .union_member_name,
78 .define_keyword,
79 .datatype_keyword,
80 .typedef_keyword
81 {
82 text-align: right;
83 }
84
85 /* dim non-primary columns */
86 .c_punctuation,
87 .function_type,
88 .variable_type,
89 .property_type,
90 .signal_type,
91 .define_keyword,
92 .datatype_keyword,
93 .typedef_keyword,
94 .property_flags,
95 .signal_flags,
96 .parameter_annotations,
97 .enum_member_annotations,
98 .struct_member_annotations,
99 .union_member_annotations
100 {
101 color: #888a85;
102 }
103
104 .function_type a,
105 .function_type a:visited,
106 .function_type a:hover,
107 .property_type a,
108 .property_type a:visited,
109 .property_type a:hover,
110 .signal_type a,
111 .signal_type a:visited,
112 .signal_type a:hover,
113 .signal_flags a,
114 .signal_flags a:visited,
115 .signal_flags a:hover
116 {
117 color: #729fcf;
118 }
119
120 td p
121 {
122 margin: 0.25em;
123 }
124
125 div.table table
126 {
127 border-collapse: collapse;
128 border-spacing: 0px;
129 /* tango:aluminium 3 */
130 border: solid 1px #babdb6;
131 }
132
133 div.table table td, div.table table th
134 {
135 /* tango:aluminium 3 */
136 border: solid 1px #babdb6;
137 padding: 3px;
138 vertical-align: top;
139 }
140
141 div.table table th
142 {
143 /* tango:aluminium 2 */
144 background-color: #d3d7cf;
145 }
146
147 h4
148 {
149 color: #555753;
150 }
151
152 hr
153 {
154 /* tango:aluminium 1 */
155 color: #d3d7cf;
156 background: #d3d7cf;
157 border: none 0px;
158 height: 1px;
159 clear: both;
160 margin: 2.0em 0em 2.0em 0em;
161 }
162
163 dl.toc dt
164 {
165 padding-bottom: 0.25em;
166 }
167
168 dl.toc > dd > dl > dt
169 {
170 padding-top: 0.25em;
171 padding-bottom: 0.25em;
172 }
173
174 dl.toc > dt
175 {
176 padding-top: 1em;
177 padding-bottom: 0.5em;
178 font-weight: bold;
179 }
180
181 .parameter
182 {
183 font-style: normal;
184 }
185
186 .footer
187 {
188 padding-top: 3.5em;
189 /* tango:aluminium 3 */
190 color: #babdb6;
191 text-align: center;
192 font-size: 80%;
193 }
194
195 .informalfigure,
196 .figure
197 {
198 margin: 1em;
199 }
200
201 .informalexample,
202 .example
203 {
204 margin-top: 1em;
205 margin-bottom: 1em;
206 }
207
208 .warning
209 {
210 /* tango:orange 0/1 */
211 background: #ffeed9;
212 background: rgba(252, 175, 62, 0.1);
213 border-color: #ffb04f;
214 border-color: rgba(252, 175, 62, 0.2);
215 }
216 .note
217 {
218 /* tango:chameleon 0/0.5 */
219 background: #d8ffb2;
220 background: rgba(138, 226, 52, 0.1);
221 border-color: #abf562;
222 border-color: rgba(138, 226, 52, 0.2);
223 }
224 div.blockquote
225 {
226 border-color: #eeeeec;
227 }
228 .note, .warning, div.blockquote
229 {
230 padding: 0.5em;
231 border-width: 1px;
232 border-style: solid;
233 margin: 2em;
234 }
235 .note p, .warning p
236 {
237 margin: 0;
238 }
239
240 div.warning h3.title,
241 div.note h3.title
242 {
243 display: none;
244 }
245
246 p + div.section
247 {
248 margin-top: 1em;
249 }
250
251 div.refnamediv,
252 div.refsynopsisdiv,
253 div.refsect1,
254 div.refsect2,
255 div.toc,
256 div.section
257 {
258 margin-bottom: 1em;
259 }
260
261 /* blob links */
262 h2 .extralinks, h3 .extralinks
263 {
264 float: right;
265 /* tango:aluminium 3 */
266 color: #babdb6;
267 font-size: 80%;
268 font-weight: normal;
269 }
270
271 .lineart
272 {
273 color: #d3d7cf;
274 font-weight: normal;
275 }
276
277 .annotation
278 {
279 /* tango:aluminium 5 */
280 color: #555753;
281 font-weight: normal;
282 }
283
284 .structfield
285 {
286 font-style: normal;
287 font-weight: normal;
288 }
289
290 acronym,abbr
291 {
292 border-bottom: 1px dotted gray;
293 }
294
295 /* code listings */
296
297 .listing_code .programlisting .normal,
298 .listing_code .programlisting .normal a,
299 .listing_code .programlisting .number,
300 .listing_code .programlisting .cbracket,
301 .listing_code .programlisting .symbol { color: #555753; }
302 .listing_code .programlisting .comment,
303 .listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */
304 .listing_code .programlisting .function,
305 .listing_code .programlisting .function a,
306 .listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */
307 .listing_code .programlisting .string { color: #ad7fa8; } /* tango: plum */
308 .listing_code .programlisting .keyword,
309 .listing_code .programlisting .usertype,
310 .listing_code .programlisting .type,
311 .listing_code .programlisting .type a { color: #4e9a06; } /* tango: chameleon 3 */
312
313 .listing_frame {
314 /* tango:sky blue 1 */
315 border: solid 1px #729fcf;
316 border: solid 1px rgba(114, 159, 207, 0.2);
317 padding: 0px;
318 }
319
320 .listing_lines, .listing_code {
321 margin-top: 0px;
322 margin-bottom: 0px;
323 padding: 0.5em;
324 }
325 .listing_lines {
326 /* tango:sky blue 0.5 */
327 background: #a6c5e3;
328 background: rgba(114, 159, 207, 0.2);
329 /* tango:aluminium 6 */
330 color: #2e3436;
331 }
332 .listing_code {
333 /* tango:sky blue 0 */
334 background: #e6f3ff;
335 background: rgba(114, 159, 207, 0.1);
336 }
337 .listing_code .programlisting {
338 /* override from previous */
339 border: none 0px;
340 padding: 0px;
341 background: none;
342 }
343 .listing_lines pre, .listing_code pre {
344 margin: 0px;
345 }
346
24347 @media screen {
25348 sup a.footnote
26349 {
27350 position: relative;
28351 top: 0em ! important;
29
30352 }
31353 /* this is needed so that the local anchors are displayed below the naviagtion */
32354 div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name]
45367 */
46368 body
47369 {
48 padding-top: 3.2em;
49 padding-bottom: 20em;
370 padding-top: 2.5em;
371 padding-bottom: 500px;
372 max-width: 60em;
373 }
374 p
375 {
376 max-width: 60em;
50377 }
51378 /* style and size the navigation bar */
52379 table.navigation#top
53380 {
54381 position: fixed;
55 /* tango:scarlet red 0/1 */
56 background: #ffe6e6;
57 border: solid 1px #ef2929;
382 background: #e2e2e2;
383 border-bottom: solid 1px #babdb6;
384 border-spacing: 5px;
385 margin-top: 0;
386 margin-bottom: 0;
387 top: 0;
388 left: 0;
389 z-index: 10;
390 }
391 table.navigation#top td
392 {
393 padding-left: 6px;
394 padding-right: 6px;
395 }
396 .navigation a, .navigation a:visited
397 {
398 /* tango:sky blue 3 */
399 color: #204a87;
400 }
401 .navigation a:hover
402 {
403 /* tango:sky blue 2 */
404 color: #3465a4;
405 }
406 td.shortcuts
407 {
408 /* tango:sky blue 2 */
409 color: #3465a4;
410 font-size: 80%;
411 white-space: nowrap;
412 }
413 td.shortcuts .dim
414 {
415 color: #babdb6;
416 }
417 .navigation .title
418 {
419 font-size: 80%;
420 max-width: none;
421 margin: 0px;
422 font-weight: normal;
423 }
424 }
425 @media screen and (min-width: 60em) {
426 /* screen larger than 60em */
427 body { margin: auto; }
428 }
429 @media screen and (max-width: 60em) {
430 /* screen less than 60em */
431 #nav_hierarchy { display: none; }
432 #nav_interfaces { display: none; }
433 #nav_prerequisites { display: none; }
434 #nav_derived_interfaces { display: none; }
435 #nav_implementations { display: none; }
436 #nav_child_properties { display: none; }
437 #nav_style_properties { display: none; }
438 #nav_index { display: none; }
439 #nav_glossary { display: none; }
440 .gallery_image { display: none; }
441 .property_flags { display: none; }
442 .signal_flags { display: none; }
443 .parameter_annotations { display: none; }
444 .enum_member_annotations { display: none; }
445 .struct_member_annotations { display: none; }
446 .union_member_annotations { display: none; }
447 /* now that a column is hidden, optimize space */
448 col.parameters_name { width: auto; }
449 col.parameters_description { width: auto; }
450 col.struct_members_name { width: auto; }
451 col.struct_members_description { width: auto; }
452 col.enum_members_name { width: auto; }
453 col.enum_members_description { width: auto; }
454 col.union_members_name { width: auto; }
455 col.union_members_description { width: auto; }
456 .listing_lines { display: none; }
457 }
458 @media print {
459 table.navigation {
460 visibility: collapse;
461 display: none;
462 }
463 div.titlepage table.navigation {
464 visibility: visible;
465 display: table;
466 background: #e2e2e2;
467 border: solid 1px #babdb6;
58468 margin-top: 0;
59469 margin-bottom: 0;
60470 top: 0;
61471 left: 0;
62472 height: 3em;
63 z-index: 10;
64 }
65 .navigation a, .navigation a:visited
66 {
67 /* tango:scarlet red 3 */
68 color: #a40000;
69 }
70 .navigation a:hover
71 {
72 /* tango:scarlet red 1 */
73 color: #ef2929;
74 }
75 td.shortcuts
76 {
77 /* tango:scarlet red 1 */
78 color: #ef2929;
79 font-size: 80%;
80 white-space: nowrap;
81 }
82 }
83 @media print {
84 table.navigation {
85 visibility: collapse;
86 display: none;
87 }
88 div.titlepage table.navigation {
89 visibility: visible;
90 display: table;
91 /* tango:scarlet red 0/1 */
92 background: #ffe6e6;
93 border: solid 1px #ef2929;
94 margin-top: 0;
95 margin-bottom: 0;
96 top: 0;
97 left: 0;
98 height: 3em;
99 }
100 }
101
102 .navigation .title
103 {
104 font-size: 200%;
105 }
106
107 div.gallery-float
108 {
109 float: left;
110 padding: 10px;
111 }
112 div.gallery-float img
113 {
114 border-style: none;
115 }
116 div.gallery-spacer
117 {
118 clear: both;
119 }
120
121 a, a:visited
122 {
123 text-decoration: none;
124 /* tango:sky blue 2 */
125 color: #3465a4;
126 }
127 a:hover
128 {
129 text-decoration: underline;
130 /* tango:sky blue 1 */
131 color: #729fcf;
132 }
133
134 div.table table
135 {
136 border-collapse: collapse;
137 border-spacing: 0px;
138 /* tango:aluminium 3 */
139 border: solid 1px #babdb6;
140 }
141
142 div.table table td, div.table table th
143 {
144 /* tango:aluminium 3 */
145 border: solid 1px #babdb6;
146 padding: 3px;
147 vertical-align: top;
148 }
149
150 div.table table th
151 {
152 /* tango:aluminium 2 */
153 background-color: #d3d7cf;
154 }
155
156 hr
157 {
158 /* tango:aluminium 3 */
159 color: #babdb6;
160 background: #babdb6;
161 border: none 0px;
162 height: 1px;
163 clear: both;
164 }
165
166 .footer
167 {
168 padding-top: 3.5em;
169 /* tango:aluminium 3 */
170 color: #babdb6;
171 text-align: center;
172 font-size: 80%;
173 }
174
175 .warning
176 {
177 /* tango:orange 0/1 */
178 background: #ffeed9;
179 border-color: #ffb04f;
180 }
181 .note
182 {
183 /* tango:chameleon 0/0.5 */
184 background: #d8ffb2;
185 border-color: #abf562;
186 }
187 .note, .warning
188 {
189 padding: 0.5em;
190 border-width: 1px;
191 border-style: solid;
192 }
193 .note h3, .warning h3
194 {
195 margin-top: 0.0em
196 }
197 .note p, .warning p
198 {
199 margin-bottom: 0.0em
200 }
201
202 /* blob links */
203 h2 .extralinks, h3 .extralinks
204 {
205 float: right;
206 /* tango:aluminium 3 */
207 color: #babdb6;
208 font-size: 80%;
209 font-weight: normal;
210 }
211
212 .annotation
213 {
214 /* tango:aluminium 5 */
215 color: #555753;
216 font-size: 80%;
217 font-weight: normal;
218 }
219
220 /* code listings */
221
222 .listing_code .programlisting .cbracket { color: #a40000; } /* tango: scarlet red 3 */
223 .listing_code .programlisting .comment { color: #a1a39d; } /* tango: aluminium 4 */
224 .listing_code .programlisting .function { color: #000000; font-weight: bold; }
225 .listing_code .programlisting .function a { color: #11326b; font-weight: bold; } /* tango: sky blue 4 */
226 .listing_code .programlisting .keyword { color: #4e9a06; } /* tango: chameleon 3 */
227 .listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */
228 .listing_code .programlisting .normal { color: #000000; }
229 .listing_code .programlisting .number { color: #75507b; } /* tango: plum 2 */
230 .listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */
231 .listing_code .programlisting .string { color: #c17d11; } /* tango: chocolate 2 */
232 .listing_code .programlisting .type { color: #000000; }
233 .listing_code .programlisting .type a { color: #11326b; } /* tango: sky blue 4 */
234 .listing_code .programlisting .symbol { color: #ce5c00; } /* tango: orange 3 */
235
236 .listing_frame {
237 /* tango:sky blue 1 */
238 border: solid 1px #729fcf;
239 padding: 0px;
240 }
241
242 .listing_lines, .listing_code {
243 margin-top: 0px;
244 margin-bottom: 0px;
245 padding: 0.5em;
246 }
247 .listing_lines {
248 /* tango:sky blue 0.5 */
249 background: #a6c5e3;
250 /* tango:aluminium 6 */
251 color: #2e3436;
252 }
253 .listing_code {
254 /* tango:sky blue 0 */
255 background: #e6f3ff;
256 }
257 .listing_code .programlisting {
258 /* override from previous */
259 border: none 0px;
260 padding: 0px;
261 }
262 .listing_lines pre, .listing_code pre {
263 margin: 0px;
264 }
265
473 }
474 }
475
1414 <SECTION>
1515 <FILE>libvirt-gobject-connection</FILE>
1616 <TITLE>GVirConnection</TITLE>
17 GVirNodeInfo
18 GVirConnection
19 GVirConnectionClass
2017 gvir_connection_new
2118 gvir_connection_open
2219 gvir_connection_open_read_only
7572 GVIR_IS_CONNECTION_CLASS
7673 GVIR_TYPE_CONNECTION
7774 GVIR_TYPE_CONNECTION_HANDLE
75 GVirConnection
76 GVirConnectionClass
7877 GVirConnectionPrivate
78 GVirNodeInfo
7979 gvir_connection_get_type
8080 gvir_connection_handle_get_type
8181 gvir_node_info_get_type
8484 <SECTION>
8585 <FILE>libvirt-gobject-domain</FILE>
8686 <TITLE>GVirDomain</TITLE>
87 GVirDomain
88 GVirDomainClass
8987 GVirDomainState
9088 GVirDomainStartFlags
9189 GVirDomainDeleteFlags
9492 GVirDomainSnapshotCreateFlags
9593 GVirDomainUpdateDeviceFlags
9694 GVirDomainRebootFlags
97 GVirDomainInfo
95 GVirDomainSnapshotListFlags
9896 gvir_domain_get_name
9997 gvir_domain_get_uuid
10098 gvir_domain_get_id
131129 gvir_domain_get_devices
132130 gvir_domain_update_device
133131 gvir_domain_create_snapshot
132 gvir_domain_create_snapshot_async
133 gvir_domain_create_snapshot_finish
134 gvir_domain_fetch_snapshots
135 gvir_domain_get_snapshots
136 gvir_domain_fetch_snapshots_async
137 gvir_domain_fetch_snapshots_finish
138 gvir_domain_get_has_current_snapshot
134139 <SUBSECTION Standard>
135140 GVIR_DOMAIN
136141 GVIR_DOMAIN_CLASS
140145 GVIR_TYPE_DOMAIN
141146 GVIR_TYPE_DOMAIN_HANDLE
142147 GVIR_TYPE_DOMAIN_INFO
148 GVirDomain
149 GVirDomainClass
150 GVirDomainInfo
143151 GVirDomainPrivate
144152 gvir_domain_get_type
145153 gvir_domain_handle_get_type
149157 <SECTION>
150158 <FILE>libvirt-gobject-domain-device</FILE>
151159 <TITLE>GVirDomainDevice</TITLE>
152 GVirDomainDevice
153 GVirDomainDeviceClass
154160 gvir_domain_device_get_domain
155161 gvir_domain_device_get_config
156162 <SUBSECTION Standard>
160166 GVIR_IS_DOMAIN_DEVICE
161167 GVIR_IS_DOMAIN_DEVICE_CLASS
162168 GVIR_TYPE_DOMAIN_DEVICE
169 GVirDomainDevice
170 GVirDomainDeviceClass
163171 GVirDomainDevicePrivate
164172 gvir_domain_device_get_type
165173 </SECTION>
172180 <SECTION>
173181 <FILE>libvirt-gobject-domain-disk</FILE>
174182 <TITLE>GVirDomainDisk</TITLE>
175 GVirDomainDiskStats
176 GVirDomainDisk
177 GVirDomainDiskClass
178183 gvir_domain_disk_get_stats
179184 gvir_domain_disk_resize
180185 <SUBSECTION Standard>
185190 GVIR_IS_DOMAIN_DISK_CLASS
186191 GVIR_TYPE_DOMAIN_DISK
187192 GVIR_TYPE_DOMAIN_DISK_STATS
193 GVirDomainDisk
194 GVirDomainDiskClass
188195 GVirDomainDiskPrivate
196 GVirDomainDiskStats
189197 gvir_domain_disk_get_type
190198 gvir_domain_disk_stats_get_type
191199 </SECTION>
193201 <SECTION>
194202 <FILE>libvirt-gobject-domain-interface</FILE>
195203 <TITLE>GVirDomainInterface</TITLE>
196 <TITLE>GVirDomain</TITLE>
197 GVirDomainInterfaceStats
198 GVirDomainInterface
199 GVirDomainInterfaceClass
200204 gvir_domain_interface_get_stats
201205 <SUBSECTION Standard>
202206 GVIR_DOMAIN_INTERFACE
206210 GVIR_IS_DOMAIN_INTERFACE_CLASS
207211 GVIR_TYPE_DOMAIN_INTERFACE
208212 GVIR_TYPE_DOMAIN_INTERFACE_STATS
213 GVirDomainInterface
214 GVirDomainInterfaceClass
209215 GVirDomainInterfacePrivate
216 GVirDomainInterfaceStats
210217 gvir_domain_interface_get_type
211218 gvir_domain_interface_stats_get_type
212219 </SECTION>
214221 <SECTION>
215222 <FILE>libvirt-gobject-domain-snapshot</FILE>
216223 <TITLE>GVirDomainSnapshot</TITLE>
217 GVirDomainSnapshot
218 GVirDomainSnapshotClass
224 GVirDomainSnapshotDeleteFlags
225 GVirDomainSnapshotRevertFlags
219226 gvir_domain_snapshot_get_name
220227 gvir_domain_snapshot_get_config
228 gvir_domain_snapshot_delete
229 gvir_domain_snapshot_delete_async
230 gvir_domain_snapshot_delete_finish
231 gvir_domain_snapshot_get_is_current
232 gvir_domain_snapshot_revert_to
233 gvir_domain_snapshot_revert_to_async
234 gvir_domain_snapshot_revert_to_finish
235 gvir_domain_snapshot_set_config
221236 <SUBSECTION Standard>
222237 GVIR_DOMAIN_SNAPSHOT
223238 GVIR_DOMAIN_SNAPSHOT_CLASS
226241 GVIR_IS_DOMAIN_SNAPSHOT_CLASS
227242 GVIR_TYPE_DOMAIN_SNAPSHOT
228243 GVIR_TYPE_DOMAIN_SNAPSHOT_HANDLE
244 GVirDomainSnapshot
245 GVirDomainSnapshotClass
229246 GVirDomainSnapshotPrivate
230247 gvir_domain_snapshot_get_type
231248 gvir_domain_snapshot_handle_get_type
234251 <SECTION>
235252 <FILE>libvirt-gobject-input-stream</FILE>
236253 <TITLE>GVirInputStream</TITLE>
237 GVirInputStreamClass
238254 <SUBSECTION Standard>
239255 GVIR_INPUT_STREAM
240256 GVIR_INPUT_STREAM_CLASS
242258 GVIR_IS_INPUT_STREAM
243259 GVIR_IS_INPUT_STREAM_CLASS
244260 GVIR_TYPE_INPUT_STREAM
261 GVirInputStream
262 GVirInputStreamClass
245263 GVirInputStreamPrivate
246264 </SECTION>
247265
248266 <SECTION>
249267 <FILE>libvirt-gobject-interface</FILE>
250268 <TITLE>GVirInterface</TITLE>
251 <TITLE>GVir</TITLE>
252 GVirInterface
253 GVirInterfaceClass
254269 gvir_interface_get_name
255270 gvir_interface_get_config
256271 <SUBSECTION Standard>
261276 GVIR_IS_INTERFACE_CLASS
262277 GVIR_TYPE_INTERFACE
263278 GVIR_TYPE_INTERFACE_HANDLE
279 GVirInterface
280 GVirInterfaceClass
264281 GVirInterfacePrivate
265282 gvir_interface_get_type
266283 gvir_interface_handle_get_type
275292 <SECTION>
276293 <FILE>libvirt-gobject-manager</FILE>
277294 <TITLE>GVirManager</TITLE>
278 GVirManager
279 GVirManagerClass
280295 gvir_manager_new
281296 gvir_manager_add_connection
282297 gvir_manager_remove_connection
289304 GVIR_MANAGER_CLASS
290305 GVIR_MANAGER_GET_CLASS
291306 GVIR_TYPE_MANAGER
307 GVirManager
308 GVirManagerClass
292309 GVirManagerPrivate
293310 gvir_manager_get_type
294311 </SECTION>
296313 <SECTION>
297314 <FILE>libvirt-gobject-network</FILE>
298315 <TITLE>GVirNetwork</TITLE>
299 GVirNetwork
300 GVirNetworkClass
301316 gvir_network_get_name
302317 gvir_network_get_uuid
303318 gvir_network_get_config
309324 GVIR_NETWORK_GET_CLASS
310325 GVIR_TYPE_NETWORK
311326 GVIR_TYPE_NETWORK_HANDLE
327 GVirNetwork
328 GVirNetworkClass
312329 GVirNetworkPrivate
313330 gvir_network_get_type
314331 gvir_network_handle_get_type
317334 <SECTION>
318335 <FILE>libvirt-gobject-network-filter</FILE>
319336 <TITLE>GVirNetworkFilter</TITLE>
320 GVirNetworkFilter
321 GVirNetworkFilterClass
322337 gvir_network_filter_get_name
323338 gvir_network_filter_get_uuid
324339 gvir_network_filter_get_config
330345 GVIR_NETWORK_FILTER_GET_CLASS
331346 GVIR_TYPE_NETWORK_FILTER
332347 GVIR_TYPE_NETWORK_FILTER_HANDLE
348 GVirNetworkFilter
349 GVirNetworkFilterClass
333350 GVirNetworkFilterPrivate
334351 gvir_network_filter_get_type
335352 gvir_network_filter_handle_get_type
338355 <SECTION>
339356 <FILE>libvirt-gobject-node-device</FILE>
340357 <TITLE>GVirNodeDevice</TITLE>
341 GVirNodeDevice
342 GVirNodeDeviceClass
343358 gvir_node_device_get_name
344359 gvir_node_device_get_config
345360 <SUBSECTION Standard>
350365 GVIR_NODE_DEVICE_GET_CLASS
351366 GVIR_TYPE_NODE_DEVICE
352367 GVIR_TYPE_NODE_DEVICE_HANDLE
368 GVirNodeDevice
369 GVirNodeDeviceClass
353370 GVirNodeDevicePrivate
354371 gvir_node_device_get_type
355372 gvir_node_device_handle_get_type
358375 <SECTION>
359376 <FILE>libvirt-gobject-output-stream</FILE>
360377 <TITLE>GVirOutputStream</TITLE>
361 GVirOutputStreamClass
362378 <SUBSECTION Standard>
363379 GVIR_IS_OUTPUT_STREAM
364380 GVIR_IS_OUTPUT_STREAM_CLASS
366382 GVIR_OUTPUT_STREAM_CLASS
367383 GVIR_OUTPUT_STREAM_GET_CLASS
368384 GVIR_TYPE_OUTPUT_STREAM
385 GVirOutputStream
386 GVirOutputStreamClass
369387 GVirOutputStreamPrivate
370388 </SECTION>
371389
372390 <SECTION>
373391 <FILE>libvirt-gobject-secret</FILE>
374392 <TITLE>GVirSecret</TITLE>
375 GVirSecret
376 GVirSecretClass
377393 gvir_secret_get_name
378394 gvir_secret_get_uuid
379395 gvir_secret_get_config
385401 GVIR_SECRET_GET_CLASS
386402 GVIR_TYPE_SECRET
387403 GVIR_TYPE_SECRET_HANDLE
404 GVirSecret
405 GVirSecretClass
388406 GVirSecretPrivate
389407 gvir_secret_get_type
390408 gvir_secret_handle_get_type
393411 <SECTION>
394412 <FILE>libvirt-gobject-storage-pool</FILE>
395413 <TITLE>GVirStoragePool</TITLE>
396 GVirStoragePool
397 GVirStoragePoolClass
398414 GVirStoragePoolState
399 GVirStoragePoolInfo
400415 gvir_storage_pool_get_name
401416 gvir_storage_pool_get_uuid
402417 gvir_storage_pool_get_active
433448 GVIR_TYPE_STORAGE_POOL
434449 GVIR_TYPE_STORAGE_POOL_HANDLE
435450 GVIR_TYPE_STORAGE_POOL_INFO
451 GVirStoragePool
452 GVirStoragePoolClass
453 GVirStoragePoolInfo
436454 GVirStoragePoolPrivate
437455 gvir_storage_pool_get_type
438456 gvir_storage_pool_handle_get_type
442460 <SECTION>
443461 <FILE>libvirt-gobject-storage-vol</FILE>
444462 <TITLE>GVirStorageVol</TITLE>
445 GVirStorageVol
446 GVirStorageVolClass
447463 GVirStorageVolType
448464 GVirStorageVolResizeFlags
449 GVirStorageVolInfo
450465 gvir_storage_vol_get_name
451466 gvir_storage_vol_get_path
452467 gvir_storage_vol_delete
464479 GVIR_TYPE_STORAGE_VOL
465480 GVIR_TYPE_STORAGE_VOL_HANDLE
466481 GVIR_TYPE_STORAGE_VOL_INFO
482 GVirStorageVol
483 GVirStorageVolClass
484 GVirStorageVolInfo
467485 GVirStorageVolPrivate
468486 gvir_storage_vol_get_type
469487 gvir_storage_vol_handle_get_type
473491 <SECTION>
474492 <FILE>libvirt-gobject-stream</FILE>
475493 <TITLE>GVirStream</TITLE>
476 GVirStream
477 GVirStreamClass
478494 GVirStreamSinkFunc
479495 GVirStreamSourceFunc
480496 GVirStreamIOCondition
493509 GVIR_STREAM_GET_CLASS
494510 GVIR_TYPE_STREAM
495511 GVIR_TYPE_STREAM_HANDLE
512 GVirStream
513 GVirStreamClass
496514 GVirStreamPrivate
497515 gvir_stream_get_type
498516 gvir_stream_handle_get_type
0 # Makefile.in generated by automake 1.13.2 from Makefile.am.
0 # Makefile.in generated by automake 1.13.4 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
8686 $(srcdir)/Makefile.am
8787 subdir = docs/libvirt-gobject
8888 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
89 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
90 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
91 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
92 $(top_srcdir)/m4/lt~obsolete.m4 \
89 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
90 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
91 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
92 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
9393 $(top_srcdir)/m4/manywarnings.m4 \
9494 $(top_srcdir)/m4/virt-compile-warnings.m4 \
9595 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
160160 GIO2_LIBS = @GIO2_LIBS@
161161 GLIB2_CFLAGS = @GLIB2_CFLAGS@
162162 GLIB2_LIBS = @GLIB2_LIBS@
163 GLIB2_REQUIRED = @GLIB2_REQUIRED@
163164 GLIB_MKENUMS = @GLIB_MKENUMS@
164165 GMSGFMT = @GMSGFMT@
165166 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
166167 GOBJECT2_LIBS = @GOBJECT2_LIBS@
167 GOBJECT_INTROSPECTION_CFLAGS = @GOBJECT_INTROSPECTION_CFLAGS@
168 GOBJECT_INTROSPECTION_LIBS = @GOBJECT_INTROSPECTION_LIBS@
169168 GREP = @GREP@
170169 GTHREAD2_CFLAGS = @GTHREAD2_CFLAGS@
171170 GTHREAD2_LIBS = @GTHREAD2_LIBS@
172171 GTKDOC_CHECK = @GTKDOC_CHECK@
172 GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
173173 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
174174 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
175175 GTKDOC_MKPDF = @GTKDOC_MKPDF@
176176 GTKDOC_REBASE = @GTKDOC_REBASE@
177 G_IR_COMPILER = @G_IR_COMPILER@
178 G_IR_SCANNER = @G_IR_SCANNER@
179177 HTML_DIR = @HTML_DIR@
180178 INSTALL = @INSTALL@
181179 INSTALL_DATA = @INSTALL_DATA@
190188 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
191189 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
192190 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
191 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
192 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
193 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
194 INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
195 INTROSPECTION_LIBS = @INTROSPECTION_LIBS@
196 INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@
197 INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
198 INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
193199 LD = @LD@
194200 LDFLAGS = @LDFLAGS@
195201 LIBOBJS = @LIBOBJS@
280286 includedir = @includedir@
281287 infodir = @infodir@
282288 install_sh = @install_sh@
289 installed_test_metadir = @installed_test_metadir@
290 installed_testdir = @installed_testdir@
283291 intltool__v_merge_options_ = @intltool__v_merge_options_@
284292 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
285293 libdir = @libdir@
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirConnection</title>
4 <title>Libvirt-gobject Reference Manual: GVirConnection</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="ch01.html" title="Libvirt-gobject">
99 <link rel="next" href="GVirDomain.html" title="GVirDomain">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="ch01.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gobject Reference Manual</th>
20 <td><a accesskey="n" href="GVirDomain.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirConnection.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirConnection.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirConnection.object-hierarchy" class="shortcut">Object Hierarchy</a>
28  | 
29 <a href="#GVirConnection.properties" class="shortcut">Properties</a>
30  | 
31 <a href="#GVirConnection.signals" class="shortcut">Signals</a>
32 </td></tr>
33 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirConnection.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirConnection.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
19 <a href="#GVirConnection.properties" class="shortcut">Properties</a></span><span id="nav_signals">  <span class="dim">|</span> 
20 <a href="#GVirConnection.signals" class="shortcut">Signals</a></span>
21 </td>
22 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
23 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
24 <td><a accesskey="p" href="ch01.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
25 <td><a accesskey="n" href="GVirDomain.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
26 </tr></table>
3427 <div class="refentry">
3528 <a name="GVirConnection"></a><div class="titlepage"></div>
3629 <div class="refnamediv"><table width="100%"><tr>
3831 <h2><span class="refentrytitle"><a name="GVirConnection.top_of_page"></a>GVirConnection</span></h2>
3932 <p>GVirConnection</p>
4033 </td>
41 <td valign="top" align="right"></td>
34 <td class="gallery_image" valign="top" align="right"></td>
4235 </tr></table></div>
43 <div class="refsynopsisdiv">
44 <a name="GVirConnection.synopsis"></a><h2>Synopsis</h2>
45 <a name="GVirNodeInfo"></a><pre class="synopsis">struct <a class="link" href="GVirConnection.html#GVirNodeInfo-struct" title="struct GVirNodeInfo">GVirNodeInfo</a>;
46 struct <a class="link" href="GVirConnection.html#GVirConnection-struct" title="struct GVirConnection">GVirConnection</a>;
47 struct <a class="link" href="GVirConnection.html#GVirConnectionClass" title="struct GVirConnectionClass">GVirConnectionClass</a>;
48 <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="returnvalue">GVirConnection</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-new" title="gvir_connection_new ()">gvir_connection_new</a> (<em class="parameter"><code>const <span class="type">char</span> *uri</code></em>);
49 <span class="returnvalue">gboolean</span> <a class="link" href="GVirConnection.html#gvir-connection-open" title="gvir_connection_open ()">gvir_connection_open</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
50 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
51 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
52 <span class="returnvalue">gboolean</span> <a class="link" href="GVirConnection.html#gvir-connection-open-read-only" title="gvir_connection_open_read_only ()">gvir_connection_open_read_only</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
53 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
54 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
55 <span class="returnvalue">void</span> <a class="link" href="GVirConnection.html#gvir-connection-open-async" title="gvir_connection_open_async ()">gvir_connection_open_async</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
56 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
57 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
58 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
59 <span class="returnvalue">gboolean</span> <a class="link" href="GVirConnection.html#gvir-connection-open-finish" title="gvir_connection_open_finish ()">gvir_connection_open_finish</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
60 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
61 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
62 <span class="returnvalue">void</span> <a class="link" href="GVirConnection.html#gvir-connection-open-read-only-async" title="gvir_connection_open_read_only_async ()">gvir_connection_open_read_only_async</a>
63 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
64 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
65 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
66 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
67 <span class="returnvalue">gboolean</span> <a class="link" href="GVirConnection.html#gvir-connection-open-read-only-finish" title="gvir_connection_open_read_only_finish ()">gvir_connection_open_read_only_finish</a>
68 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
69 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
70 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
71 <span class="returnvalue">gboolean</span> <a class="link" href="GVirConnection.html#gvir-connection-is-open" title="gvir_connection_is_open ()">gvir_connection_is_open</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);
72 <span class="returnvalue">gboolean</span> <a class="link" href="GVirConnection.html#gvir-connection-is-read-only" title="gvir_connection_is_read_only ()">gvir_connection_is_read_only</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);
73 <span class="returnvalue">void</span> <a class="link" href="GVirConnection.html#gvir-connection-close" title="gvir_connection_close ()">gvir_connection_close</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);
74 <span class="returnvalue">gboolean</span> <a class="link" href="GVirConnection.html#gvir-connection-fetch-domains" title="gvir_connection_fetch_domains ()">gvir_connection_fetch_domains</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
75 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
76 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
77 <span class="returnvalue">void</span> <a class="link" href="GVirConnection.html#gvir-connection-fetch-domains-async" title="gvir_connection_fetch_domains_async ()">gvir_connection_fetch_domains_async</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
78 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
79 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
80 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
81 <span class="returnvalue">gboolean</span> <a class="link" href="GVirConnection.html#gvir-connection-fetch-domains-finish" title="gvir_connection_fetch_domains_finish ()">gvir_connection_fetch_domains_finish</a>
82 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
83 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
84 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
85 const <span class="returnvalue">gchar</span> * <a class="link" href="GVirConnection.html#gvir-connection-get-uri" title="gvir_connection_get_uri ()">gvir_connection_get_uri</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);
86 <span class="returnvalue">gchar</span> * <a class="link" href="GVirConnection.html#gvir-connection-get-hypervisor-name" title="gvir_connection_get_hypervisor_name ()">gvir_connection_get_hypervisor_name</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
87 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
88 <span class="returnvalue">gulong</span> <a class="link" href="GVirConnection.html#gvir-connection-get-version" title="gvir_connection_get_version ()">gvir_connection_get_version</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
89 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
90 <span class="returnvalue">GList</span> * <a class="link" href="GVirConnection.html#gvir-connection-get-domains" title="gvir_connection_get_domains ()">gvir_connection_get_domains</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);
91 <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-get-domain" title="gvir_connection_get_domain ()">gvir_connection_get_domain</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
92 <em class="parameter"><code>const <span class="type">gchar</span> *uuid</code></em>);
93 <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-find-domain-by-id" title="gvir_connection_find_domain_by_id ()">gvir_connection_find_domain_by_id</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
94 <em class="parameter"><code><span class="type">gint</span> id</code></em>);
95 <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-find-domain-by-name" title="gvir_connection_find_domain_by_name ()">gvir_connection_find_domain_by_name</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
96 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);
97 <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-create-domain" title="gvir_connection_create_domain ()">gvir_connection_create_domain</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
98 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *conf</code></em>,
99 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
100 <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-start-domain" title="gvir_connection_start_domain ()">gvir_connection_start_domain</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
101 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *conf</code></em>,
102 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
103 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
104 <span class="returnvalue">GList</span> * <a class="link" href="GVirConnection.html#gvir-connection-get-interfaces" title="gvir_connection_get_interfaces ()">gvir_connection_get_interfaces</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);
105 <a class="link" href="Libvirt-gobject-GVir.html#GVirInterface"><span class="returnvalue">GVirInterface</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-get-interface" title="gvir_connection_get_interface ()">gvir_connection_get_interface</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
106 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);
107 <a class="link" href="Libvirt-gobject-GVir.html#GVirInterface"><span class="returnvalue">GVirInterface</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-find-interface-by-mac" title="gvir_connection_find_interface_by_mac ()">gvir_connection_find_interface_by_mac</a>
108 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
109 <em class="parameter"><code>const <span class="type">gchar</span> *macaddr</code></em>);
110 <span class="returnvalue">GList</span> * <a class="link" href="GVirConnection.html#gvir-connection-get-networks" title="gvir_connection_get_networks ()">gvir_connection_get_networks</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);
111 <a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="returnvalue">GVirNetwork</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-get-network" title="gvir_connection_get_network ()">gvir_connection_get_network</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
112 <em class="parameter"><code>const <span class="type">gchar</span> *uuid</code></em>);
113 <a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="returnvalue">GVirNetwork</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-find-network-by-name" title="gvir_connection_find_network_by_name ()">gvir_connection_find_network_by_name</a>
114 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
115 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);
116 <span class="returnvalue">GList</span> * <a class="link" href="GVirConnection.html#gvir-connection-get-network-filters" title="gvir_connection_get_network_filters ()">gvir_connection_get_network_filters</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);
117 <a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="returnvalue">GVirNetworkFilter</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-get-network-filter" title="gvir_connection_get_network_filter ()">gvir_connection_get_network_filter</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
118 <em class="parameter"><code>const <span class="type">gchar</span> *uuid</code></em>);
119 <a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="returnvalue">GVirNetworkFilter</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-find-network-filter-by-name" title="gvir_connection_find_network_filter_by_name ()">gvir_connection_find_network_filter_by_name</a>
120 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
121 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);
122 <span class="returnvalue">GList</span> * <a class="link" href="GVirConnection.html#gvir-connection-get-node-devices" title="gvir_connection_get_node_devices ()">gvir_connection_get_node_devices</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);
123 <a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice"><span class="returnvalue">GVirNodeDevice</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-get-node-device" title="gvir_connection_get_node_device ()">gvir_connection_get_node_device</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
124 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);
125 <span class="returnvalue">GList</span> * <a class="link" href="GVirConnection.html#gvir-connection-get-secrets" title="gvir_connection_get_secrets ()">gvir_connection_get_secrets</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);
126 <a class="link" href="GVirSecret.html" title="GVirSecret"><span class="returnvalue">GVirSecret</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-get-secret" title="gvir_connection_get_secret ()">gvir_connection_get_secret</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
127 <em class="parameter"><code>const <span class="type">gchar</span> *uuid</code></em>);
128 <span class="returnvalue">gboolean</span> <a class="link" href="GVirConnection.html#gvir-connection-fetch-storage-pools" title="gvir_connection_fetch_storage_pools ()">gvir_connection_fetch_storage_pools</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
129 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
130 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
131 <span class="returnvalue">void</span> <a class="link" href="GVirConnection.html#gvir-connection-fetch-storage-pools-async" title="gvir_connection_fetch_storage_pools_async ()">gvir_connection_fetch_storage_pools_async</a>
132 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
133 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
134 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
135 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
136 <span class="returnvalue">gboolean</span> <a class="link" href="GVirConnection.html#gvir-connection-fetch-storage-pools-finish" title="gvir_connection_fetch_storage_pools_finish ()">gvir_connection_fetch_storage_pools_finish</a>
137 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
138 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
139 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
140 <span class="returnvalue">GList</span> * <a class="link" href="GVirConnection.html#gvir-connection-get-storage-pools" title="gvir_connection_get_storage_pools ()">gvir_connection_get_storage_pools</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);
141 <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="returnvalue">GVirStoragePool</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-get-storage-pool" title="gvir_connection_get_storage_pool ()">gvir_connection_get_storage_pool</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
142 <em class="parameter"><code>const <span class="type">gchar</span> *uuid</code></em>);
143 <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="returnvalue">GVirStoragePool</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-find-storage-pool-by-name" title="gvir_connection_find_storage_pool_by_name ()">gvir_connection_find_storage_pool_by_name</a>
144 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
145 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);
146 <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="returnvalue">GVirStoragePool</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-create-storage-pool" title="gvir_connection_create_storage_pool ()">gvir_connection_create_storage_pool</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
147 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStoragePool.html"><span class="type">GVirConfigStoragePool</span></a> *conf</code></em>,
148 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
149 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
150 <a class="link" href="GVirStream.html" title="GVirStream"><span class="returnvalue">GVirStream</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-get-stream" title="gvir_connection_get_stream ()">gvir_connection_get_stream</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
151 <em class="parameter"><code><span class="type">guint</span> flags</code></em>);
152 <a class="link" href="GVirConnection.html#GVirNodeInfo"><span class="returnvalue">GVirNodeInfo</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-get-node-info" title="gvir_connection_get_node_info ()">gvir_connection_get_node_info</a> (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
153 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
154 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigCapabilities.html"><span class="returnvalue">GVirConfigCapabilities</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-get-capabilities" title="gvir_connection_get_capabilities ()">gvir_connection_get_capabilities</a>
155 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
156 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
157 <span class="returnvalue">void</span> <a class="link" href="GVirConnection.html#gvir-connection-get-capabilities-async" title="gvir_connection_get_capabilities_async ()">gvir_connection_get_capabilities_async</a>
158 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
159 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
160 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
161 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
162 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigCapabilities.html"><span class="returnvalue">GVirConfigCapabilities</span></a> * <a class="link" href="GVirConnection.html#gvir-connection-get-capabilities-finish" title="gvir_connection_get_capabilities_finish ()">gvir_connection_get_capabilities_finish</a>
163 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
164 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
165 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
166 <span class="returnvalue">gboolean</span> <a class="link" href="GVirConnection.html#gvir-connection-restore-domain-from-file" title="gvir_connection_restore_domain_from_file ()">gvir_connection_restore_domain_from_file</a>
167 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
168 <em class="parameter"><code><span class="type">gchar</span> *filename</code></em>,
169 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *custom_conf</code></em>,
170 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
171 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
172 <span class="returnvalue">void</span> <a class="link" href="GVirConnection.html#gvir-connection-restore-domain-from-file-async" title="gvir_connection_restore_domain_from_file_async ()">gvir_connection_restore_domain_from_file_async</a>
173 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
174 <em class="parameter"><code><span class="type">gchar</span> *filename</code></em>,
175 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *custom_conf</code></em>,
176 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
177 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
178 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
179 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
180 <span class="returnvalue">gboolean</span> <a class="link" href="GVirConnection.html#gvir-connection-restore-domain-from-file-finish" title="gvir_connection_restore_domain_from_file_finish ()">gvir_connection_restore_domain_from_file_finish</a>
181 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
182 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
183 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
184 </pre>
185 </div>
18636 <div class="refsect1">
187 <a name="GVirConnection.object-hierarchy"></a><h2>Object Hierarchy</h2>
188 <pre class="synopsis">
189 GBoxed
190 +----GVirNodeInfo
191 </pre>
192 <pre class="synopsis">
193 GObject
194 +----GVirConnection
195 </pre>
37 <a name="GVirConnection.functions"></a><h2>Functions</h2>
38 <div class="informaltable"><table width="100%" border="0">
39 <colgroup>
40 <col width="150px" class="functions_return">
41 <col class="functions_name">
42 </colgroup>
43 <tbody>
44 <tr>
45 <td class="function_type">
46 <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="returnvalue">GVirConnection</span></a> *
47 </td>
48 <td class="function_name">
49 <a class="link" href="GVirConnection.html#gvir-connection-new" title="gvir_connection_new ()">gvir_connection_new</a> <span class="c_punctuation">()</span>
50 </td>
51 </tr>
52 <tr>
53 <td class="function_type">
54 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
55 </td>
56 <td class="function_name">
57 <a class="link" href="GVirConnection.html#gvir-connection-open" title="gvir_connection_open ()">gvir_connection_open</a> <span class="c_punctuation">()</span>
58 </td>
59 </tr>
60 <tr>
61 <td class="function_type">
62 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
63 </td>
64 <td class="function_name">
65 <a class="link" href="GVirConnection.html#gvir-connection-open-read-only" title="gvir_connection_open_read_only ()">gvir_connection_open_read_only</a> <span class="c_punctuation">()</span>
66 </td>
67 </tr>
68 <tr>
69 <td class="function_type">
70 <span class="returnvalue">void</span>
71 </td>
72 <td class="function_name">
73 <a class="link" href="GVirConnection.html#gvir-connection-open-async" title="gvir_connection_open_async ()">gvir_connection_open_async</a> <span class="c_punctuation">()</span>
74 </td>
75 </tr>
76 <tr>
77 <td class="function_type">
78 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
79 </td>
80 <td class="function_name">
81 <a class="link" href="GVirConnection.html#gvir-connection-open-finish" title="gvir_connection_open_finish ()">gvir_connection_open_finish</a> <span class="c_punctuation">()</span>
82 </td>
83 </tr>
84 <tr>
85 <td class="function_type">
86 <span class="returnvalue">void</span>
87 </td>
88 <td class="function_name">
89 <a class="link" href="GVirConnection.html#gvir-connection-open-read-only-async" title="gvir_connection_open_read_only_async ()">gvir_connection_open_read_only_async</a> <span class="c_punctuation">()</span>
90 </td>
91 </tr>
92 <tr>
93 <td class="function_type">
94 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
95 </td>
96 <td class="function_name">
97 <a class="link" href="GVirConnection.html#gvir-connection-open-read-only-finish" title="gvir_connection_open_read_only_finish ()">gvir_connection_open_read_only_finish</a> <span class="c_punctuation">()</span>
98 </td>
99 </tr>
100 <tr>
101 <td class="function_type">
102 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
103 </td>
104 <td class="function_name">
105 <a class="link" href="GVirConnection.html#gvir-connection-is-open" title="gvir_connection_is_open ()">gvir_connection_is_open</a> <span class="c_punctuation">()</span>
106 </td>
107 </tr>
108 <tr>
109 <td class="function_type">
110 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
111 </td>
112 <td class="function_name">
113 <a class="link" href="GVirConnection.html#gvir-connection-is-read-only" title="gvir_connection_is_read_only ()">gvir_connection_is_read_only</a> <span class="c_punctuation">()</span>
114 </td>
115 </tr>
116 <tr>
117 <td class="function_type">
118 <span class="returnvalue">void</span>
119 </td>
120 <td class="function_name">
121 <a class="link" href="GVirConnection.html#gvir-connection-close" title="gvir_connection_close ()">gvir_connection_close</a> <span class="c_punctuation">()</span>
122 </td>
123 </tr>
124 <tr>
125 <td class="function_type">
126 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
127 </td>
128 <td class="function_name">
129 <a class="link" href="GVirConnection.html#gvir-connection-fetch-domains" title="gvir_connection_fetch_domains ()">gvir_connection_fetch_domains</a> <span class="c_punctuation">()</span>
130 </td>
131 </tr>
132 <tr>
133 <td class="function_type">
134 <span class="returnvalue">void</span>
135 </td>
136 <td class="function_name">
137 <a class="link" href="GVirConnection.html#gvir-connection-fetch-domains-async" title="gvir_connection_fetch_domains_async ()">gvir_connection_fetch_domains_async</a> <span class="c_punctuation">()</span>
138 </td>
139 </tr>
140 <tr>
141 <td class="function_type">
142 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
143 </td>
144 <td class="function_name">
145 <a class="link" href="GVirConnection.html#gvir-connection-fetch-domains-finish" title="gvir_connection_fetch_domains_finish ()">gvir_connection_fetch_domains_finish</a> <span class="c_punctuation">()</span>
146 </td>
147 </tr>
148 <tr>
149 <td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
150 </td>
151 <td class="function_name">
152 <a class="link" href="GVirConnection.html#gvir-connection-get-uri" title="gvir_connection_get_uri ()">gvir_connection_get_uri</a> <span class="c_punctuation">()</span>
153 </td>
154 </tr>
155 <tr>
156 <td class="function_type">
157 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
158 </td>
159 <td class="function_name">
160 <a class="link" href="GVirConnection.html#gvir-connection-get-hypervisor-name" title="gvir_connection_get_hypervisor_name ()">gvir_connection_get_hypervisor_name</a> <span class="c_punctuation">()</span>
161 </td>
162 </tr>
163 <tr>
164 <td class="function_type">
165 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gulong"><span class="returnvalue">gulong</span></a>
166 </td>
167 <td class="function_name">
168 <a class="link" href="GVirConnection.html#gvir-connection-get-version" title="gvir_connection_get_version ()">gvir_connection_get_version</a> <span class="c_punctuation">()</span>
169 </td>
170 </tr>
171 <tr>
172 <td class="function_type">
173 <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
174 </td>
175 <td class="function_name">
176 <a class="link" href="GVirConnection.html#gvir-connection-get-domains" title="gvir_connection_get_domains ()">gvir_connection_get_domains</a> <span class="c_punctuation">()</span>
177 </td>
178 </tr>
179 <tr>
180 <td class="function_type">
181 <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> *
182 </td>
183 <td class="function_name">
184 <a class="link" href="GVirConnection.html#gvir-connection-get-domain" title="gvir_connection_get_domain ()">gvir_connection_get_domain</a> <span class="c_punctuation">()</span>
185 </td>
186 </tr>
187 <tr>
188 <td class="function_type">
189 <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> *
190 </td>
191 <td class="function_name">
192 <a class="link" href="GVirConnection.html#gvir-connection-find-domain-by-id" title="gvir_connection_find_domain_by_id ()">gvir_connection_find_domain_by_id</a> <span class="c_punctuation">()</span>
193 </td>
194 </tr>
195 <tr>
196 <td class="function_type">
197 <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> *
198 </td>
199 <td class="function_name">
200 <a class="link" href="GVirConnection.html#gvir-connection-find-domain-by-name" title="gvir_connection_find_domain_by_name ()">gvir_connection_find_domain_by_name</a> <span class="c_punctuation">()</span>
201 </td>
202 </tr>
203 <tr>
204 <td class="function_type">
205 <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> *
206 </td>
207 <td class="function_name">
208 <a class="link" href="GVirConnection.html#gvir-connection-create-domain" title="gvir_connection_create_domain ()">gvir_connection_create_domain</a> <span class="c_punctuation">()</span>
209 </td>
210 </tr>
211 <tr>
212 <td class="function_type">
213 <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> *
214 </td>
215 <td class="function_name">
216 <a class="link" href="GVirConnection.html#gvir-connection-start-domain" title="gvir_connection_start_domain ()">gvir_connection_start_domain</a> <span class="c_punctuation">()</span>
217 </td>
218 </tr>
219 <tr>
220 <td class="function_type">
221 <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
222 </td>
223 <td class="function_name">
224 <a class="link" href="GVirConnection.html#gvir-connection-get-interfaces" title="gvir_connection_get_interfaces ()">gvir_connection_get_interfaces</a> <span class="c_punctuation">()</span>
225 </td>
226 </tr>
227 <tr>
228 <td class="function_type">
229 <a class="link" href="GVirInterface.html" title="GVirInterface"><span class="returnvalue">GVirInterface</span></a> *
230 </td>
231 <td class="function_name">
232 <a class="link" href="GVirConnection.html#gvir-connection-get-interface" title="gvir_connection_get_interface ()">gvir_connection_get_interface</a> <span class="c_punctuation">()</span>
233 </td>
234 </tr>
235 <tr>
236 <td class="function_type">
237 <a class="link" href="GVirInterface.html" title="GVirInterface"><span class="returnvalue">GVirInterface</span></a> *
238 </td>
239 <td class="function_name">
240 <a class="link" href="GVirConnection.html#gvir-connection-find-interface-by-mac" title="gvir_connection_find_interface_by_mac ()">gvir_connection_find_interface_by_mac</a> <span class="c_punctuation">()</span>
241 </td>
242 </tr>
243 <tr>
244 <td class="function_type">
245 <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
246 </td>
247 <td class="function_name">
248 <a class="link" href="GVirConnection.html#gvir-connection-get-networks" title="gvir_connection_get_networks ()">gvir_connection_get_networks</a> <span class="c_punctuation">()</span>
249 </td>
250 </tr>
251 <tr>
252 <td class="function_type">
253 <a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="returnvalue">GVirNetwork</span></a> *
254 </td>
255 <td class="function_name">
256 <a class="link" href="GVirConnection.html#gvir-connection-get-network" title="gvir_connection_get_network ()">gvir_connection_get_network</a> <span class="c_punctuation">()</span>
257 </td>
258 </tr>
259 <tr>
260 <td class="function_type">
261 <a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="returnvalue">GVirNetwork</span></a> *
262 </td>
263 <td class="function_name">
264 <a class="link" href="GVirConnection.html#gvir-connection-find-network-by-name" title="gvir_connection_find_network_by_name ()">gvir_connection_find_network_by_name</a> <span class="c_punctuation">()</span>
265 </td>
266 </tr>
267 <tr>
268 <td class="function_type">
269 <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
270 </td>
271 <td class="function_name">
272 <a class="link" href="GVirConnection.html#gvir-connection-get-network-filters" title="gvir_connection_get_network_filters ()">gvir_connection_get_network_filters</a> <span class="c_punctuation">()</span>
273 </td>
274 </tr>
275 <tr>
276 <td class="function_type">
277 <a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="returnvalue">GVirNetworkFilter</span></a> *
278 </td>
279 <td class="function_name">
280 <a class="link" href="GVirConnection.html#gvir-connection-get-network-filter" title="gvir_connection_get_network_filter ()">gvir_connection_get_network_filter</a> <span class="c_punctuation">()</span>
281 </td>
282 </tr>
283 <tr>
284 <td class="function_type">
285 <a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="returnvalue">GVirNetworkFilter</span></a> *
286 </td>
287 <td class="function_name">
288 <a class="link" href="GVirConnection.html#gvir-connection-find-network-filter-by-name" title="gvir_connection_find_network_filter_by_name ()">gvir_connection_find_network_filter_by_name</a> <span class="c_punctuation">()</span>
289 </td>
290 </tr>
291 <tr>
292 <td class="function_type">
293 <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
294 </td>
295 <td class="function_name">
296 <a class="link" href="GVirConnection.html#gvir-connection-get-node-devices" title="gvir_connection_get_node_devices ()">gvir_connection_get_node_devices</a> <span class="c_punctuation">()</span>
297 </td>
298 </tr>
299 <tr>
300 <td class="function_type">
301 <a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice"><span class="returnvalue">GVirNodeDevice</span></a> *
302 </td>
303 <td class="function_name">
304 <a class="link" href="GVirConnection.html#gvir-connection-get-node-device" title="gvir_connection_get_node_device ()">gvir_connection_get_node_device</a> <span class="c_punctuation">()</span>
305 </td>
306 </tr>
307 <tr>
308 <td class="function_type">
309 <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
310 </td>
311 <td class="function_name">
312 <a class="link" href="GVirConnection.html#gvir-connection-get-secrets" title="gvir_connection_get_secrets ()">gvir_connection_get_secrets</a> <span class="c_punctuation">()</span>
313 </td>
314 </tr>
315 <tr>
316 <td class="function_type">
317 <a class="link" href="GVirSecret.html" title="GVirSecret"><span class="returnvalue">GVirSecret</span></a> *
318 </td>
319 <td class="function_name">
320 <a class="link" href="GVirConnection.html#gvir-connection-get-secret" title="gvir_connection_get_secret ()">gvir_connection_get_secret</a> <span class="c_punctuation">()</span>
321 </td>
322 </tr>
323 <tr>
324 <td class="function_type">
325 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
326 </td>
327 <td class="function_name">
328 <a class="link" href="GVirConnection.html#gvir-connection-fetch-storage-pools" title="gvir_connection_fetch_storage_pools ()">gvir_connection_fetch_storage_pools</a> <span class="c_punctuation">()</span>
329 </td>
330 </tr>
331 <tr>
332 <td class="function_type">
333 <span class="returnvalue">void</span>
334 </td>
335 <td class="function_name">
336 <a class="link" href="GVirConnection.html#gvir-connection-fetch-storage-pools-async" title="gvir_connection_fetch_storage_pools_async ()">gvir_connection_fetch_storage_pools_async</a> <span class="c_punctuation">()</span>
337 </td>
338 </tr>
339 <tr>
340 <td class="function_type">
341 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
342 </td>
343 <td class="function_name">
344 <a class="link" href="GVirConnection.html#gvir-connection-fetch-storage-pools-finish" title="gvir_connection_fetch_storage_pools_finish ()">gvir_connection_fetch_storage_pools_finish</a> <span class="c_punctuation">()</span>
345 </td>
346 </tr>
347 <tr>
348 <td class="function_type">
349 <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
350 </td>
351 <td class="function_name">
352 <a class="link" href="GVirConnection.html#gvir-connection-get-storage-pools" title="gvir_connection_get_storage_pools ()">gvir_connection_get_storage_pools</a> <span class="c_punctuation">()</span>
353 </td>
354 </tr>
355 <tr>
356 <td class="function_type">
357 <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="returnvalue">GVirStoragePool</span></a> *
358 </td>
359 <td class="function_name">
360 <a class="link" href="GVirConnection.html#gvir-connection-get-storage-pool" title="gvir_connection_get_storage_pool ()">gvir_connection_get_storage_pool</a> <span class="c_punctuation">()</span>
361 </td>
362 </tr>
363 <tr>
364 <td class="function_type">
365 <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="returnvalue">GVirStoragePool</span></a> *
366 </td>
367 <td class="function_name">
368 <a class="link" href="GVirConnection.html#gvir-connection-find-storage-pool-by-name" title="gvir_connection_find_storage_pool_by_name ()">gvir_connection_find_storage_pool_by_name</a> <span class="c_punctuation">()</span>
369 </td>
370 </tr>
371 <tr>
372 <td class="function_type">
373 <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="returnvalue">GVirStoragePool</span></a> *
374 </td>
375 <td class="function_name">
376 <a class="link" href="GVirConnection.html#gvir-connection-create-storage-pool" title="gvir_connection_create_storage_pool ()">gvir_connection_create_storage_pool</a> <span class="c_punctuation">()</span>
377 </td>
378 </tr>
379 <tr>
380 <td class="function_type">
381 <a class="link" href="GVirStream.html" title="GVirStream"><span class="returnvalue">GVirStream</span></a> *
382 </td>
383 <td class="function_name">
384 <a class="link" href="GVirConnection.html#gvir-connection-get-stream" title="gvir_connection_get_stream ()">gvir_connection_get_stream</a> <span class="c_punctuation">()</span>
385 </td>
386 </tr>
387 <tr>
388 <td class="function_type">
389 <a class="link" href="GVirConnection.html#GVirNodeInfo"><span class="returnvalue">GVirNodeInfo</span></a> *
390 </td>
391 <td class="function_name">
392 <a class="link" href="GVirConnection.html#gvir-connection-get-node-info" title="gvir_connection_get_node_info ()">gvir_connection_get_node_info</a> <span class="c_punctuation">()</span>
393 </td>
394 </tr>
395 <tr>
396 <td class="function_type">
397 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigCapabilities.html"><span class="returnvalue">GVirConfigCapabilities</span></a> *
398 </td>
399 <td class="function_name">
400 <a class="link" href="GVirConnection.html#gvir-connection-get-capabilities" title="gvir_connection_get_capabilities ()">gvir_connection_get_capabilities</a> <span class="c_punctuation">()</span>
401 </td>
402 </tr>
403 <tr>
404 <td class="function_type">
405 <span class="returnvalue">void</span>
406 </td>
407 <td class="function_name">
408 <a class="link" href="GVirConnection.html#gvir-connection-get-capabilities-async" title="gvir_connection_get_capabilities_async ()">gvir_connection_get_capabilities_async</a> <span class="c_punctuation">()</span>
409 </td>
410 </tr>
411 <tr>
412 <td class="function_type">
413 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigCapabilities.html"><span class="returnvalue">GVirConfigCapabilities</span></a> *
414 </td>
415 <td class="function_name">
416 <a class="link" href="GVirConnection.html#gvir-connection-get-capabilities-finish" title="gvir_connection_get_capabilities_finish ()">gvir_connection_get_capabilities_finish</a> <span class="c_punctuation">()</span>
417 </td>
418 </tr>
419 <tr>
420 <td class="function_type">
421 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
422 </td>
423 <td class="function_name">
424 <a class="link" href="GVirConnection.html#gvir-connection-restore-domain-from-file" title="gvir_connection_restore_domain_from_file ()">gvir_connection_restore_domain_from_file</a> <span class="c_punctuation">()</span>
425 </td>
426 </tr>
427 <tr>
428 <td class="function_type">
429 <span class="returnvalue">void</span>
430 </td>
431 <td class="function_name">
432 <a class="link" href="GVirConnection.html#gvir-connection-restore-domain-from-file-async" title="gvir_connection_restore_domain_from_file_async ()">gvir_connection_restore_domain_from_file_async</a> <span class="c_punctuation">()</span>
433 </td>
434 </tr>
435 <tr>
436 <td class="function_type">
437 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
438 </td>
439 <td class="function_name">
440 <a class="link" href="GVirConnection.html#gvir-connection-restore-domain-from-file-finish" title="gvir_connection_restore_domain_from_file_finish ()">gvir_connection_restore_domain_from_file_finish</a> <span class="c_punctuation">()</span>
441 </td>
442 </tr>
443 </tbody>
444 </table></div>
196445 </div>
197446 <div class="refsect1">
198447 <a name="GVirConnection.properties"></a><h2>Properties</h2>
199 <pre class="synopsis">
200 "<a class="link" href="GVirConnection.html#GVirConnection--handle" title='The "handle" property'>handle</a>" <span class="type">GVirConnectionHandle</span>* : Read / Write / Construct Only
201 "<a class="link" href="GVirConnection.html#GVirConnection--uri" title='The "uri" property'>uri</a>" <span class="type">gchar</span>* : Read / Write / Construct Only
202 </pre>
448 <div class="informaltable"><table border="0">
449 <colgroup>
450 <col width="150px" class="properties_type">
451 <col width="300px" class="properties_name">
452 <col width="200px" class="properties_flags">
453 </colgroup>
454 <tbody>
455 <tr>
456 <td class="property_type">
457 <span class="type">GVirConnectionHandle</span> *</td>
458 <td class="property_name"><a class="link" href="GVirConnection.html#GVirConnection--handle" title="The “handle” property">handle</a></td>
459 <td class="property_flags">Read / Write / Construct Only</td>
460 </tr>
461 <tr>
462 <td class="property_type">
463 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
464 <td class="property_name"><a class="link" href="GVirConnection.html#GVirConnection--uri" title="The “uri” property">uri</a></td>
465 <td class="property_flags">Read / Write / Construct Only</td>
466 </tr>
467 </tbody>
468 </table></div>
203469 </div>
204470 <div class="refsect1">
205471 <a name="GVirConnection.signals"></a><h2>Signals</h2>
206 <pre class="synopsis">
207 "<a class="link" href="GVirConnection.html#GVirConnection-connection-closed" title='The "connection-closed" signal'>connection-closed</a>" : <code class="literal">Run First</code>
208 "<a class="link" href="GVirConnection.html#GVirConnection-connection-opened" title='The "connection-opened" signal'>connection-opened</a>" : <code class="literal">Run First</code>
209 "<a class="link" href="GVirConnection.html#GVirConnection-domain-added" title='The "domain-added" signal'>domain-added</a>" : <code class="literal">Run First</code>
210 "<a class="link" href="GVirConnection.html#GVirConnection-domain-removed" title='The "domain-removed" signal'>domain-removed</a>" : <code class="literal">Run First</code>
472 <div class="informaltable"><table border="0">
473 <colgroup>
474 <col width="150px" class="signals_return">
475 <col width="300px" class="signals_name">
476 <col width="200px" class="signals_flags">
477 </colgroup>
478 <tbody>
479 <tr>
480 <td class="signal_type"><span class="returnvalue">void</span></td>
481 <td class="signal_name"><a class="link" href="GVirConnection.html#GVirConnection-connection-closed" title="The “connection-closed” signal">connection-closed</a></td>
482 <td class="signal_flags">Run First</td>
483 </tr>
484 <tr>
485 <td class="signal_type"><span class="returnvalue">void</span></td>
486 <td class="signal_name"><a class="link" href="GVirConnection.html#GVirConnection-connection-opened" title="The “connection-opened” signal">connection-opened</a></td>
487 <td class="signal_flags">Run First</td>
488 </tr>
489 <tr>
490 <td class="signal_type"><span class="returnvalue">void</span></td>
491 <td class="signal_name"><a class="link" href="GVirConnection.html#GVirConnection-domain-added" title="The “domain-added” signal">domain-added</a></td>
492 <td class="signal_flags">Run First</td>
493 </tr>
494 <tr>
495 <td class="signal_type"><span class="returnvalue">void</span></td>
496 <td class="signal_name"><a class="link" href="GVirConnection.html#GVirConnection-domain-removed" title="The “domain-removed” signal">domain-removed</a></td>
497 <td class="signal_flags">Run First</td>
498 </tr>
499 </tbody>
500 </table></div>
501 </div>
502 <a name="GVirNodeInfo"></a><div class="refsect1">
503 <a name="GVirConnection.object-hierarchy"></a><h2>Object Hierarchy</h2>
504 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html">GBoxed</a>
505 <span class="lineart">╰──</span> GVirNodeInfo
506 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
507 <span class="lineart">╰──</span> GVirConnection
211508 </pre>
212509 </div>
213510 <div class="refsect1">
214511 <a name="GVirConnection.description"></a><h2>Description</h2>
215512 </div>
216513 <div class="refsect1">
217 <a name="GVirConnection.details"></a><h2>Details</h2>
218 <div class="refsect2">
219 <a name="GVirNodeInfo-struct"></a><h3>struct GVirNodeInfo</h3>
220 <pre class="programlisting">struct GVirNodeInfo {
221 gchar model[32]; /* string indicating the CPU model */
222 gulong memory; /* memory size in kilobytes */
223 guint cpus; /* the number of active CPUs */
224 guint mhz; /* expected CPU frequency */
225 guint nodes; /* the number of NUMA cell, 1 for unusual NUMA topologies or uniform memo */
226 guint sockets; /* number of CPU sockets per node if nodes &gt; 1, total number of CPU socke */
227 guint cores; /* number of cores per socket */
228 guint threads; /* number of threads per core */
229 };
230 </pre>
231 </div>
232 <hr>
233 <div class="refsect2">
234 <a name="GVirConnection-struct"></a><h3>struct GVirConnection</h3>
235 <pre class="programlisting">struct GVirConnection;</pre>
236 </div>
237 <hr>
238 <div class="refsect2">
239 <a name="GVirConnectionClass"></a><h3>struct GVirConnectionClass</h3>
240 <pre class="programlisting">struct GVirConnectionClass {
241 GObjectClass parent_class;
242
243 /* signals */
244 void (*connection_opened)(GVirConnection *conn);
245 void (*connection_closed)(GVirConnection *conn);
246
247 void (*domain_added)(GVirConnection *conn, GVirDomain *dom);
248 void (*domain_removed)(GVirConnection *conn, GVirDomain *dom);
249
250 GVirStream *(*stream_new)(GVirConnection *conn, gpointer handle);
251
252 gpointer padding[20];
253 };
254 </pre>
255 </div>
256 <hr>
257 <div class="refsect2">
258 <a name="gvir-connection-new"></a><h3>gvir_connection_new ()</h3>
259 <pre class="programlisting"><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="returnvalue">GVirConnection</span></a> * gvir_connection_new (<em class="parameter"><code>const <span class="type">char</span> *uri</code></em>);</pre>
260 </div>
261 <hr>
262 <div class="refsect2">
263 <a name="gvir-connection-open"></a><h3>gvir_connection_open ()</h3>
264 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_connection_open (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
265 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
266 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
267 <div class="variablelist"><table border="0" class="variablelist">
268 <colgroup>
269 <col align="left" valign="top">
270 <col>
271 </colgroup>
272 <tbody>
273 <tr>
274 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
275 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
276 </td>
277 </tr>
278 <tr>
279 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
280 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
281 </td>
282 </tr>
283 </tbody>
284 </table></div>
285 </div>
286 <hr>
287 <div class="refsect2">
288 <a name="gvir-connection-open-read-only"></a><h3>gvir_connection_open_read_only ()</h3>
289 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_connection_open_read_only (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
290 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
291 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
292 </div>
293 <hr>
294 <div class="refsect2">
295 <a name="gvir-connection-open-async"></a><h3>gvir_connection_open_async ()</h3>
296 <pre class="programlisting"><span class="returnvalue">void</span> gvir_connection_open_async (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
297 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
298 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
299 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
300 <div class="variablelist"><table border="0" class="variablelist">
301 <colgroup>
302 <col align="left" valign="top">
303 <col>
304 </colgroup>
305 <tbody>
306 <tr>
307 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
308 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
309 </td>
310 </tr>
311 <tr>
312 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
313 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
314 </td>
315 </tr>
316 <tr>
317 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
318 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
319 </td>
320 </tr>
321 <tr>
322 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
323 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
324 </td>
325 </tr>
326 </tbody>
327 </table></div>
328 </div>
329 <hr>
330 <div class="refsect2">
331 <a name="gvir-connection-open-finish"></a><h3>gvir_connection_open_finish ()</h3>
332 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_connection_open_finish (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
333 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
334 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
335 <div class="variablelist"><table border="0" class="variablelist">
336 <colgroup>
337 <col align="left" valign="top">
338 <col>
339 </colgroup>
340 <tbody>
341 <tr>
342 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
343 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
344 </td>
345 </tr>
346 <tr>
347 <td><p><span class="term"><em class="parameter"><code>result</code></em> :</span></p></td>
348 <td>async method result. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
349 </td>
350 </tr>
351 </tbody>
352 </table></div>
353 </div>
354 <hr>
355 <div class="refsect2">
356 <a name="gvir-connection-open-read-only-async"></a><h3>gvir_connection_open_read_only_async ()</h3>
357 <pre class="programlisting"><span class="returnvalue">void</span> gvir_connection_open_read_only_async
358 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
359 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
360 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
361 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
362 <div class="variablelist"><table border="0" class="variablelist">
363 <colgroup>
364 <col align="left" valign="top">
365 <col>
366 </colgroup>
367 <tbody>
368 <tr>
369 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
370 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
371 </td>
372 </tr>
373 <tr>
374 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
375 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
376 </td>
377 </tr>
378 <tr>
379 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
380 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
381 </td>
382 </tr>
383 <tr>
384 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
385 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
386 </td>
387 </tr>
388 </tbody>
389 </table></div>
390 </div>
391 <hr>
392 <div class="refsect2">
393 <a name="gvir-connection-open-read-only-finish"></a><h3>gvir_connection_open_read_only_finish ()</h3>
394 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_connection_open_read_only_finish
395 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
396 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
397 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
398 <div class="variablelist"><table border="0" class="variablelist">
399 <colgroup>
400 <col align="left" valign="top">
401 <col>
402 </colgroup>
403 <tbody>
404 <tr>
405 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
406 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
407 </td>
408 </tr>
409 <tr>
410 <td><p><span class="term"><em class="parameter"><code>result</code></em> :</span></p></td>
411 <td>async method result. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
412 </td>
413 </tr>
414 </tbody>
415 </table></div>
416 </div>
417 <hr>
418 <div class="refsect2">
419 <a name="gvir-connection-is-open"></a><h3>gvir_connection_is_open ()</h3>
420 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_connection_is_open (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
421 </div>
422 <hr>
423 <div class="refsect2">
424 <a name="gvir-connection-is-read-only"></a><h3>gvir_connection_is_read_only ()</h3>
425 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_connection_is_read_only (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
426 </div>
427 <hr>
428 <div class="refsect2">
429 <a name="gvir-connection-close"></a><h3>gvir_connection_close ()</h3>
430 <pre class="programlisting"><span class="returnvalue">void</span> gvir_connection_close (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
431 </div>
432 <hr>
433 <div class="refsect2">
434 <a name="gvir-connection-fetch-domains"></a><h3>gvir_connection_fetch_domains ()</h3>
435 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_connection_fetch_domains (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
436 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
437 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
438 <div class="variablelist"><table border="0" class="variablelist">
439 <colgroup>
440 <col align="left" valign="top">
441 <col>
442 </colgroup>
443 <tbody>
444 <tr>
445 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
446 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
447 </td>
448 </tr>
449 <tr>
450 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
451 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
452 </td>
453 </tr>
454 </tbody>
455 </table></div>
456 </div>
457 <hr>
458 <div class="refsect2">
459 <a name="gvir-connection-fetch-domains-async"></a><h3>gvir_connection_fetch_domains_async ()</h3>
460 <pre class="programlisting"><span class="returnvalue">void</span> gvir_connection_fetch_domains_async (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
461 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
462 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
463 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
464 <div class="variablelist"><table border="0" class="variablelist">
465 <colgroup>
466 <col align="left" valign="top">
467 <col>
468 </colgroup>
469 <tbody>
470 <tr>
471 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
472 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
473 </td>
474 </tr>
475 <tr>
476 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
477 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
478 </td>
479 </tr>
480 <tr>
481 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
482 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
483 </td>
484 </tr>
485 <tr>
486 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
487 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
488 </td>
489 </tr>
490 </tbody>
491 </table></div>
492 </div>
493 <hr>
494 <div class="refsect2">
495 <a name="gvir-connection-fetch-domains-finish"></a><h3>gvir_connection_fetch_domains_finish ()</h3>
496 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_connection_fetch_domains_finish
497 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
498 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
499 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
500 <div class="variablelist"><table border="0" class="variablelist">
501 <colgroup>
502 <col align="left" valign="top">
503 <col>
504 </colgroup>
505 <tbody>
506 <tr>
507 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
508 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
509 </td>
510 </tr>
511 <tr>
512 <td><p><span class="term"><em class="parameter"><code>result</code></em> :</span></p></td>
513 <td>async method result. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
514 </td>
515 </tr>
516 </tbody>
517 </table></div>
518 </div>
519 <hr>
520 <div class="refsect2">
521 <a name="gvir-connection-get-uri"></a><h3>gvir_connection_get_uri ()</h3>
522 <pre class="programlisting">const <span class="returnvalue">gchar</span> * gvir_connection_get_uri (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
523 </div>
524 <hr>
525 <div class="refsect2">
526 <a name="gvir-connection-get-hypervisor-name"></a><h3>gvir_connection_get_hypervisor_name ()</h3>
527 <pre class="programlisting"><span class="returnvalue">gchar</span> * gvir_connection_get_hypervisor_name (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
528 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
529 <p>
530 Get name of current hypervisor used.
531 </p>
532 <div class="variablelist"><table border="0" class="variablelist">
533 <colgroup>
534 <col align="left" valign="top">
535 <col>
536 </colgroup>
537 <tbody>
538 <tr>
539 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
540 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
541 </td>
542 </tr>
543 <tr>
544 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
545 <td>return location for any <span class="type">GError</span>
546 </td>
547 </tr>
548 <tr>
549 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
550 <td>new string that should be freed when no longer needed,
551 or NULL upon error.</td>
552 </tr>
553 </tbody>
554 </table></div>
555 </div>
556 <hr>
557 <div class="refsect2">
558 <a name="gvir-connection-get-version"></a><h3>gvir_connection_get_version ()</h3>
559 <pre class="programlisting"><span class="returnvalue">gulong</span> gvir_connection_get_version (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
560 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
561 <p>
562 Get version of current hypervisor used.
563 </p>
564 <div class="variablelist"><table border="0" class="variablelist">
565 <colgroup>
566 <col align="left" valign="top">
567 <col>
568 </colgroup>
569 <tbody>
570 <tr>
571 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
572 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
573 </td>
574 </tr>
575 <tr>
576 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
577 <td>return location for any <span class="type">GError</span>
578 </td>
579 </tr>
580 <tr>
581 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
582 <td>version on success, 0 otherwise and <em class="parameter"><code>err</code></em> set.</td>
583 </tr>
584 </tbody>
585 </table></div>
586 </div>
587 <hr>
588 <div class="refsect2">
589 <a name="gvir-connection-get-domains"></a><h3>gvir_connection_get_domains ()</h3>
590 <pre class="programlisting"><span class="returnvalue">GList</span> * gvir_connection_get_domains (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
591 <p>
592 Gets a list of the domains available through <em class="parameter"><code>conn</code></em>.
593 </p>
594 <div class="variablelist"><table border="0" class="variablelist">
595 <colgroup>
596 <col align="left" valign="top">
597 <col>
598 </colgroup>
599 <tbody>
600 <tr>
601 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
602 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
603 </td>
604 </tr>
605 <tr>
606 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
607 <td>List
608 of <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a>. The returned list should be freed with <code class="function">g_list_free()</code>,
609 after its elements have been unreffed with <code class="function">g_object_unref()</code>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGObject.Domain][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
610 </td>
611 </tr>
612 </tbody>
613 </table></div>
614 </div>
615 <hr>
616 <div class="refsect2">
617 <a name="gvir-connection-get-domain"></a><h3>gvir_connection_get_domain ()</h3>
618 <pre class="programlisting"><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> * gvir_connection_get_domain (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
619 <em class="parameter"><code>const <span class="type">gchar</span> *uuid</code></em>);</pre>
620 <div class="variablelist"><table border="0" class="variablelist">
621 <colgroup>
622 <col align="left" valign="top">
623 <col>
624 </colgroup>
625 <tbody>
626 <tr>
627 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
628 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
629 </td>
630 </tr>
631 <tr>
632 <td><p><span class="term"><em class="parameter"><code>uuid</code></em> :</span></p></td>
633 <td>uuid string of the requested domain</td>
634 </tr>
635 <tr>
636 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
637 <td>the <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a>, or NULL. The returned
638 object should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
639 </td>
640 </tr>
641 </tbody>
642 </table></div>
643 </div>
644 <hr>
645 <div class="refsect2">
646 <a name="gvir-connection-find-domain-by-id"></a><h3>gvir_connection_find_domain_by_id ()</h3>
647 <pre class="programlisting"><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> * gvir_connection_find_domain_by_id (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
648 <em class="parameter"><code><span class="type">gint</span> id</code></em>);</pre>
649 <div class="variablelist"><table border="0" class="variablelist">
650 <colgroup>
651 <col align="left" valign="top">
652 <col>
653 </colgroup>
654 <tbody>
655 <tr>
656 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
657 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
658 </td>
659 </tr>
660 <tr>
661 <td><p><span class="term"><em class="parameter"><code>id</code></em> :</span></p></td>
662 <td>id of the requested domain</td>
663 </tr>
664 <tr>
665 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
666 <td>the <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a>, or NULL. The returned
667 object should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
668 </td>
669 </tr>
670 </tbody>
671 </table></div>
672 </div>
673 <hr>
674 <div class="refsect2">
675 <a name="gvir-connection-find-domain-by-name"></a><h3>gvir_connection_find_domain_by_name ()</h3>
676 <pre class="programlisting"><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> * gvir_connection_find_domain_by_name (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
677 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
678 <div class="variablelist"><table border="0" class="variablelist">
679 <colgroup>
680 <col align="left" valign="top">
681 <col>
682 </colgroup>
683 <tbody>
684 <tr>
685 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
686 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
687 </td>
688 </tr>
689 <tr>
690 <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
691 <td>name of the requested domain</td>
692 </tr>
693 <tr>
694 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
695 <td>the <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a>, or NULL. The returned
696 object should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
697 </td>
698 </tr>
699 </tbody>
700 </table></div>
701 </div>
702 <hr>
703 <div class="refsect2">
704 <a name="gvir-connection-create-domain"></a><h3>gvir_connection_create_domain ()</h3>
705 <pre class="programlisting"><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> * gvir_connection_create_domain (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
706 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *conf</code></em>,
707 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
708 <p>
709 Create the configuration file for a new persistent domain.
710 The returned domain will initially be in the shutoff state.
711 </p>
712 <div class="variablelist"><table border="0" class="variablelist">
713 <colgroup>
714 <col align="left" valign="top">
715 <col>
716 </colgroup>
717 <tbody>
718 <tr>
719 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
720 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> on which to create the domain</td>
721 </tr>
722 <tr>
723 <td><p><span class="term"><em class="parameter"><code>conf</code></em> :</span></p></td>
724 <td>the configuration for the new domain</td>
725 </tr>
726 <tr>
727 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
728 <td>the newly created domain, or NULL if an error
729 occurred. The returned object should be unreffed with <code class="function">g_object_unref()</code>
730 when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
731 </td>
732 </tr>
733 </tbody>
734 </table></div>
735 </div>
736 <hr>
737 <div class="refsect2">
738 <a name="gvir-connection-start-domain"></a><h3>gvir_connection_start_domain ()</h3>
739 <pre class="programlisting"><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> * gvir_connection_start_domain (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
740 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *conf</code></em>,
741 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
742 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
743 <p>
744 Start a new transient domain without persistent configuration.
745 The returned domain will initially be running.
746 </p>
747 <div class="variablelist"><table border="0" class="variablelist">
748 <colgroup>
749 <col align="left" valign="top">
750 <col>
751 </colgroup>
752 <tbody>
753 <tr>
754 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
755 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> on which to create the domain</td>
756 </tr>
757 <tr>
758 <td><p><span class="term"><em class="parameter"><code>conf</code></em> :</span></p></td>
759 <td>the configuration for the new domain</td>
760 </tr>
761 <tr>
762 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
763 <td>the newly created domain, or NULL if an error
764 occurred. The returned object should be unreffed with <code class="function">g_object_unref()</code>
765 when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
766 </td>
767 </tr>
768 </tbody>
769 </table></div>
770 </div>
771 <hr>
772 <div class="refsect2">
773 <a name="gvir-connection-get-interfaces"></a><h3>gvir_connection_get_interfaces ()</h3>
774 <pre class="programlisting"><span class="returnvalue">GList</span> * gvir_connection_get_interfaces (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
775 </div>
776 <hr>
777 <div class="refsect2">
778 <a name="gvir-connection-get-interface"></a><h3>gvir_connection_get_interface ()</h3>
779 <pre class="programlisting"><a class="link" href="Libvirt-gobject-GVir.html#GVirInterface"><span class="returnvalue">GVirInterface</span></a> * gvir_connection_get_interface (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
780 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
781 </div>
782 <hr>
783 <div class="refsect2">
784 <a name="gvir-connection-find-interface-by-mac"></a><h3>gvir_connection_find_interface_by_mac ()</h3>
785 <pre class="programlisting"><a class="link" href="Libvirt-gobject-GVir.html#GVirInterface"><span class="returnvalue">GVirInterface</span></a> * gvir_connection_find_interface_by_mac
786 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
787 <em class="parameter"><code>const <span class="type">gchar</span> *macaddr</code></em>);</pre>
788 </div>
789 <hr>
790 <div class="refsect2">
791 <a name="gvir-connection-get-networks"></a><h3>gvir_connection_get_networks ()</h3>
792 <pre class="programlisting"><span class="returnvalue">GList</span> * gvir_connection_get_networks (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
793 </div>
794 <hr>
795 <div class="refsect2">
796 <a name="gvir-connection-get-network"></a><h3>gvir_connection_get_network ()</h3>
797 <pre class="programlisting"><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="returnvalue">GVirNetwork</span></a> * gvir_connection_get_network (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
798 <em class="parameter"><code>const <span class="type">gchar</span> *uuid</code></em>);</pre>
799 </div>
800 <hr>
801 <div class="refsect2">
802 <a name="gvir-connection-find-network-by-name"></a><h3>gvir_connection_find_network_by_name ()</h3>
803 <pre class="programlisting"><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="returnvalue">GVirNetwork</span></a> * gvir_connection_find_network_by_name
804 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
805 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
806 </div>
807 <hr>
808 <div class="refsect2">
809 <a name="gvir-connection-get-network-filters"></a><h3>gvir_connection_get_network_filters ()</h3>
810 <pre class="programlisting"><span class="returnvalue">GList</span> * gvir_connection_get_network_filters (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
811 </div>
812 <hr>
813 <div class="refsect2">
814 <a name="gvir-connection-get-network-filter"></a><h3>gvir_connection_get_network_filter ()</h3>
815 <pre class="programlisting"><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="returnvalue">GVirNetworkFilter</span></a> * gvir_connection_get_network_filter (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
816 <em class="parameter"><code>const <span class="type">gchar</span> *uuid</code></em>);</pre>
817 </div>
818 <hr>
819 <div class="refsect2">
820 <a name="gvir-connection-find-network-filter-by-name"></a><h3>gvir_connection_find_network_filter_by_name ()</h3>
821 <pre class="programlisting"><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="returnvalue">GVirNetworkFilter</span></a> * gvir_connection_find_network_filter_by_name
822 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
823 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
824 </div>
825 <hr>
826 <div class="refsect2">
827 <a name="gvir-connection-get-node-devices"></a><h3>gvir_connection_get_node_devices ()</h3>
828 <pre class="programlisting"><span class="returnvalue">GList</span> * gvir_connection_get_node_devices (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
829 </div>
830 <hr>
831 <div class="refsect2">
832 <a name="gvir-connection-get-node-device"></a><h3>gvir_connection_get_node_device ()</h3>
833 <pre class="programlisting"><a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice"><span class="returnvalue">GVirNodeDevice</span></a> * gvir_connection_get_node_device (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
834 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
835 </div>
836 <hr>
837 <div class="refsect2">
838 <a name="gvir-connection-get-secrets"></a><h3>gvir_connection_get_secrets ()</h3>
839 <pre class="programlisting"><span class="returnvalue">GList</span> * gvir_connection_get_secrets (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
840 </div>
841 <hr>
842 <div class="refsect2">
843 <a name="gvir-connection-get-secret"></a><h3>gvir_connection_get_secret ()</h3>
844 <pre class="programlisting"><a class="link" href="GVirSecret.html" title="GVirSecret"><span class="returnvalue">GVirSecret</span></a> * gvir_connection_get_secret (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
845 <em class="parameter"><code>const <span class="type">gchar</span> *uuid</code></em>);</pre>
846 </div>
847 <hr>
848 <div class="refsect2">
849 <a name="gvir-connection-fetch-storage-pools"></a><h3>gvir_connection_fetch_storage_pools ()</h3>
850 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_connection_fetch_storage_pools (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
851 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
852 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
853 <div class="variablelist"><table border="0" class="variablelist">
854 <colgroup>
855 <col align="left" valign="top">
856 <col>
857 </colgroup>
858 <tbody>
859 <tr>
860 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
861 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
862 </td>
863 </tr>
864 <tr>
865 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
866 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
867 </td>
868 </tr>
869 </tbody>
870 </table></div>
871 </div>
872 <hr>
873 <div class="refsect2">
874 <a name="gvir-connection-fetch-storage-pools-async"></a><h3>gvir_connection_fetch_storage_pools_async ()</h3>
875 <pre class="programlisting"><span class="returnvalue">void</span> gvir_connection_fetch_storage_pools_async
876 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
877 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
878 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
879 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
880 <div class="variablelist"><table border="0" class="variablelist">
881 <colgroup>
882 <col align="left" valign="top">
883 <col>
884 </colgroup>
885 <tbody>
886 <tr>
887 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
888 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
889 </td>
890 </tr>
891 <tr>
892 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
893 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
894 </td>
895 </tr>
896 <tr>
897 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
898 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
899 </td>
900 </tr>
901 <tr>
902 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
903 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
904 </td>
905 </tr>
906 </tbody>
907 </table></div>
908 </div>
909 <hr>
910 <div class="refsect2">
911 <a name="gvir-connection-fetch-storage-pools-finish"></a><h3>gvir_connection_fetch_storage_pools_finish ()</h3>
912 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_connection_fetch_storage_pools_finish
913 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
914 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
915 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
916 <div class="variablelist"><table border="0" class="variablelist">
917 <colgroup>
918 <col align="left" valign="top">
919 <col>
920 </colgroup>
921 <tbody>
922 <tr>
923 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
924 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
925 </td>
926 </tr>
927 <tr>
928 <td><p><span class="term"><em class="parameter"><code>result</code></em> :</span></p></td>
929 <td>async method result. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
930 </td>
931 </tr>
932 </tbody>
933 </table></div>
934 </div>
935 <hr>
936 <div class="refsect2">
937 <a name="gvir-connection-get-storage-pools"></a><h3>gvir_connection_get_storage_pools ()</h3>
938 <pre class="programlisting"><span class="returnvalue">GList</span> * gvir_connection_get_storage_pools (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
939 <p>
940 Gets a list of the storage pools available through <em class="parameter"><code>conn</code></em>.
941 </p>
942 <div class="variablelist"><table border="0" class="variablelist">
943 <colgroup>
944 <col align="left" valign="top">
945 <col>
946 </colgroup>
947 <tbody>
948 <tr>
949 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
950 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
951 </td>
952 </tr>
953 <tr>
954 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
955 <td>List
514 <a name="GVirConnection.functions_details"></a><h2>Functions</h2>
515 <div class="refsect2">
516 <a name="gvir-connection-new"></a><h3>gvir_connection_new ()</h3>
517 <pre class="programlisting"><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="returnvalue">GVirConnection</span></a> *
518 gvir_connection_new (<em class="parameter"><code>const <span class="type">char</span> *uri</code></em>);</pre>
519 </div>
520 <hr>
521 <div class="refsect2">
522 <a name="gvir-connection-open"></a><h3>gvir_connection_open ()</h3>
523 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
524 gvir_connection_open (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
525 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
526 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
527 <div class="refsect3">
528 <a name="id-1.2.2.9.3.4"></a><h4>Parameters</h4>
529 <div class="informaltable"><table width="100%" border="0">
530 <colgroup>
531 <col width="150px" class="parameters_name">
532 <col class="parameters_description">
533 <col width="200px" class="parameters_annotations">
534 </colgroup>
535 <tbody>
536 <tr>
537 <td class="parameter_name"><p>conn</p></td>
538 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
539 <td class="parameter_annotations"> </td>
540 </tr>
541 <tr>
542 <td class="parameter_name"><p>cancellable</p></td>
543 <td class="parameter_description"><p> cancellation object. </p></td>
544 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
545 </tr>
546 </tbody>
547 </table></div>
548 </div>
549 </div>
550 <hr>
551 <div class="refsect2">
552 <a name="gvir-connection-open-read-only"></a><h3>gvir_connection_open_read_only ()</h3>
553 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
554 gvir_connection_open_read_only (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
555 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
556 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
557 </div>
558 <hr>
559 <div class="refsect2">
560 <a name="gvir-connection-open-async"></a><h3>gvir_connection_open_async ()</h3>
561 <pre class="programlisting"><span class="returnvalue">void</span>
562 gvir_connection_open_async (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
563 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
564 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
565 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
566 <div class="refsect3">
567 <a name="id-1.2.2.9.5.4"></a><h4>Parameters</h4>
568 <div class="informaltable"><table width="100%" border="0">
569 <colgroup>
570 <col width="150px" class="parameters_name">
571 <col class="parameters_description">
572 <col width="200px" class="parameters_annotations">
573 </colgroup>
574 <tbody>
575 <tr>
576 <td class="parameter_name"><p>conn</p></td>
577 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
578 <td class="parameter_annotations"> </td>
579 </tr>
580 <tr>
581 <td class="parameter_name"><p>cancellable</p></td>
582 <td class="parameter_description"><p> cancellation object. </p></td>
583 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
584 </tr>
585 <tr>
586 <td class="parameter_name"><p>callback</p></td>
587 <td class="parameter_description"><p> completion callback. </p></td>
588 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
589 </tr>
590 <tr>
591 <td class="parameter_name"><p>user_data</p></td>
592 <td class="parameter_description"><p> opaque data for callback. </p></td>
593 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
594 </tr>
595 </tbody>
596 </table></div>
597 </div>
598 </div>
599 <hr>
600 <div class="refsect2">
601 <a name="gvir-connection-open-finish"></a><h3>gvir_connection_open_finish ()</h3>
602 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
603 gvir_connection_open_finish (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
604 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
605 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
606 <div class="refsect3">
607 <a name="id-1.2.2.9.6.4"></a><h4>Parameters</h4>
608 <div class="informaltable"><table width="100%" border="0">
609 <colgroup>
610 <col width="150px" class="parameters_name">
611 <col class="parameters_description">
612 <col width="200px" class="parameters_annotations">
613 </colgroup>
614 <tbody>
615 <tr>
616 <td class="parameter_name"><p>conn</p></td>
617 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
618 <td class="parameter_annotations"> </td>
619 </tr>
620 <tr>
621 <td class="parameter_name"><p>result</p></td>
622 <td class="parameter_description"><p> async method result. </p></td>
623 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
624 </tr>
625 </tbody>
626 </table></div>
627 </div>
628 </div>
629 <hr>
630 <div class="refsect2">
631 <a name="gvir-connection-open-read-only-async"></a><h3>gvir_connection_open_read_only_async ()</h3>
632 <pre class="programlisting"><span class="returnvalue">void</span>
633 gvir_connection_open_read_only_async (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
634 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
635 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
636 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
637 <div class="refsect3">
638 <a name="id-1.2.2.9.7.4"></a><h4>Parameters</h4>
639 <div class="informaltable"><table width="100%" border="0">
640 <colgroup>
641 <col width="150px" class="parameters_name">
642 <col class="parameters_description">
643 <col width="200px" class="parameters_annotations">
644 </colgroup>
645 <tbody>
646 <tr>
647 <td class="parameter_name"><p>conn</p></td>
648 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
649 <td class="parameter_annotations"> </td>
650 </tr>
651 <tr>
652 <td class="parameter_name"><p>cancellable</p></td>
653 <td class="parameter_description"><p> cancellation object. </p></td>
654 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
655 </tr>
656 <tr>
657 <td class="parameter_name"><p>callback</p></td>
658 <td class="parameter_description"><p> completion callback. </p></td>
659 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
660 </tr>
661 <tr>
662 <td class="parameter_name"><p>user_data</p></td>
663 <td class="parameter_description"><p> opaque data for callback. </p></td>
664 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
665 </tr>
666 </tbody>
667 </table></div>
668 </div>
669 </div>
670 <hr>
671 <div class="refsect2">
672 <a name="gvir-connection-open-read-only-finish"></a><h3>gvir_connection_open_read_only_finish ()</h3>
673 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
674 gvir_connection_open_read_only_finish (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
675 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
676 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
677 <div class="refsect3">
678 <a name="id-1.2.2.9.8.4"></a><h4>Parameters</h4>
679 <div class="informaltable"><table width="100%" border="0">
680 <colgroup>
681 <col width="150px" class="parameters_name">
682 <col class="parameters_description">
683 <col width="200px" class="parameters_annotations">
684 </colgroup>
685 <tbody>
686 <tr>
687 <td class="parameter_name"><p>conn</p></td>
688 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
689 <td class="parameter_annotations"> </td>
690 </tr>
691 <tr>
692 <td class="parameter_name"><p>result</p></td>
693 <td class="parameter_description"><p> async method result. </p></td>
694 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
695 </tr>
696 </tbody>
697 </table></div>
698 </div>
699 </div>
700 <hr>
701 <div class="refsect2">
702 <a name="gvir-connection-is-open"></a><h3>gvir_connection_is_open ()</h3>
703 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
704 gvir_connection_is_open (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
705 </div>
706 <hr>
707 <div class="refsect2">
708 <a name="gvir-connection-is-read-only"></a><h3>gvir_connection_is_read_only ()</h3>
709 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
710 gvir_connection_is_read_only (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
711 </div>
712 <hr>
713 <div class="refsect2">
714 <a name="gvir-connection-close"></a><h3>gvir_connection_close ()</h3>
715 <pre class="programlisting"><span class="returnvalue">void</span>
716 gvir_connection_close (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
717 </div>
718 <hr>
719 <div class="refsect2">
720 <a name="gvir-connection-fetch-domains"></a><h3>gvir_connection_fetch_domains ()</h3>
721 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
722 gvir_connection_fetch_domains (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
723 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
724 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
725 <div class="refsect3">
726 <a name="id-1.2.2.9.12.4"></a><h4>Parameters</h4>
727 <div class="informaltable"><table width="100%" border="0">
728 <colgroup>
729 <col width="150px" class="parameters_name">
730 <col class="parameters_description">
731 <col width="200px" class="parameters_annotations">
732 </colgroup>
733 <tbody>
734 <tr>
735 <td class="parameter_name"><p>conn</p></td>
736 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
737 <td class="parameter_annotations"> </td>
738 </tr>
739 <tr>
740 <td class="parameter_name"><p>cancellable</p></td>
741 <td class="parameter_description"><p> cancellation object. </p></td>
742 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
743 </tr>
744 </tbody>
745 </table></div>
746 </div>
747 </div>
748 <hr>
749 <div class="refsect2">
750 <a name="gvir-connection-fetch-domains-async"></a><h3>gvir_connection_fetch_domains_async ()</h3>
751 <pre class="programlisting"><span class="returnvalue">void</span>
752 gvir_connection_fetch_domains_async (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
753 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
754 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
755 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
756 <div class="refsect3">
757 <a name="id-1.2.2.9.13.4"></a><h4>Parameters</h4>
758 <div class="informaltable"><table width="100%" border="0">
759 <colgroup>
760 <col width="150px" class="parameters_name">
761 <col class="parameters_description">
762 <col width="200px" class="parameters_annotations">
763 </colgroup>
764 <tbody>
765 <tr>
766 <td class="parameter_name"><p>conn</p></td>
767 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
768 <td class="parameter_annotations"> </td>
769 </tr>
770 <tr>
771 <td class="parameter_name"><p>cancellable</p></td>
772 <td class="parameter_description"><p> cancellation object. </p></td>
773 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
774 </tr>
775 <tr>
776 <td class="parameter_name"><p>callback</p></td>
777 <td class="parameter_description"><p> completion callback. </p></td>
778 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
779 </tr>
780 <tr>
781 <td class="parameter_name"><p>user_data</p></td>
782 <td class="parameter_description"><p> opaque data for callback. </p></td>
783 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
784 </tr>
785 </tbody>
786 </table></div>
787 </div>
788 </div>
789 <hr>
790 <div class="refsect2">
791 <a name="gvir-connection-fetch-domains-finish"></a><h3>gvir_connection_fetch_domains_finish ()</h3>
792 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
793 gvir_connection_fetch_domains_finish (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
794 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
795 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
796 <div class="refsect3">
797 <a name="id-1.2.2.9.14.4"></a><h4>Parameters</h4>
798 <div class="informaltable"><table width="100%" border="0">
799 <colgroup>
800 <col width="150px" class="parameters_name">
801 <col class="parameters_description">
802 <col width="200px" class="parameters_annotations">
803 </colgroup>
804 <tbody>
805 <tr>
806 <td class="parameter_name"><p>conn</p></td>
807 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
808 <td class="parameter_annotations"> </td>
809 </tr>
810 <tr>
811 <td class="parameter_name"><p>result</p></td>
812 <td class="parameter_description"><p> async method result. </p></td>
813 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
814 </tr>
815 </tbody>
816 </table></div>
817 </div>
818 </div>
819 <hr>
820 <div class="refsect2">
821 <a name="gvir-connection-get-uri"></a><h3>gvir_connection_get_uri ()</h3>
822 <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
823 gvir_connection_get_uri (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
824 </div>
825 <hr>
826 <div class="refsect2">
827 <a name="gvir-connection-get-hypervisor-name"></a><h3>gvir_connection_get_hypervisor_name ()</h3>
828 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
829 gvir_connection_get_hypervisor_name (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
830 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
831 <p>Get name of current hypervisor used.</p>
832 <div class="refsect3">
833 <a name="id-1.2.2.9.16.5"></a><h4>Parameters</h4>
834 <div class="informaltable"><table width="100%" border="0">
835 <colgroup>
836 <col width="150px" class="parameters_name">
837 <col class="parameters_description">
838 <col width="200px" class="parameters_annotations">
839 </colgroup>
840 <tbody>
841 <tr>
842 <td class="parameter_name"><p>conn</p></td>
843 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
844 <td class="parameter_annotations"> </td>
845 </tr>
846 <tr>
847 <td class="parameter_name"><p>err</p></td>
848 <td class="parameter_description"><p>return location for any <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
849 <td class="parameter_annotations"> </td>
850 </tr>
851 </tbody>
852 </table></div>
853 </div>
854 <div class="refsect3">
855 <a name="id-1.2.2.9.16.6"></a><h4>Returns</h4>
856 <p> new string that should be freed when no longer needed,
857 or NULL upon error.</p>
858 <p></p>
859 </div>
860 </div>
861 <hr>
862 <div class="refsect2">
863 <a name="gvir-connection-get-version"></a><h3>gvir_connection_get_version ()</h3>
864 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gulong"><span class="returnvalue">gulong</span></a>
865 gvir_connection_get_version (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
866 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
867 <p>Get version of current hypervisor used.</p>
868 <div class="refsect3">
869 <a name="id-1.2.2.9.17.5"></a><h4>Parameters</h4>
870 <div class="informaltable"><table width="100%" border="0">
871 <colgroup>
872 <col width="150px" class="parameters_name">
873 <col class="parameters_description">
874 <col width="200px" class="parameters_annotations">
875 </colgroup>
876 <tbody>
877 <tr>
878 <td class="parameter_name"><p>conn</p></td>
879 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
880 <td class="parameter_annotations"> </td>
881 </tr>
882 <tr>
883 <td class="parameter_name"><p>err</p></td>
884 <td class="parameter_description"><p>return location for any <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
885 <td class="parameter_annotations"> </td>
886 </tr>
887 </tbody>
888 </table></div>
889 </div>
890 <div class="refsect3">
891 <a name="id-1.2.2.9.17.6"></a><h4>Returns</h4>
892 <p> version on success, 0 otherwise and <em class="parameter"><code>err</code></em>
893 set.</p>
894 <p></p>
895 </div>
896 </div>
897 <hr>
898 <div class="refsect2">
899 <a name="gvir-connection-get-domains"></a><h3>gvir_connection_get_domains ()</h3>
900 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
901 gvir_connection_get_domains (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
902 <p>Gets a list of the domains available through <em class="parameter"><code>conn</code></em>
903 .</p>
904 <div class="refsect3">
905 <a name="id-1.2.2.9.18.5"></a><h4>Parameters</h4>
906 <div class="informaltable"><table width="100%" border="0">
907 <colgroup>
908 <col width="150px" class="parameters_name">
909 <col class="parameters_description">
910 <col width="200px" class="parameters_annotations">
911 </colgroup>
912 <tbody><tr>
913 <td class="parameter_name"><p>conn</p></td>
914 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
915 <td class="parameter_annotations"> </td>
916 </tr></tbody>
917 </table></div>
918 </div>
919 <div class="refsect3">
920 <a name="id-1.2.2.9.18.6"></a><h4>Returns</h4>
921 <p> List
922 of <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a>. The returned list should be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>,
923 after its elements have been unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. </p>
924 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGObject.Domain][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
925 </div>
926 </div>
927 <hr>
928 <div class="refsect2">
929 <a name="gvir-connection-get-domain"></a><h3>gvir_connection_get_domain ()</h3>
930 <pre class="programlisting"><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> *
931 gvir_connection_get_domain (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
932 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *uuid</code></em>);</pre>
933 <div class="refsect3">
934 <a name="id-1.2.2.9.19.4"></a><h4>Parameters</h4>
935 <div class="informaltable"><table width="100%" border="0">
936 <colgroup>
937 <col width="150px" class="parameters_name">
938 <col class="parameters_description">
939 <col width="200px" class="parameters_annotations">
940 </colgroup>
941 <tbody>
942 <tr>
943 <td class="parameter_name"><p>conn</p></td>
944 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
945 <td class="parameter_annotations"> </td>
946 </tr>
947 <tr>
948 <td class="parameter_name"><p>uuid</p></td>
949 <td class="parameter_description"><p>uuid string of the requested domain</p></td>
950 <td class="parameter_annotations"> </td>
951 </tr>
952 </tbody>
953 </table></div>
954 </div>
955 <div class="refsect3">
956 <a name="id-1.2.2.9.19.5"></a><h4>Returns</h4>
957 <p> the <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a>, or NULL. The returned
958 object should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
959 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
960 </div>
961 </div>
962 <hr>
963 <div class="refsect2">
964 <a name="gvir-connection-find-domain-by-id"></a><h3>gvir_connection_find_domain_by_id ()</h3>
965 <pre class="programlisting"><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> *
966 gvir_connection_find_domain_by_id (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
967 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> id</code></em>);</pre>
968 <div class="refsect3">
969 <a name="id-1.2.2.9.20.4"></a><h4>Parameters</h4>
970 <div class="informaltable"><table width="100%" border="0">
971 <colgroup>
972 <col width="150px" class="parameters_name">
973 <col class="parameters_description">
974 <col width="200px" class="parameters_annotations">
975 </colgroup>
976 <tbody>
977 <tr>
978 <td class="parameter_name"><p>conn</p></td>
979 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
980 <td class="parameter_annotations"> </td>
981 </tr>
982 <tr>
983 <td class="parameter_name"><p>id</p></td>
984 <td class="parameter_description"><p>id of the requested domain</p></td>
985 <td class="parameter_annotations"> </td>
986 </tr>
987 </tbody>
988 </table></div>
989 </div>
990 <div class="refsect3">
991 <a name="id-1.2.2.9.20.5"></a><h4>Returns</h4>
992 <p> the <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a>, or NULL. The returned
993 object should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
994 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
995 </div>
996 </div>
997 <hr>
998 <div class="refsect2">
999 <a name="gvir-connection-find-domain-by-name"></a><h3>gvir_connection_find_domain_by_name ()</h3>
1000 <pre class="programlisting"><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> *
1001 gvir_connection_find_domain_by_name (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1002 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
1003 <div class="refsect3">
1004 <a name="id-1.2.2.9.21.4"></a><h4>Parameters</h4>
1005 <div class="informaltable"><table width="100%" border="0">
1006 <colgroup>
1007 <col width="150px" class="parameters_name">
1008 <col class="parameters_description">
1009 <col width="200px" class="parameters_annotations">
1010 </colgroup>
1011 <tbody>
1012 <tr>
1013 <td class="parameter_name"><p>conn</p></td>
1014 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
1015 <td class="parameter_annotations"> </td>
1016 </tr>
1017 <tr>
1018 <td class="parameter_name"><p>name</p></td>
1019 <td class="parameter_description"><p>name of the requested domain</p></td>
1020 <td class="parameter_annotations"> </td>
1021 </tr>
1022 </tbody>
1023 </table></div>
1024 </div>
1025 <div class="refsect3">
1026 <a name="id-1.2.2.9.21.5"></a><h4>Returns</h4>
1027 <p> the <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a>, or NULL. The returned
1028 object should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
1029 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1030 </div>
1031 </div>
1032 <hr>
1033 <div class="refsect2">
1034 <a name="gvir-connection-create-domain"></a><h3>gvir_connection_create_domain ()</h3>
1035 <pre class="programlisting"><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> *
1036 gvir_connection_create_domain (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1037 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *conf</code></em>,
1038 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1039 <p>Create the configuration file for a new persistent domain.
1040 The returned domain will initially be in the shutoff state.</p>
1041 <div class="refsect3">
1042 <a name="id-1.2.2.9.22.5"></a><h4>Parameters</h4>
1043 <div class="informaltable"><table width="100%" border="0">
1044 <colgroup>
1045 <col width="150px" class="parameters_name">
1046 <col class="parameters_description">
1047 <col width="200px" class="parameters_annotations">
1048 </colgroup>
1049 <tbody>
1050 <tr>
1051 <td class="parameter_name"><p>conn</p></td>
1052 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> on which to create the domain</p></td>
1053 <td class="parameter_annotations"> </td>
1054 </tr>
1055 <tr>
1056 <td class="parameter_name"><p>conf</p></td>
1057 <td class="parameter_description"><p>the configuration for the new domain</p></td>
1058 <td class="parameter_annotations"> </td>
1059 </tr>
1060 </tbody>
1061 </table></div>
1062 </div>
1063 <div class="refsect3">
1064 <a name="id-1.2.2.9.22.6"></a><h4>Returns</h4>
1065 <p> the newly created domain, or NULL if an error
1066 occurred. The returned object should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>
1067 when no longer needed. </p>
1068 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1069 </div>
1070 </div>
1071 <hr>
1072 <div class="refsect2">
1073 <a name="gvir-connection-start-domain"></a><h3>gvir_connection_start_domain ()</h3>
1074 <pre class="programlisting"><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="returnvalue">GVirDomain</span></a> *
1075 gvir_connection_start_domain (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1076 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *conf</code></em>,
1077 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1078 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1079 <p>Start a new transient domain without persistent configuration.
1080 The returned domain will initially be running.</p>
1081 <div class="refsect3">
1082 <a name="id-1.2.2.9.23.5"></a><h4>Parameters</h4>
1083 <div class="informaltable"><table width="100%" border="0">
1084 <colgroup>
1085 <col width="150px" class="parameters_name">
1086 <col class="parameters_description">
1087 <col width="200px" class="parameters_annotations">
1088 </colgroup>
1089 <tbody>
1090 <tr>
1091 <td class="parameter_name"><p>conn</p></td>
1092 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> on which to create the domain</p></td>
1093 <td class="parameter_annotations"> </td>
1094 </tr>
1095 <tr>
1096 <td class="parameter_name"><p>conf</p></td>
1097 <td class="parameter_description"><p>the configuration for the new domain</p></td>
1098 <td class="parameter_annotations"> </td>
1099 </tr>
1100 </tbody>
1101 </table></div>
1102 </div>
1103 <div class="refsect3">
1104 <a name="id-1.2.2.9.23.6"></a><h4>Returns</h4>
1105 <p> the newly created domain, or NULL if an error
1106 occurred. The returned object should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>
1107 when no longer needed. </p>
1108 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1109 </div>
1110 </div>
1111 <hr>
1112 <div class="refsect2">
1113 <a name="gvir-connection-get-interfaces"></a><h3>gvir_connection_get_interfaces ()</h3>
1114 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
1115 gvir_connection_get_interfaces (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
1116 </div>
1117 <hr>
1118 <div class="refsect2">
1119 <a name="gvir-connection-get-interface"></a><h3>gvir_connection_get_interface ()</h3>
1120 <pre class="programlisting"><a class="link" href="GVirInterface.html" title="GVirInterface"><span class="returnvalue">GVirInterface</span></a> *
1121 gvir_connection_get_interface (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1122 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
1123 </div>
1124 <hr>
1125 <div class="refsect2">
1126 <a name="gvir-connection-find-interface-by-mac"></a><h3>gvir_connection_find_interface_by_mac ()</h3>
1127 <pre class="programlisting"><a class="link" href="GVirInterface.html" title="GVirInterface"><span class="returnvalue">GVirInterface</span></a> *
1128 gvir_connection_find_interface_by_mac (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1129 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *macaddr</code></em>);</pre>
1130 </div>
1131 <hr>
1132 <div class="refsect2">
1133 <a name="gvir-connection-get-networks"></a><h3>gvir_connection_get_networks ()</h3>
1134 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
1135 gvir_connection_get_networks (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
1136 </div>
1137 <hr>
1138 <div class="refsect2">
1139 <a name="gvir-connection-get-network"></a><h3>gvir_connection_get_network ()</h3>
1140 <pre class="programlisting"><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="returnvalue">GVirNetwork</span></a> *
1141 gvir_connection_get_network (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1142 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *uuid</code></em>);</pre>
1143 </div>
1144 <hr>
1145 <div class="refsect2">
1146 <a name="gvir-connection-find-network-by-name"></a><h3>gvir_connection_find_network_by_name ()</h3>
1147 <pre class="programlisting"><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="returnvalue">GVirNetwork</span></a> *
1148 gvir_connection_find_network_by_name (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1149 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
1150 </div>
1151 <hr>
1152 <div class="refsect2">
1153 <a name="gvir-connection-get-network-filters"></a><h3>gvir_connection_get_network_filters ()</h3>
1154 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
1155 gvir_connection_get_network_filters (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
1156 </div>
1157 <hr>
1158 <div class="refsect2">
1159 <a name="gvir-connection-get-network-filter"></a><h3>gvir_connection_get_network_filter ()</h3>
1160 <pre class="programlisting"><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="returnvalue">GVirNetworkFilter</span></a> *
1161 gvir_connection_get_network_filter (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1162 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *uuid</code></em>);</pre>
1163 </div>
1164 <hr>
1165 <div class="refsect2">
1166 <a name="gvir-connection-find-network-filter-by-name"></a><h3>gvir_connection_find_network_filter_by_name ()</h3>
1167 <pre class="programlisting"><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="returnvalue">GVirNetworkFilter</span></a> *
1168 gvir_connection_find_network_filter_by_name
1169 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1170 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
1171 </div>
1172 <hr>
1173 <div class="refsect2">
1174 <a name="gvir-connection-get-node-devices"></a><h3>gvir_connection_get_node_devices ()</h3>
1175 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
1176 gvir_connection_get_node_devices (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
1177 </div>
1178 <hr>
1179 <div class="refsect2">
1180 <a name="gvir-connection-get-node-device"></a><h3>gvir_connection_get_node_device ()</h3>
1181 <pre class="programlisting"><a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice"><span class="returnvalue">GVirNodeDevice</span></a> *
1182 gvir_connection_get_node_device (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1183 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
1184 </div>
1185 <hr>
1186 <div class="refsect2">
1187 <a name="gvir-connection-get-secrets"></a><h3>gvir_connection_get_secrets ()</h3>
1188 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
1189 gvir_connection_get_secrets (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
1190 </div>
1191 <hr>
1192 <div class="refsect2">
1193 <a name="gvir-connection-get-secret"></a><h3>gvir_connection_get_secret ()</h3>
1194 <pre class="programlisting"><a class="link" href="GVirSecret.html" title="GVirSecret"><span class="returnvalue">GVirSecret</span></a> *
1195 gvir_connection_get_secret (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1196 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *uuid</code></em>);</pre>
1197 </div>
1198 <hr>
1199 <div class="refsect2">
1200 <a name="gvir-connection-fetch-storage-pools"></a><h3>gvir_connection_fetch_storage_pools ()</h3>
1201 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1202 gvir_connection_fetch_storage_pools (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1203 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1204 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1205 <div class="refsect3">
1206 <a name="id-1.2.2.9.37.4"></a><h4>Parameters</h4>
1207 <div class="informaltable"><table width="100%" border="0">
1208 <colgroup>
1209 <col width="150px" class="parameters_name">
1210 <col class="parameters_description">
1211 <col width="200px" class="parameters_annotations">
1212 </colgroup>
1213 <tbody>
1214 <tr>
1215 <td class="parameter_name"><p>conn</p></td>
1216 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
1217 <td class="parameter_annotations"> </td>
1218 </tr>
1219 <tr>
1220 <td class="parameter_name"><p>cancellable</p></td>
1221 <td class="parameter_description"><p> cancellation object. </p></td>
1222 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1223 </tr>
1224 </tbody>
1225 </table></div>
1226 </div>
1227 </div>
1228 <hr>
1229 <div class="refsect2">
1230 <a name="gvir-connection-fetch-storage-pools-async"></a><h3>gvir_connection_fetch_storage_pools_async ()</h3>
1231 <pre class="programlisting"><span class="returnvalue">void</span>
1232 gvir_connection_fetch_storage_pools_async
1233 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1234 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1235 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1236 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
1237 <div class="refsect3">
1238 <a name="id-1.2.2.9.38.4"></a><h4>Parameters</h4>
1239 <div class="informaltable"><table width="100%" border="0">
1240 <colgroup>
1241 <col width="150px" class="parameters_name">
1242 <col class="parameters_description">
1243 <col width="200px" class="parameters_annotations">
1244 </colgroup>
1245 <tbody>
1246 <tr>
1247 <td class="parameter_name"><p>conn</p></td>
1248 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
1249 <td class="parameter_annotations"> </td>
1250 </tr>
1251 <tr>
1252 <td class="parameter_name"><p>cancellable</p></td>
1253 <td class="parameter_description"><p> cancellation object. </p></td>
1254 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1255 </tr>
1256 <tr>
1257 <td class="parameter_name"><p>callback</p></td>
1258 <td class="parameter_description"><p> completion callback. </p></td>
1259 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
1260 </tr>
1261 <tr>
1262 <td class="parameter_name"><p>user_data</p></td>
1263 <td class="parameter_description"><p> opaque data for callback. </p></td>
1264 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
1265 </tr>
1266 </tbody>
1267 </table></div>
1268 </div>
1269 </div>
1270 <hr>
1271 <div class="refsect2">
1272 <a name="gvir-connection-fetch-storage-pools-finish"></a><h3>gvir_connection_fetch_storage_pools_finish ()</h3>
1273 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1274 gvir_connection_fetch_storage_pools_finish
1275 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1276 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
1277 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1278 <div class="refsect3">
1279 <a name="id-1.2.2.9.39.4"></a><h4>Parameters</h4>
1280 <div class="informaltable"><table width="100%" border="0">
1281 <colgroup>
1282 <col width="150px" class="parameters_name">
1283 <col class="parameters_description">
1284 <col width="200px" class="parameters_annotations">
1285 </colgroup>
1286 <tbody>
1287 <tr>
1288 <td class="parameter_name"><p>conn</p></td>
1289 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
1290 <td class="parameter_annotations"> </td>
1291 </tr>
1292 <tr>
1293 <td class="parameter_name"><p>result</p></td>
1294 <td class="parameter_description"><p> async method result. </p></td>
1295 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1296 </tr>
1297 </tbody>
1298 </table></div>
1299 </div>
1300 </div>
1301 <hr>
1302 <div class="refsect2">
1303 <a name="gvir-connection-get-storage-pools"></a><h3>gvir_connection_get_storage_pools ()</h3>
1304 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
1305 gvir_connection_get_storage_pools (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
1306 <p>Gets a list of the storage pools available through <em class="parameter"><code>conn</code></em>
1307 .</p>
1308 <div class="refsect3">
1309 <a name="id-1.2.2.9.40.5"></a><h4>Parameters</h4>
1310 <div class="informaltable"><table width="100%" border="0">
1311 <colgroup>
1312 <col width="150px" class="parameters_name">
1313 <col class="parameters_description">
1314 <col width="200px" class="parameters_annotations">
1315 </colgroup>
1316 <tbody><tr>
1317 <td class="parameter_name"><p>conn</p></td>
1318 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
1319 <td class="parameter_annotations"> </td>
1320 </tr></tbody>
1321 </table></div>
1322 </div>
1323 <div class="refsect3">
1324 <a name="id-1.2.2.9.40.6"></a><h4>Returns</h4>
1325 <p> List
9561326 of <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a>. The returned list should be freed with
957 <code class="function">g_list_free()</code>, after its elements have been unreffed with
958 <code class="function">g_object_unref()</code>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGObject.StoragePool][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
959 </td>
960 </tr>
961 </tbody>
962 </table></div>
963 </div>
964 <hr>
965 <div class="refsect2">
966 <a name="gvir-connection-get-storage-pool"></a><h3>gvir_connection_get_storage_pool ()</h3>
967 <pre class="programlisting"><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="returnvalue">GVirStoragePool</span></a> * gvir_connection_get_storage_pool (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
968 <em class="parameter"><code>const <span class="type">gchar</span> *uuid</code></em>);</pre>
969 <div class="variablelist"><table border="0" class="variablelist">
970 <colgroup>
971 <col align="left" valign="top">
972 <col>
973 </colgroup>
974 <tbody>
975 <tr>
976 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
977 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
978 </td>
979 </tr>
980 <tr>
981 <td><p><span class="term"><em class="parameter"><code>uuid</code></em> :</span></p></td>
982 <td>uuid string of the requested storage pool</td>
983 </tr>
984 <tr>
985 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
986 <td>the <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a>, or NULL. The returned
987 object should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
988 </td>
989 </tr>
990 </tbody>
991 </table></div>
992 </div>
993 <hr>
994 <div class="refsect2">
995 <a name="gvir-connection-find-storage-pool-by-name"></a><h3>gvir_connection_find_storage_pool_by_name ()</h3>
996 <pre class="programlisting"><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="returnvalue">GVirStoragePool</span></a> * gvir_connection_find_storage_pool_by_name
997 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
998 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
999 <div class="variablelist"><table border="0" class="variablelist">
1000 <colgroup>
1001 <col align="left" valign="top">
1002 <col>
1003 </colgroup>
1004 <tbody>
1005 <tr>
1006 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
1007 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
1008 </td>
1009 </tr>
1010 <tr>
1011 <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1012 <td>name of the requested storage pool</td>
1013 </tr>
1014 <tr>
1015 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1016 <td>the <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a>, or NULL. The returned
1017 object should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1018 </td>
1019 </tr>
1020 </tbody>
1021 </table></div>
1022 </div>
1023 <hr>
1024 <div class="refsect2">
1025 <a name="gvir-connection-create-storage-pool"></a><h3>gvir_connection_create_storage_pool ()</h3>
1026 <pre class="programlisting"><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="returnvalue">GVirStoragePool</span></a> * gvir_connection_create_storage_pool (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1027 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStoragePool.html"><span class="type">GVirConfigStoragePool</span></a> *conf</code></em>,
1028 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1029 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1030 <div class="variablelist"><table border="0" class="variablelist">
1031 <colgroup>
1032 <col align="left" valign="top">
1033 <col>
1034 </colgroup>
1035 <tbody>
1036 <tr>
1037 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
1038 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> on which to create the pool</td>
1039 </tr>
1040 <tr>
1041 <td><p><span class="term"><em class="parameter"><code>conf</code></em> :</span></p></td>
1042 <td>the configuration for the new storage pool</td>
1043 </tr>
1044 <tr>
1045 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
1046 <td>the flags</td>
1047 </tr>
1048 <tr>
1049 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
1050 <td>return location for any <span class="type">GError</span>
1051 </td>
1052 </tr>
1053 <tr>
1054 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1055 <td>the newly created storage pool, or NULL if an
1056 error occurred. The returned list should be freed with <code class="function">g_list_free()</code>,
1057 after its elements have been unreffed with <code class="function">g_object_unref()</code>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1058 </td>
1059 </tr>
1060 </tbody>
1061 </table></div>
1062 </div>
1063 <hr>
1064 <div class="refsect2">
1065 <a name="gvir-connection-get-stream"></a><h3>gvir_connection_get_stream ()</h3>
1066 <pre class="programlisting"><a class="link" href="GVirStream.html" title="GVirStream"><span class="returnvalue">GVirStream</span></a> * gvir_connection_get_stream (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1067 <em class="parameter"><code><span class="type">guint</span> flags</code></em>);</pre>
1068 <div class="variablelist"><table border="0" class="variablelist">
1069 <colgroup>
1070 <col align="left" valign="top">
1071 <col>
1072 </colgroup>
1073 <tbody>
1074 <tr>
1075 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
1076 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
1077 </td>
1078 </tr>
1079 <tr>
1080 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
1081 <td>flags to use for the stream</td>
1082 </tr>
1083 <tr>
1084 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1085 <td>a <a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> stream, or NULL.The returned
1086 object should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1087 </td>
1088 </tr>
1089 </tbody>
1090 </table></div>
1091 </div>
1092 <hr>
1093 <div class="refsect2">
1094 <a name="gvir-connection-get-node-info"></a><h3>gvir_connection_get_node_info ()</h3>
1095 <pre class="programlisting"><a class="link" href="GVirConnection.html#GVirNodeInfo"><span class="returnvalue">GVirNodeInfo</span></a> * gvir_connection_get_node_info (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1096 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1097 <div class="variablelist"><table border="0" class="variablelist">
1098 <colgroup>
1099 <col align="left" valign="top">
1100 <col>
1101 </colgroup>
1102 <tbody>
1103 <tr>
1104 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
1105 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
1106 </td>
1107 </tr>
1108 <tr>
1109 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
1110 <td>return location for any <span class="type">GError</span>
1111 </td>
1112 </tr>
1113 <tr>
1114 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1115 <td>the info, or NULL if an error occurred. The
1116 returned object should be unreffed with <code class="function">g_object_unref()</code> when no longer
1117 needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1118 </td>
1119 </tr>
1120 </tbody>
1121 </table></div>
1122 </div>
1123 <hr>
1124 <div class="refsect2">
1125 <a name="gvir-connection-get-capabilities"></a><h3>gvir_connection_get_capabilities ()</h3>
1126 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigCapabilities.html"><span class="returnvalue">GVirConfigCapabilities</span></a> * gvir_connection_get_capabilities
1127 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1128 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1129 <div class="variablelist"><table border="0" class="variablelist">
1130 <colgroup>
1131 <col align="left" valign="top">
1132 <col>
1133 </colgroup>
1134 <tbody>
1135 <tr>
1136 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
1137 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
1138 </td>
1139 </tr>
1140 <tr>
1141 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
1142 <td>return location for any <span class="type">GError</span>
1143 </td>
1144 </tr>
1145 <tr>
1146 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1147 <td>a <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigCapabilities.html"><span class="type">GVirConfigCapabilities</span></a> or NULL. The
1148 returned object should be unreffed with <code class="function">g_object_unref()</code> when no longer
1149 needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1150 </td>
1151 </tr>
1152 </tbody>
1153 </table></div>
1154 </div>
1155 <hr>
1156 <div class="refsect2">
1157 <a name="gvir-connection-get-capabilities-async"></a><h3>gvir_connection_get_capabilities_async ()</h3>
1158 <pre class="programlisting"><span class="returnvalue">void</span> gvir_connection_get_capabilities_async
1159 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1160 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
1161 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
1162 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
1163 <div class="variablelist"><table border="0" class="variablelist">
1164 <colgroup>
1165 <col align="left" valign="top">
1166 <col>
1167 </colgroup>
1168 <tbody>
1169 <tr>
1170 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
1171 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
1172 </td>
1173 </tr>
1174 <tr>
1175 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
1176 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1177 </td>
1178 </tr>
1179 <tr>
1180 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
1181 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
1182 </td>
1183 </tr>
1184 <tr>
1185 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1186 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
1187 </td>
1188 </tr>
1189 </tbody>
1190 </table></div>
1191 </div>
1192 <hr>
1193 <div class="refsect2">
1194 <a name="gvir-connection-get-capabilities-finish"></a><h3>gvir_connection_get_capabilities_finish ()</h3>
1195 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigCapabilities.html"><span class="returnvalue">GVirConfigCapabilities</span></a> * gvir_connection_get_capabilities_finish
1196 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1197 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
1198 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1199 <div class="variablelist"><table border="0" class="variablelist">
1200 <colgroup>
1201 <col align="left" valign="top">
1202 <col>
1203 </colgroup>
1204 <tbody>
1205 <tr>
1206 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
1207 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
1208 </td>
1209 </tr>
1210 <tr>
1211 <td><p><span class="term"><em class="parameter"><code>result</code></em> :</span></p></td>
1212 <td>async method result. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1213 </td>
1214 </tr>
1215 <tr>
1216 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1217 <td>a <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigCapabilities.html"><span class="type">GVirConfigCapabilities</span></a> or NULL. The
1218 returned object should be unreffed with <code class="function">g_object_unref()</code> when no longer
1219 needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1220 </td>
1221 </tr>
1222 </tbody>
1223 </table></div>
1224 </div>
1225 <hr>
1226 <div class="refsect2">
1227 <a name="gvir-connection-restore-domain-from-file"></a><h3>gvir_connection_restore_domain_from_file ()</h3>
1228 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_connection_restore_domain_from_file
1229 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1230 <em class="parameter"><code><span class="type">gchar</span> *filename</code></em>,
1231 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *custom_conf</code></em>,
1232 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1233 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1234 <p>
1235 Restores the domain saved with <a class="link" href="GVirDomain.html#gvir-domain-save-to-file" title="gvir_domain_save_to_file ()"><span class="type">gvir_domain_save_to_file</span></a>
1236 </p>
1237 <div class="variablelist"><table border="0" class="variablelist">
1238 <colgroup>
1239 <col align="left" valign="top">
1240 <col>
1241 </colgroup>
1242 <tbody>
1243 <tr>
1244 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
1245 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
1246 </td>
1247 </tr>
1248 <tr>
1249 <td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
1250 <td>path to input file</td>
1251 </tr>
1252 <tr>
1253 <td><p><span class="term"><em class="parameter"><code>custom_conf</code></em> :</span></p></td>
1254 <td>configuration for domain or NULL. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1255 </td>
1256 </tr>
1257 <tr>
1258 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
1259 <td>the flags</td>
1260 </tr>
1261 <tr>
1262 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1263 <td>TRUE on success, FALSE otherwise</td>
1264 </tr>
1265 </tbody>
1266 </table></div>
1267 </div>
1268 <hr>
1269 <div class="refsect2">
1270 <a name="gvir-connection-restore-domain-from-file-async"></a><h3>gvir_connection_restore_domain_from_file_async ()</h3>
1271 <pre class="programlisting"><span class="returnvalue">void</span> gvir_connection_restore_domain_from_file_async
1272 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1273 <em class="parameter"><code><span class="type">gchar</span> *filename</code></em>,
1274 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *custom_conf</code></em>,
1275 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1276 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
1277 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
1278 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
1279 <p>
1280 Asynchronous variant of <a class="link" href="GVirConnection.html#gvir-connection-restore-domain-from-file" title="gvir_connection_restore_domain_from_file ()"><span class="type">gvir_connection_restore_domain_from_file</span></a>
1281 </p>
1282 <div class="variablelist"><table border="0" class="variablelist">
1283 <colgroup>
1284 <col align="left" valign="top">
1285 <col>
1286 </colgroup>
1287 <tbody>
1288 <tr>
1289 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
1290 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
1291 </td>
1292 </tr>
1293 <tr>
1294 <td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
1295 <td>path to input file</td>
1296 </tr>
1297 <tr>
1298 <td><p><span class="term"><em class="parameter"><code>custom_conf</code></em> :</span></p></td>
1299 <td>configuration for domain. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1300 </td>
1301 </tr>
1302 <tr>
1303 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
1304 <td>the flags</td>
1305 </tr>
1306 <tr>
1307 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
1308 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1309 </td>
1310 </tr>
1311 <tr>
1312 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
1313 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
1314 </td>
1315 </tr>
1316 <tr>
1317 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1318 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
1319 </td>
1320 </tr>
1321 </tbody>
1322 </table></div>
1323 </div>
1324 <hr>
1325 <div class="refsect2">
1326 <a name="gvir-connection-restore-domain-from-file-finish"></a><h3>gvir_connection_restore_domain_from_file_finish ()</h3>
1327 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_connection_restore_domain_from_file_finish
1328 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1329 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
1330 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1331 <p>
1332 Finishes the operation started by <span class="type">gvir_restore_domain_from_file_async</span>.
1333 </p>
1334 <div class="variablelist"><table border="0" class="variablelist">
1335 <colgroup>
1336 <col align="left" valign="top">
1337 <col>
1338 </colgroup>
1339 <tbody>
1340 <tr>
1341 <td><p><span class="term"><em class="parameter"><code>conn</code></em> :</span></p></td>
1342 <td>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a>
1343 </td>
1344 </tr>
1345 <tr>
1346 <td><p><span class="term"><em class="parameter"><code>result</code></em> :</span></p></td>
1347 <td>async method result. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1348 </td>
1349 </tr>
1350 <tr>
1351 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
1352 <td>Place-holder for possible errors</td>
1353 </tr>
1354 <tr>
1355 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1356 <td>TRUE if domain was restored successfully, FALSE otherwise.</td>
1357 </tr>
1358 </tbody>
1359 </table></div>
1360 </div>
1327 <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>, after its elements have been unreffed with
1328 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. </p>
1329 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGObject.StoragePool][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1330 </div>
1331 </div>
1332 <hr>
1333 <div class="refsect2">
1334 <a name="gvir-connection-get-storage-pool"></a><h3>gvir_connection_get_storage_pool ()</h3>
1335 <pre class="programlisting"><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="returnvalue">GVirStoragePool</span></a> *
1336 gvir_connection_get_storage_pool (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1337 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *uuid</code></em>);</pre>
1338 <div class="refsect3">
1339 <a name="id-1.2.2.9.41.4"></a><h4>Parameters</h4>
1340 <div class="informaltable"><table width="100%" border="0">
1341 <colgroup>
1342 <col width="150px" class="parameters_name">
1343 <col class="parameters_description">
1344 <col width="200px" class="parameters_annotations">
1345 </colgroup>
1346 <tbody>
1347 <tr>
1348 <td class="parameter_name"><p>conn</p></td>
1349 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
1350 <td class="parameter_annotations"> </td>
1351 </tr>
1352 <tr>
1353 <td class="parameter_name"><p>uuid</p></td>
1354 <td class="parameter_description"><p>uuid string of the requested storage pool</p></td>
1355 <td class="parameter_annotations"> </td>
1356 </tr>
1357 </tbody>
1358 </table></div>
1359 </div>
1360 <div class="refsect3">
1361 <a name="id-1.2.2.9.41.5"></a><h4>Returns</h4>
1362 <p> the <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a>, or NULL. The returned
1363 object should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
1364 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1365 </div>
1366 </div>
1367 <hr>
1368 <div class="refsect2">
1369 <a name="gvir-connection-find-storage-pool-by-name"></a><h3>gvir_connection_find_storage_pool_by_name ()</h3>
1370 <pre class="programlisting"><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="returnvalue">GVirStoragePool</span></a> *
1371 gvir_connection_find_storage_pool_by_name
1372 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1373 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
1374 <div class="refsect3">
1375 <a name="id-1.2.2.9.42.4"></a><h4>Parameters</h4>
1376 <div class="informaltable"><table width="100%" border="0">
1377 <colgroup>
1378 <col width="150px" class="parameters_name">
1379 <col class="parameters_description">
1380 <col width="200px" class="parameters_annotations">
1381 </colgroup>
1382 <tbody>
1383 <tr>
1384 <td class="parameter_name"><p>conn</p></td>
1385 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
1386 <td class="parameter_annotations"> </td>
1387 </tr>
1388 <tr>
1389 <td class="parameter_name"><p>name</p></td>
1390 <td class="parameter_description"><p>name of the requested storage pool</p></td>
1391 <td class="parameter_annotations"> </td>
1392 </tr>
1393 </tbody>
1394 </table></div>
1395 </div>
1396 <div class="refsect3">
1397 <a name="id-1.2.2.9.42.5"></a><h4>Returns</h4>
1398 <p> the <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a>, or NULL. The returned
1399 object should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
1400 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1401 </div>
1402 </div>
1403 <hr>
1404 <div class="refsect2">
1405 <a name="gvir-connection-create-storage-pool"></a><h3>gvir_connection_create_storage_pool ()</h3>
1406 <pre class="programlisting"><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="returnvalue">GVirStoragePool</span></a> *
1407 gvir_connection_create_storage_pool (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1408 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStoragePool.html"><span class="type">GVirConfigStoragePool</span></a> *conf</code></em>,
1409 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1410 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1411 <div class="refsect3">
1412 <a name="id-1.2.2.9.43.4"></a><h4>Parameters</h4>
1413 <div class="informaltable"><table width="100%" border="0">
1414 <colgroup>
1415 <col width="150px" class="parameters_name">
1416 <col class="parameters_description">
1417 <col width="200px" class="parameters_annotations">
1418 </colgroup>
1419 <tbody>
1420 <tr>
1421 <td class="parameter_name"><p>conn</p></td>
1422 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> on which to create the pool</p></td>
1423 <td class="parameter_annotations"> </td>
1424 </tr>
1425 <tr>
1426 <td class="parameter_name"><p>conf</p></td>
1427 <td class="parameter_description"><p>the configuration for the new storage pool</p></td>
1428 <td class="parameter_annotations"> </td>
1429 </tr>
1430 <tr>
1431 <td class="parameter_name"><p>flags</p></td>
1432 <td class="parameter_description"><p>the flags</p></td>
1433 <td class="parameter_annotations"> </td>
1434 </tr>
1435 <tr>
1436 <td class="parameter_name"><p>err</p></td>
1437 <td class="parameter_description"><p>return location for any <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
1438 <td class="parameter_annotations"> </td>
1439 </tr>
1440 </tbody>
1441 </table></div>
1442 </div>
1443 <div class="refsect3">
1444 <a name="id-1.2.2.9.43.5"></a><h4>Returns</h4>
1445 <p> the newly created storage pool, or NULL if an
1446 error occurred. The returned list should be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>,
1447 after its elements have been unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. </p>
1448 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1449 </div>
1450 </div>
1451 <hr>
1452 <div class="refsect2">
1453 <a name="gvir-connection-get-stream"></a><h3>gvir_connection_get_stream ()</h3>
1454 <pre class="programlisting"><a class="link" href="GVirStream.html" title="GVirStream"><span class="returnvalue">GVirStream</span></a> *
1455 gvir_connection_get_stream (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1456 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>);</pre>
1457 <div class="refsect3">
1458 <a name="id-1.2.2.9.44.4"></a><h4>Parameters</h4>
1459 <div class="informaltable"><table width="100%" border="0">
1460 <colgroup>
1461 <col width="150px" class="parameters_name">
1462 <col class="parameters_description">
1463 <col width="200px" class="parameters_annotations">
1464 </colgroup>
1465 <tbody>
1466 <tr>
1467 <td class="parameter_name"><p>conn</p></td>
1468 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
1469 <td class="parameter_annotations"> </td>
1470 </tr>
1471 <tr>
1472 <td class="parameter_name"><p>flags</p></td>
1473 <td class="parameter_description"><p>flags to use for the stream</p></td>
1474 <td class="parameter_annotations"> </td>
1475 </tr>
1476 </tbody>
1477 </table></div>
1478 </div>
1479 <div class="refsect3">
1480 <a name="id-1.2.2.9.44.5"></a><h4>Returns</h4>
1481 <p> a <a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> stream, or NULL.The returned
1482 object should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
1483 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1484 </div>
1485 </div>
1486 <hr>
1487 <div class="refsect2">
1488 <a name="gvir-connection-get-node-info"></a><h3>gvir_connection_get_node_info ()</h3>
1489 <pre class="programlisting"><a class="link" href="GVirConnection.html#GVirNodeInfo"><span class="returnvalue">GVirNodeInfo</span></a> *
1490 gvir_connection_get_node_info (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1491 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1492 <div class="refsect3">
1493 <a name="id-1.2.2.9.45.4"></a><h4>Parameters</h4>
1494 <div class="informaltable"><table width="100%" border="0">
1495 <colgroup>
1496 <col width="150px" class="parameters_name">
1497 <col class="parameters_description">
1498 <col width="200px" class="parameters_annotations">
1499 </colgroup>
1500 <tbody>
1501 <tr>
1502 <td class="parameter_name"><p>conn</p></td>
1503 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
1504 <td class="parameter_annotations"> </td>
1505 </tr>
1506 <tr>
1507 <td class="parameter_name"><p>err</p></td>
1508 <td class="parameter_description"><p>return location for any <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
1509 <td class="parameter_annotations"> </td>
1510 </tr>
1511 </tbody>
1512 </table></div>
1513 </div>
1514 <div class="refsect3">
1515 <a name="id-1.2.2.9.45.5"></a><h4>Returns</h4>
1516 <p> the info, or NULL if an error occurred. The
1517 returned object should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer
1518 needed. </p>
1519 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1520 </div>
1521 </div>
1522 <hr>
1523 <div class="refsect2">
1524 <a name="gvir-connection-get-capabilities"></a><h3>gvir_connection_get_capabilities ()</h3>
1525 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigCapabilities.html"><span class="returnvalue">GVirConfigCapabilities</span></a> *
1526 gvir_connection_get_capabilities (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1527 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1528 <div class="refsect3">
1529 <a name="id-1.2.2.9.46.4"></a><h4>Parameters</h4>
1530 <div class="informaltable"><table width="100%" border="0">
1531 <colgroup>
1532 <col width="150px" class="parameters_name">
1533 <col class="parameters_description">
1534 <col width="200px" class="parameters_annotations">
1535 </colgroup>
1536 <tbody>
1537 <tr>
1538 <td class="parameter_name"><p>conn</p></td>
1539 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
1540 <td class="parameter_annotations"> </td>
1541 </tr>
1542 <tr>
1543 <td class="parameter_name"><p>err</p></td>
1544 <td class="parameter_description"><p>return location for any <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
1545 <td class="parameter_annotations"> </td>
1546 </tr>
1547 </tbody>
1548 </table></div>
1549 </div>
1550 <div class="refsect3">
1551 <a name="id-1.2.2.9.46.5"></a><h4>Returns</h4>
1552 <p> a <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigCapabilities.html"><span class="type">GVirConfigCapabilities</span></a> or NULL. The
1553 returned object should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer
1554 needed. </p>
1555 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1556 </div>
1557 </div>
1558 <hr>
1559 <div class="refsect2">
1560 <a name="gvir-connection-get-capabilities-async"></a><h3>gvir_connection_get_capabilities_async ()</h3>
1561 <pre class="programlisting"><span class="returnvalue">void</span>
1562 gvir_connection_get_capabilities_async
1563 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1564 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1565 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1566 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
1567 <div class="refsect3">
1568 <a name="id-1.2.2.9.47.4"></a><h4>Parameters</h4>
1569 <div class="informaltable"><table width="100%" border="0">
1570 <colgroup>
1571 <col width="150px" class="parameters_name">
1572 <col class="parameters_description">
1573 <col width="200px" class="parameters_annotations">
1574 </colgroup>
1575 <tbody>
1576 <tr>
1577 <td class="parameter_name"><p>conn</p></td>
1578 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
1579 <td class="parameter_annotations"> </td>
1580 </tr>
1581 <tr>
1582 <td class="parameter_name"><p>cancellable</p></td>
1583 <td class="parameter_description"><p> cancellation object. </p></td>
1584 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1585 </tr>
1586 <tr>
1587 <td class="parameter_name"><p>callback</p></td>
1588 <td class="parameter_description"><p> completion callback. </p></td>
1589 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
1590 </tr>
1591 <tr>
1592 <td class="parameter_name"><p>user_data</p></td>
1593 <td class="parameter_description"><p> opaque data for callback. </p></td>
1594 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
1595 </tr>
1596 </tbody>
1597 </table></div>
1598 </div>
1599 </div>
1600 <hr>
1601 <div class="refsect2">
1602 <a name="gvir-connection-get-capabilities-finish"></a><h3>gvir_connection_get_capabilities_finish ()</h3>
1603 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigCapabilities.html"><span class="returnvalue">GVirConfigCapabilities</span></a> *
1604 gvir_connection_get_capabilities_finish
1605 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1606 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
1607 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1608 <div class="refsect3">
1609 <a name="id-1.2.2.9.48.4"></a><h4>Parameters</h4>
1610 <div class="informaltable"><table width="100%" border="0">
1611 <colgroup>
1612 <col width="150px" class="parameters_name">
1613 <col class="parameters_description">
1614 <col width="200px" class="parameters_annotations">
1615 </colgroup>
1616 <tbody>
1617 <tr>
1618 <td class="parameter_name"><p>conn</p></td>
1619 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
1620 <td class="parameter_annotations"> </td>
1621 </tr>
1622 <tr>
1623 <td class="parameter_name"><p>result</p></td>
1624 <td class="parameter_description"><p> async method result. </p></td>
1625 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1626 </tr>
1627 </tbody>
1628 </table></div>
1629 </div>
1630 <div class="refsect3">
1631 <a name="id-1.2.2.9.48.5"></a><h4>Returns</h4>
1632 <p> a <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigCapabilities.html"><span class="type">GVirConfigCapabilities</span></a> or NULL. The
1633 returned object should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer
1634 needed. </p>
1635 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1636 </div>
1637 </div>
1638 <hr>
1639 <div class="refsect2">
1640 <a name="gvir-connection-restore-domain-from-file"></a><h3>gvir_connection_restore_domain_from_file ()</h3>
1641 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1642 gvir_connection_restore_domain_from_file
1643 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1644 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *filename</code></em>,
1645 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *custom_conf</code></em>,
1646 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1647 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1648 <p>Restores the domain saved with <a class="link" href="GVirDomain.html#gvir-domain-save-to-file" title="gvir_domain_save_to_file ()"><span class="type">gvir_domain_save_to_file</span></a></p>
1649 <div class="refsect3">
1650 <a name="id-1.2.2.9.49.5"></a><h4>Parameters</h4>
1651 <div class="informaltable"><table width="100%" border="0">
1652 <colgroup>
1653 <col width="150px" class="parameters_name">
1654 <col class="parameters_description">
1655 <col width="200px" class="parameters_annotations">
1656 </colgroup>
1657 <tbody>
1658 <tr>
1659 <td class="parameter_name"><p>conn</p></td>
1660 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
1661 <td class="parameter_annotations"> </td>
1662 </tr>
1663 <tr>
1664 <td class="parameter_name"><p>filename</p></td>
1665 <td class="parameter_description"><p>path to input file</p></td>
1666 <td class="parameter_annotations"> </td>
1667 </tr>
1668 <tr>
1669 <td class="parameter_name"><p>custom_conf</p></td>
1670 <td class="parameter_description"><p> configuration for domain or NULL. </p></td>
1671 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1672 </tr>
1673 <tr>
1674 <td class="parameter_name"><p>flags</p></td>
1675 <td class="parameter_description"><p>the flags</p></td>
1676 <td class="parameter_annotations"> </td>
1677 </tr>
1678 </tbody>
1679 </table></div>
1680 </div>
1681 <div class="refsect3">
1682 <a name="id-1.2.2.9.49.6"></a><h4>Returns</h4>
1683 <p> TRUE on success, FALSE otherwise</p>
1684 <p></p>
1685 </div>
1686 </div>
1687 <hr>
1688 <div class="refsect2">
1689 <a name="gvir-connection-restore-domain-from-file-async"></a><h3>gvir_connection_restore_domain_from_file_async ()</h3>
1690 <pre class="programlisting"><span class="returnvalue">void</span>
1691 gvir_connection_restore_domain_from_file_async
1692 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1693 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *filename</code></em>,
1694 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *custom_conf</code></em>,
1695 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1696 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1697 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1698 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
1699 <p>Asynchronous variant of <a class="link" href="GVirConnection.html#gvir-connection-restore-domain-from-file" title="gvir_connection_restore_domain_from_file ()"><span class="type">gvir_connection_restore_domain_from_file</span></a></p>
1700 <div class="refsect3">
1701 <a name="id-1.2.2.9.50.5"></a><h4>Parameters</h4>
1702 <div class="informaltable"><table width="100%" border="0">
1703 <colgroup>
1704 <col width="150px" class="parameters_name">
1705 <col class="parameters_description">
1706 <col width="200px" class="parameters_annotations">
1707 </colgroup>
1708 <tbody>
1709 <tr>
1710 <td class="parameter_name"><p>conn</p></td>
1711 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
1712 <td class="parameter_annotations"> </td>
1713 </tr>
1714 <tr>
1715 <td class="parameter_name"><p>filename</p></td>
1716 <td class="parameter_description"><p>path to input file</p></td>
1717 <td class="parameter_annotations"> </td>
1718 </tr>
1719 <tr>
1720 <td class="parameter_name"><p>custom_conf</p></td>
1721 <td class="parameter_description"><p> configuration for domain. </p></td>
1722 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1723 </tr>
1724 <tr>
1725 <td class="parameter_name"><p>flags</p></td>
1726 <td class="parameter_description"><p>the flags</p></td>
1727 <td class="parameter_annotations"> </td>
1728 </tr>
1729 <tr>
1730 <td class="parameter_name"><p>cancellable</p></td>
1731 <td class="parameter_description"><p> cancellation object. </p></td>
1732 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1733 </tr>
1734 <tr>
1735 <td class="parameter_name"><p>callback</p></td>
1736 <td class="parameter_description"><p> completion callback. </p></td>
1737 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
1738 </tr>
1739 <tr>
1740 <td class="parameter_name"><p>user_data</p></td>
1741 <td class="parameter_description"><p> opaque data for callback. </p></td>
1742 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
1743 </tr>
1744 </tbody>
1745 </table></div>
1746 </div>
1747 </div>
1748 <hr>
1749 <div class="refsect2">
1750 <a name="gvir-connection-restore-domain-from-file-finish"></a><h3>gvir_connection_restore_domain_from_file_finish ()</h3>
1751 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1752 gvir_connection_restore_domain_from_file_finish
1753 (<em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>,
1754 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
1755 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1756 <p>Finishes the operation started by <span class="type">gvir_restore_domain_from_file_async</span>.</p>
1757 <div class="refsect3">
1758 <a name="id-1.2.2.9.51.5"></a><h4>Parameters</h4>
1759 <div class="informaltable"><table width="100%" border="0">
1760 <colgroup>
1761 <col width="150px" class="parameters_name">
1762 <col class="parameters_description">
1763 <col width="200px" class="parameters_annotations">
1764 </colgroup>
1765 <tbody>
1766 <tr>
1767 <td class="parameter_name"><p>conn</p></td>
1768 <td class="parameter_description"><p>a <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a></p></td>
1769 <td class="parameter_annotations"> </td>
1770 </tr>
1771 <tr>
1772 <td class="parameter_name"><p>result</p></td>
1773 <td class="parameter_description"><p> async method result. </p></td>
1774 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1775 </tr>
1776 <tr>
1777 <td class="parameter_name"><p>err</p></td>
1778 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
1779 <td class="parameter_annotations"> </td>
1780 </tr>
1781 </tbody>
1782 </table></div>
1783 </div>
1784 <div class="refsect3">
1785 <a name="id-1.2.2.9.51.6"></a><h4>Returns</h4>
1786 <p> TRUE if domain was restored successfully, FALSE otherwise.</p>
1787 <p></p>
1788 </div>
1789 </div>
1790 </div>
1791 <div class="refsect1">
1792 <a name="GVirConnection.other_details"></a><h2>Types and Values</h2>
13611793 </div>
13621794 <div class="refsect1">
13631795 <a name="GVirConnection.property-details"></a><h2>Property Details</h2>
13641796 <div class="refsect2">
1365 <a name="GVirConnection--handle"></a><h3>The <code class="literal">"handle"</code> property</h3>
1366 <pre class="programlisting"> "handle" <span class="type">GVirConnectionHandle</span>* : Read / Write / Construct Only</pre>
1797 <a name="GVirConnection--handle"></a><h3>The <code class="literal">“handle”</code> property</h3>
1798 <pre class="programlisting"> “handle” <span class="type">GVirConnectionHandle</span> *</pre>
13671799 <p>The connection handle.</p>
1368 </div>
1369 <hr>
1370 <div class="refsect2">
1371 <a name="GVirConnection--uri"></a><h3>The <code class="literal">"uri"</code> property</h3>
1372 <pre class="programlisting"> "uri" <span class="type">gchar</span>* : Read / Write / Construct Only</pre>
1800 <p>Flags: Read / Write / Construct Only</p>
1801 </div>
1802 <hr>
1803 <div class="refsect2">
1804 <a name="GVirConnection--uri"></a><h3>The <code class="literal">“uri”</code> property</h3>
1805 <pre class="programlisting"> “uri” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
13731806 <p>The connection URI.</p>
1807 <p>Flags: Read / Write / Construct Only</p>
13741808 <p>Default value: NULL</p>
13751809 </div>
13761810 </div>
13771811 <div class="refsect1">
13781812 <a name="GVirConnection.signal-details"></a><h2>Signal Details</h2>
13791813 <div class="refsect2">
1380 <a name="GVirConnection-connection-closed"></a><h3>The <code class="literal">"connection-closed"</code> signal</h3>
1381 <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *gvirconnection,
1382 <span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
1383 </div>
1384 <hr>
1385 <div class="refsect2">
1386 <a name="GVirConnection-connection-opened"></a><h3>The <code class="literal">"connection-opened"</code> signal</h3>
1387 <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *gvirconnection,
1388 <span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
1389 </div>
1390 <hr>
1391 <div class="refsect2">
1392 <a name="GVirConnection-domain-added"></a><h3>The <code class="literal">"domain-added"</code> signal</h3>
1393 <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *gvirconnection,
1394 <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *arg1,
1395 <span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
1396 </div>
1397 <hr>
1398 <div class="refsect2">
1399 <a name="GVirConnection-domain-removed"></a><h3>The <code class="literal">"domain-removed"</code> signal</h3>
1400 <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *gvirconnection,
1401 <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *arg1,
1402 <span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
1814 <a name="GVirConnection-connection-closed"></a><h3>The <code class="literal">“connection-closed”</code> signal</h3>
1815 <pre class="programlisting"><span class="returnvalue">void</span>
1816 user_function (<a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *gvirconnection,
1817 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
1818 <p>Flags: Run First</p>
1819 </div>
1820 <hr>
1821 <div class="refsect2">
1822 <a name="GVirConnection-connection-opened"></a><h3>The <code class="literal">“connection-opened”</code> signal</h3>
1823 <pre class="programlisting"><span class="returnvalue">void</span>
1824 user_function (<a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *gvirconnection,
1825 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
1826 <p>Flags: Run First</p>
1827 </div>
1828 <hr>
1829 <div class="refsect2">
1830 <a name="GVirConnection-domain-added"></a><h3>The <code class="literal">“domain-added”</code> signal</h3>
1831 <pre class="programlisting"><span class="returnvalue">void</span>
1832 user_function (<a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *gvirconnection,
1833 <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *arg1,
1834 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
1835 <p>Flags: Run First</p>
1836 </div>
1837 <hr>
1838 <div class="refsect2">
1839 <a name="GVirConnection-domain-removed"></a><h3>The <code class="literal">“domain-removed”</code> signal</h3>
1840 <pre class="programlisting"><span class="returnvalue">void</span>
1841 user_function (<a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *gvirconnection,
1842 <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *arg1,
1843 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
1844 <p>Flags: Run First</p>
14031845 </div>
14041846 </div>
14051847 </div>
14061848 <div class="footer">
14071849 <hr>
1408 Generated by GTK-Doc V1.19</div>
1850 Generated by GTK-Doc V1.21</div>
14091851 </body>
14101852 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirDomain</title>
4 <title>Libvirt-gobject Reference Manual: GVirDomain</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirConnection.html" title="GVirConnection">
99 <link rel="next" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirConnection.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gobject Reference Manual</th>
20 <td><a accesskey="n" href="GVirDomainSnapshot.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirDomain.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirDomain.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirDomain.object-hierarchy" class="shortcut">Object Hierarchy</a>
28  | 
29 <a href="#GVirDomain.properties" class="shortcut">Properties</a>
30  | 
31 <a href="#GVirDomain.signals" class="shortcut">Signals</a>
32 </td></tr>
33 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirDomain.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirDomain.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
19 <a href="#GVirDomain.properties" class="shortcut">Properties</a></span><span id="nav_signals">  <span class="dim">|</span> 
20 <a href="#GVirDomain.signals" class="shortcut">Signals</a></span>
21 </td>
22 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
23 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
24 <td><a accesskey="p" href="GVirConnection.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
25 <td><a accesskey="n" href="GVirDomainSnapshot.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
26 </tr></table>
3427 <div class="refentry">
3528 <a name="GVirDomain"></a><div class="titlepage"></div>
3629 <div class="refnamediv"><table width="100%"><tr>
3831 <h2><span class="refentrytitle"><a name="GVirDomain.top_of_page"></a>GVirDomain</span></h2>
3932 <p>GVirDomain</p>
4033 </td>
41 <td valign="top" align="right"></td>
34 <td class="gallery_image" valign="top" align="right"></td>
4235 </tr></table></div>
43 <div class="refsynopsisdiv">
44 <a name="GVirDomain.synopsis"></a><h2>Synopsis</h2>
45 <a name="GVirDomainInfo"></a><pre class="synopsis">struct <a class="link" href="GVirDomain.html#GVirDomain-struct" title="struct GVirDomain">GVirDomain</a>;
46 struct <a class="link" href="GVirDomain.html#GVirDomainClass" title="struct GVirDomainClass">GVirDomainClass</a>;
47 enum <a class="link" href="GVirDomain.html#GVirDomainState" title="enum GVirDomainState">GVirDomainState</a>;
48 enum <a class="link" href="GVirDomain.html#GVirDomainStartFlags" title="enum GVirDomainStartFlags">GVirDomainStartFlags</a>;
49 enum <a class="link" href="GVirDomain.html#GVirDomainDeleteFlags" title="enum GVirDomainDeleteFlags">GVirDomainDeleteFlags</a>;
50 enum <a class="link" href="GVirDomain.html#GVirDomainXMLFlags" title="enum GVirDomainXMLFlags">GVirDomainXMLFlags</a>;
51 enum <a class="link" href="GVirDomain.html#GVirDomainShutdownFlags" title="enum GVirDomainShutdownFlags">GVirDomainShutdownFlags</a>;
52 enum <a class="link" href="GVirDomain.html#GVirDomainSnapshotCreateFlags" title="enum GVirDomainSnapshotCreateFlags">GVirDomainSnapshotCreateFlags</a>;
53 enum <a class="link" href="GVirDomain.html#GVirDomainUpdateDeviceFlags" title="enum GVirDomainUpdateDeviceFlags">GVirDomainUpdateDeviceFlags</a>;
54 enum <a class="link" href="GVirDomain.html#GVirDomainRebootFlags" title="enum GVirDomainRebootFlags">GVirDomainRebootFlags</a>;
55 struct <a class="link" href="GVirDomain.html#GVirDomainInfo-struct" title="struct GVirDomainInfo">GVirDomainInfo</a>;
56 const <span class="returnvalue">gchar</span> * <a class="link" href="GVirDomain.html#gvir-domain-get-name" title="gvir_domain_get_name ()">gvir_domain_get_name</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);
57 const <span class="returnvalue">gchar</span> * <a class="link" href="GVirDomain.html#gvir-domain-get-uuid" title="gvir_domain_get_uuid ()">gvir_domain_get_uuid</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);
58 <span class="returnvalue">gint</span> <a class="link" href="GVirDomain.html#gvir-domain-get-id" title="gvir_domain_get_id ()">gvir_domain_get_id</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
59 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
60 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-start" title="gvir_domain_start ()">gvir_domain_start</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
61 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
62 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
63 <span class="returnvalue">void</span> <a class="link" href="GVirDomain.html#gvir-domain-start-async" title="gvir_domain_start_async ()">gvir_domain_start_async</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
64 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
65 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
66 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
67 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
68 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-start-finish" title="gvir_domain_start_finish ()">gvir_domain_start_finish</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
69 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
70 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
71 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-resume" title="gvir_domain_resume ()">gvir_domain_resume</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
72 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
73 <span class="returnvalue">void</span> <a class="link" href="GVirDomain.html#gvir-domain-resume-async" title="gvir_domain_resume_async ()">gvir_domain_resume_async</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
74 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
75 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
76 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
77 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-resume-finish" title="gvir_domain_resume_finish ()">gvir_domain_resume_finish</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
78 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
79 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
80 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-wakeup" title="gvir_domain_wakeup ()">gvir_domain_wakeup</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
81 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
82 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
83 <span class="returnvalue">void</span> <a class="link" href="GVirDomain.html#gvir-domain-wakeup-async" title="gvir_domain_wakeup_async ()">gvir_domain_wakeup_async</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
84 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
85 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
86 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
87 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
88 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-wakeup-finish" title="gvir_domain_wakeup_finish ()">gvir_domain_wakeup_finish</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
89 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
90 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
91 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-stop" title="gvir_domain_stop ()">gvir_domain_stop</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
92 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
93 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
94 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-delete" title="gvir_domain_delete ()">gvir_domain_delete</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
95 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
96 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
97 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-shutdown" title="gvir_domain_shutdown ()">gvir_domain_shutdown</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
98 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
99 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
100 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-reboot" title="gvir_domain_reboot ()">gvir_domain_reboot</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
101 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
102 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
103 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-save-to-file" title="gvir_domain_save_to_file ()">gvir_domain_save_to_file</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
104 <em class="parameter"><code><span class="type">gchar</span> *filename</code></em>,
105 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *custom_conf</code></em>,
106 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
107 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
108 <span class="returnvalue">void</span> <a class="link" href="GVirDomain.html#gvir-domain-save-to-file-async" title="gvir_domain_save_to_file_async ()">gvir_domain_save_to_file_async</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
109 <em class="parameter"><code><span class="type">gchar</span> *filename</code></em>,
110 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *custom_conf</code></em>,
111 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
112 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
113 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
114 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
115 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-save-to-file-finish" title="gvir_domain_save_to_file_finish ()">gvir_domain_save_to_file_finish</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
116 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
117 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
118 <a class="link" href="GVirDomain.html#GVirDomainInfo"><span class="returnvalue">GVirDomainInfo</span></a> * <a class="link" href="GVirDomain.html#gvir-domain-get-info" title="gvir_domain_get_info ()">gvir_domain_get_info</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
119 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
120 <span class="returnvalue">void</span> <a class="link" href="GVirDomain.html#gvir-domain-get-info-async" title="gvir_domain_get_info_async ()">gvir_domain_get_info_async</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
121 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
122 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
123 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
124 <a class="link" href="GVirDomain.html#GVirDomainInfo"><span class="returnvalue">GVirDomainInfo</span></a> * <a class="link" href="GVirDomain.html#gvir-domain-get-info-finish" title="gvir_domain_get_info_finish ()">gvir_domain_get_info_finish</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
125 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
126 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
127 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="returnvalue">GVirConfigDomain</span></a> * <a class="link" href="GVirDomain.html#gvir-domain-get-config" title="gvir_domain_get_config ()">gvir_domain_get_config</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
128 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
129 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
130 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-set-config" title="gvir_domain_set_config ()">gvir_domain_set_config</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *domain</code></em>,
131 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *conf</code></em>,
132 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
133 <span class="returnvalue">gchar</span> * <a class="link" href="GVirDomain.html#gvir-domain-screenshot" title="gvir_domain_screenshot ()">gvir_domain_screenshot</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
134 <em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
135 <em class="parameter"><code><span class="type">guint</span> monitor_id</code></em>,
136 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
137 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
138 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-open-console" title="gvir_domain_open_console ()">gvir_domain_open_console</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
139 <em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
140 <em class="parameter"><code>const <span class="type">gchar</span> *devname</code></em>,
141 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
142 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
143 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-open-graphics" title="gvir_domain_open_graphics ()">gvir_domain_open_graphics</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
144 <em class="parameter"><code><span class="type">guint</span> idx</code></em>,
145 <em class="parameter"><code><span class="type">int</span> fd</code></em>,
146 <em class="parameter"><code>unsigned <span class="type">int</span> flags</code></em>,
147 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
148 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-suspend" title="gvir_domain_suspend ()">gvir_domain_suspend</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
149 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
150 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-save" title="gvir_domain_save ()">gvir_domain_save</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
151 <em class="parameter"><code>unsigned <span class="type">int</span> flags</code></em>,
152 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
153 <span class="returnvalue">void</span> <a class="link" href="GVirDomain.html#gvir-domain-save-async" title="gvir_domain_save_async ()">gvir_domain_save_async</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
154 <em class="parameter"><code>unsigned <span class="type">int</span> flags</code></em>,
155 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
156 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
157 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
158 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-save-finish" title="gvir_domain_save_finish ()">gvir_domain_save_finish</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
159 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
160 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
161 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-get-persistent" title="gvir_domain_get_persistent ()">gvir_domain_get_persistent</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);
162 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-get-saved" title="gvir_domain_get_saved ()">gvir_domain_get_saved</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);
163 <span class="returnvalue">GList</span> * <a class="link" href="GVirDomain.html#gvir-domain-get-devices" title="gvir_domain_get_devices ()">gvir_domain_get_devices</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *domain</code></em>,
164 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
165 <span class="returnvalue">gboolean</span> <a class="link" href="GVirDomain.html#gvir-domain-update-device" title="gvir_domain_update_device ()">gvir_domain_update_device</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
166 <em class="parameter"><code><span class="type">GVirConfigDomainDevice</span> *device</code></em>,
167 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
168 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
169 <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="returnvalue">GVirDomainSnapshot</span></a> * <a class="link" href="GVirDomain.html#gvir-domain-create-snapshot" title="gvir_domain_create_snapshot ()">gvir_domain_create_snapshot</a> (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
170 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomainSnapshot.html"><span class="type">GVirConfigDomainSnapshot</span></a> *custom_conf</code></em>,
171 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
172 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
173 </pre>
36 <div class="refsect1">
37 <a name="GVirDomain.functions"></a><h2>Functions</h2>
38 <div class="informaltable"><table width="100%" border="0">
39 <colgroup>
40 <col width="150px" class="functions_return">
41 <col class="functions_name">
42 </colgroup>
43 <tbody>
44 <tr>
45 <td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
46 </td>
47 <td class="function_name">
48 <a class="link" href="GVirDomain.html#gvir-domain-get-name" title="gvir_domain_get_name ()">gvir_domain_get_name</a> <span class="c_punctuation">()</span>
49 </td>
50 </tr>
51 <tr>
52 <td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
53 </td>
54 <td class="function_name">
55 <a class="link" href="GVirDomain.html#gvir-domain-get-uuid" title="gvir_domain_get_uuid ()">gvir_domain_get_uuid</a> <span class="c_punctuation">()</span>
56 </td>
57 </tr>
58 <tr>
59 <td class="function_type">
60 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
61 </td>
62 <td class="function_name">
63 <a class="link" href="GVirDomain.html#gvir-domain-get-id" title="gvir_domain_get_id ()">gvir_domain_get_id</a> <span class="c_punctuation">()</span>
64 </td>
65 </tr>
66 <tr>
67 <td class="function_type">
68 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
69 </td>
70 <td class="function_name">
71 <a class="link" href="GVirDomain.html#gvir-domain-start" title="gvir_domain_start ()">gvir_domain_start</a> <span class="c_punctuation">()</span>
72 </td>
73 </tr>
74 <tr>
75 <td class="function_type">
76 <span class="returnvalue">void</span>
77 </td>
78 <td class="function_name">
79 <a class="link" href="GVirDomain.html#gvir-domain-start-async" title="gvir_domain_start_async ()">gvir_domain_start_async</a> <span class="c_punctuation">()</span>
80 </td>
81 </tr>
82 <tr>
83 <td class="function_type">
84 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
85 </td>
86 <td class="function_name">
87 <a class="link" href="GVirDomain.html#gvir-domain-start-finish" title="gvir_domain_start_finish ()">gvir_domain_start_finish</a> <span class="c_punctuation">()</span>
88 </td>
89 </tr>
90 <tr>
91 <td class="function_type">
92 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
93 </td>
94 <td class="function_name">
95 <a class="link" href="GVirDomain.html#gvir-domain-resume" title="gvir_domain_resume ()">gvir_domain_resume</a> <span class="c_punctuation">()</span>
96 </td>
97 </tr>
98 <tr>
99 <td class="function_type">
100 <span class="returnvalue">void</span>
101 </td>
102 <td class="function_name">
103 <a class="link" href="GVirDomain.html#gvir-domain-resume-async" title="gvir_domain_resume_async ()">gvir_domain_resume_async</a> <span class="c_punctuation">()</span>
104 </td>
105 </tr>
106 <tr>
107 <td class="function_type">
108 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
109 </td>
110 <td class="function_name">
111 <a class="link" href="GVirDomain.html#gvir-domain-resume-finish" title="gvir_domain_resume_finish ()">gvir_domain_resume_finish</a> <span class="c_punctuation">()</span>
112 </td>
113 </tr>
114 <tr>
115 <td class="function_type">
116 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
117 </td>
118 <td class="function_name">
119 <a class="link" href="GVirDomain.html#gvir-domain-wakeup" title="gvir_domain_wakeup ()">gvir_domain_wakeup</a> <span class="c_punctuation">()</span>
120 </td>
121 </tr>
122 <tr>
123 <td class="function_type">
124 <span class="returnvalue">void</span>
125 </td>
126 <td class="function_name">
127 <a class="link" href="GVirDomain.html#gvir-domain-wakeup-async" title="gvir_domain_wakeup_async ()">gvir_domain_wakeup_async</a> <span class="c_punctuation">()</span>
128 </td>
129 </tr>
130 <tr>
131 <td class="function_type">
132 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
133 </td>
134 <td class="function_name">
135 <a class="link" href="GVirDomain.html#gvir-domain-wakeup-finish" title="gvir_domain_wakeup_finish ()">gvir_domain_wakeup_finish</a> <span class="c_punctuation">()</span>
136 </td>
137 </tr>
138 <tr>
139 <td class="function_type">
140 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
141 </td>
142 <td class="function_name">
143 <a class="link" href="GVirDomain.html#gvir-domain-stop" title="gvir_domain_stop ()">gvir_domain_stop</a> <span class="c_punctuation">()</span>
144 </td>
145 </tr>
146 <tr>
147 <td class="function_type">
148 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
149 </td>
150 <td class="function_name">
151 <a class="link" href="GVirDomain.html#gvir-domain-delete" title="gvir_domain_delete ()">gvir_domain_delete</a> <span class="c_punctuation">()</span>
152 </td>
153 </tr>
154 <tr>
155 <td class="function_type">
156 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
157 </td>
158 <td class="function_name">
159 <a class="link" href="GVirDomain.html#gvir-domain-shutdown" title="gvir_domain_shutdown ()">gvir_domain_shutdown</a> <span class="c_punctuation">()</span>
160 </td>
161 </tr>
162 <tr>
163 <td class="function_type">
164 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
165 </td>
166 <td class="function_name">
167 <a class="link" href="GVirDomain.html#gvir-domain-reboot" title="gvir_domain_reboot ()">gvir_domain_reboot</a> <span class="c_punctuation">()</span>
168 </td>
169 </tr>
170 <tr>
171 <td class="function_type">
172 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
173 </td>
174 <td class="function_name">
175 <a class="link" href="GVirDomain.html#gvir-domain-save-to-file" title="gvir_domain_save_to_file ()">gvir_domain_save_to_file</a> <span class="c_punctuation">()</span>
176 </td>
177 </tr>
178 <tr>
179 <td class="function_type">
180 <span class="returnvalue">void</span>
181 </td>
182 <td class="function_name">
183 <a class="link" href="GVirDomain.html#gvir-domain-save-to-file-async" title="gvir_domain_save_to_file_async ()">gvir_domain_save_to_file_async</a> <span class="c_punctuation">()</span>
184 </td>
185 </tr>
186 <tr>
187 <td class="function_type">
188 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
189 </td>
190 <td class="function_name">
191 <a class="link" href="GVirDomain.html#gvir-domain-save-to-file-finish" title="gvir_domain_save_to_file_finish ()">gvir_domain_save_to_file_finish</a> <span class="c_punctuation">()</span>
192 </td>
193 </tr>
194 <tr>
195 <td class="function_type">
196 <a class="link" href="GVirDomain.html#GVirDomainInfo"><span class="returnvalue">GVirDomainInfo</span></a> *
197 </td>
198 <td class="function_name">
199 <a class="link" href="GVirDomain.html#gvir-domain-get-info" title="gvir_domain_get_info ()">gvir_domain_get_info</a> <span class="c_punctuation">()</span>
200 </td>
201 </tr>
202 <tr>
203 <td class="function_type">
204 <span class="returnvalue">void</span>
205 </td>
206 <td class="function_name">
207 <a class="link" href="GVirDomain.html#gvir-domain-get-info-async" title="gvir_domain_get_info_async ()">gvir_domain_get_info_async</a> <span class="c_punctuation">()</span>
208 </td>
209 </tr>
210 <tr>
211 <td class="function_type">
212 <a class="link" href="GVirDomain.html#GVirDomainInfo"><span class="returnvalue">GVirDomainInfo</span></a> *
213 </td>
214 <td class="function_name">
215 <a class="link" href="GVirDomain.html#gvir-domain-get-info-finish" title="gvir_domain_get_info_finish ()">gvir_domain_get_info_finish</a> <span class="c_punctuation">()</span>
216 </td>
217 </tr>
218 <tr>
219 <td class="function_type">
220 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="returnvalue">GVirConfigDomain</span></a> *
221 </td>
222 <td class="function_name">
223 <a class="link" href="GVirDomain.html#gvir-domain-get-config" title="gvir_domain_get_config ()">gvir_domain_get_config</a> <span class="c_punctuation">()</span>
224 </td>
225 </tr>
226 <tr>
227 <td class="function_type">
228 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
229 </td>
230 <td class="function_name">
231 <a class="link" href="GVirDomain.html#gvir-domain-set-config" title="gvir_domain_set_config ()">gvir_domain_set_config</a> <span class="c_punctuation">()</span>
232 </td>
233 </tr>
234 <tr>
235 <td class="function_type">
236 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
237 </td>
238 <td class="function_name">
239 <a class="link" href="GVirDomain.html#gvir-domain-screenshot" title="gvir_domain_screenshot ()">gvir_domain_screenshot</a> <span class="c_punctuation">()</span>
240 </td>
241 </tr>
242 <tr>
243 <td class="function_type">
244 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
245 </td>
246 <td class="function_name">
247 <a class="link" href="GVirDomain.html#gvir-domain-open-console" title="gvir_domain_open_console ()">gvir_domain_open_console</a> <span class="c_punctuation">()</span>
248 </td>
249 </tr>
250 <tr>
251 <td class="function_type">
252 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
253 </td>
254 <td class="function_name">
255 <a class="link" href="GVirDomain.html#gvir-domain-open-graphics" title="gvir_domain_open_graphics ()">gvir_domain_open_graphics</a> <span class="c_punctuation">()</span>
256 </td>
257 </tr>
258 <tr>
259 <td class="function_type">
260 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
261 </td>
262 <td class="function_name">
263 <a class="link" href="GVirDomain.html#gvir-domain-suspend" title="gvir_domain_suspend ()">gvir_domain_suspend</a> <span class="c_punctuation">()</span>
264 </td>
265 </tr>
266 <tr>
267 <td class="function_type">
268 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
269 </td>
270 <td class="function_name">
271 <a class="link" href="GVirDomain.html#gvir-domain-save" title="gvir_domain_save ()">gvir_domain_save</a> <span class="c_punctuation">()</span>
272 </td>
273 </tr>
274 <tr>
275 <td class="function_type">
276 <span class="returnvalue">void</span>
277 </td>
278 <td class="function_name">
279 <a class="link" href="GVirDomain.html#gvir-domain-save-async" title="gvir_domain_save_async ()">gvir_domain_save_async</a> <span class="c_punctuation">()</span>
280 </td>
281 </tr>
282 <tr>
283 <td class="function_type">
284 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
285 </td>
286 <td class="function_name">
287 <a class="link" href="GVirDomain.html#gvir-domain-save-finish" title="gvir_domain_save_finish ()">gvir_domain_save_finish</a> <span class="c_punctuation">()</span>
288 </td>
289 </tr>
290 <tr>
291 <td class="function_type">
292 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
293 </td>
294 <td class="function_name">
295 <a class="link" href="GVirDomain.html#gvir-domain-get-persistent" title="gvir_domain_get_persistent ()">gvir_domain_get_persistent</a> <span class="c_punctuation">()</span>
296 </td>
297 </tr>
298 <tr>
299 <td class="function_type">
300 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
301 </td>
302 <td class="function_name">
303 <a class="link" href="GVirDomain.html#gvir-domain-get-saved" title="gvir_domain_get_saved ()">gvir_domain_get_saved</a> <span class="c_punctuation">()</span>
304 </td>
305 </tr>
306 <tr>
307 <td class="function_type">
308 <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
309 </td>
310 <td class="function_name">
311 <a class="link" href="GVirDomain.html#gvir-domain-get-devices" title="gvir_domain_get_devices ()">gvir_domain_get_devices</a> <span class="c_punctuation">()</span>
312 </td>
313 </tr>
314 <tr>
315 <td class="function_type">
316 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
317 </td>
318 <td class="function_name">
319 <a class="link" href="GVirDomain.html#gvir-domain-update-device" title="gvir_domain_update_device ()">gvir_domain_update_device</a> <span class="c_punctuation">()</span>
320 </td>
321 </tr>
322 <tr>
323 <td class="function_type">
324 <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="returnvalue">GVirDomainSnapshot</span></a> *
325 </td>
326 <td class="function_name">
327 <a class="link" href="GVirDomain.html#gvir-domain-create-snapshot" title="gvir_domain_create_snapshot ()">gvir_domain_create_snapshot</a> <span class="c_punctuation">()</span>
328 </td>
329 </tr>
330 <tr>
331 <td class="function_type">
332 <span class="returnvalue">void</span>
333 </td>
334 <td class="function_name">
335 <a class="link" href="GVirDomain.html#gvir-domain-create-snapshot-async" title="gvir_domain_create_snapshot_async ()">gvir_domain_create_snapshot_async</a> <span class="c_punctuation">()</span>
336 </td>
337 </tr>
338 <tr>
339 <td class="function_type">
340 <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="returnvalue">GVirDomainSnapshot</span></a> *
341 </td>
342 <td class="function_name">
343 <a class="link" href="GVirDomain.html#gvir-domain-create-snapshot-finish" title="gvir_domain_create_snapshot_finish ()">gvir_domain_create_snapshot_finish</a> <span class="c_punctuation">()</span>
344 </td>
345 </tr>
346 <tr>
347 <td class="function_type">
348 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
349 </td>
350 <td class="function_name">
351 <a class="link" href="GVirDomain.html#gvir-domain-fetch-snapshots" title="gvir_domain_fetch_snapshots ()">gvir_domain_fetch_snapshots</a> <span class="c_punctuation">()</span>
352 </td>
353 </tr>
354 <tr>
355 <td class="function_type">
356 <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
357 </td>
358 <td class="function_name">
359 <a class="link" href="GVirDomain.html#gvir-domain-get-snapshots" title="gvir_domain_get_snapshots ()">gvir_domain_get_snapshots</a> <span class="c_punctuation">()</span>
360 </td>
361 </tr>
362 <tr>
363 <td class="function_type">
364 <span class="returnvalue">void</span>
365 </td>
366 <td class="function_name">
367 <a class="link" href="GVirDomain.html#gvir-domain-fetch-snapshots-async" title="gvir_domain_fetch_snapshots_async ()">gvir_domain_fetch_snapshots_async</a> <span class="c_punctuation">()</span>
368 </td>
369 </tr>
370 <tr>
371 <td class="function_type">
372 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
373 </td>
374 <td class="function_name">
375 <a class="link" href="GVirDomain.html#gvir-domain-fetch-snapshots-finish" title="gvir_domain_fetch_snapshots_finish ()">gvir_domain_fetch_snapshots_finish</a> <span class="c_punctuation">()</span>
376 </td>
377 </tr>
378 <tr>
379 <td class="function_type">
380 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
381 </td>
382 <td class="function_name">
383 <a class="link" href="GVirDomain.html#gvir-domain-get-has-current-snapshot" title="gvir_domain_get_has_current_snapshot ()">gvir_domain_get_has_current_snapshot</a> <span class="c_punctuation">()</span>
384 </td>
385 </tr>
386 </tbody>
387 </table></div>
388 </div>
389 <div class="refsect1">
390 <a name="GVirDomain.properties"></a><h2>Properties</h2>
391 <div class="informaltable"><table border="0">
392 <colgroup>
393 <col width="150px" class="properties_type">
394 <col width="300px" class="properties_name">
395 <col width="200px" class="properties_flags">
396 </colgroup>
397 <tbody>
398 <tr>
399 <td class="property_type">
400 <span class="type">GVirDomainHandle</span> *</td>
401 <td class="property_name"><a class="link" href="GVirDomain.html#GVirDomain--handle" title="The “handle” property">handle</a></td>
402 <td class="property_flags">Read / Write / Construct Only</td>
403 </tr>
404 <tr>
405 <td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
406 <td class="property_name"><a class="link" href="GVirDomain.html#GVirDomain--persistent" title="The “persistent” property">persistent</a></td>
407 <td class="property_flags">Read</td>
408 </tr>
409 </tbody>
410 </table></div>
411 </div>
412 <div class="refsect1">
413 <a name="GVirDomain.signals"></a><h2>Signals</h2>
414 <div class="informaltable"><table border="0">
415 <colgroup>
416 <col width="150px" class="signals_return">
417 <col width="300px" class="signals_name">
418 <col width="200px" class="signals_flags">
419 </colgroup>
420 <tbody>
421 <tr>
422 <td class="signal_type"><span class="returnvalue">void</span></td>
423 <td class="signal_name"><a class="link" href="GVirDomain.html#GVirDomain-pmsuspended" title="The “pmsuspended” signal">pmsuspended</a></td>
424 <td class="signal_flags">No Hooks</td>
425 </tr>
426 <tr>
427 <td class="signal_type"><span class="returnvalue">void</span></td>
428 <td class="signal_name"><a class="link" href="GVirDomain.html#GVirDomain-resumed" title="The “resumed” signal">resumed</a></td>
429 <td class="signal_flags">No Hooks</td>
430 </tr>
431 <tr>
432 <td class="signal_type"><span class="returnvalue">void</span></td>
433 <td class="signal_name"><a class="link" href="GVirDomain.html#GVirDomain-started" title="The “started” signal">started</a></td>
434 <td class="signal_flags">No Hooks</td>
435 </tr>
436 <tr>
437 <td class="signal_type"><span class="returnvalue">void</span></td>
438 <td class="signal_name"><a class="link" href="GVirDomain.html#GVirDomain-stopped" title="The “stopped” signal">stopped</a></td>
439 <td class="signal_flags">No Hooks</td>
440 </tr>
441 <tr>
442 <td class="signal_type"><span class="returnvalue">void</span></td>
443 <td class="signal_name"><a class="link" href="GVirDomain.html#GVirDomain-suspended" title="The “suspended” signal">suspended</a></td>
444 <td class="signal_flags">No Hooks</td>
445 </tr>
446 <tr>
447 <td class="signal_type"><span class="returnvalue">void</span></td>
448 <td class="signal_name"><a class="link" href="GVirDomain.html#GVirDomain-updated" title="The “updated” signal">updated</a></td>
449 <td class="signal_flags">No Hooks</td>
450 </tr>
451 </tbody>
452 </table></div>
453 </div>
454 <a name="GVirDomainInfo"></a><div class="refsect1">
455 <a name="GVirDomain.other"></a><h2>Types and Values</h2>
456 <div class="informaltable"><table width="100%" border="0">
457 <colgroup>
458 <col width="150px" class="name">
459 <col class="description">
460 </colgroup>
461 <tbody>
462 <tr>
463 <td class="datatype_keyword">enum</td>
464 <td class="function_name"><a class="link" href="GVirDomain.html#GVirDomainState" title="enum GVirDomainState">GVirDomainState</a></td>
465 </tr>
466 <tr>
467 <td class="datatype_keyword">enum</td>
468 <td class="function_name"><a class="link" href="GVirDomain.html#GVirDomainStartFlags" title="enum GVirDomainStartFlags">GVirDomainStartFlags</a></td>
469 </tr>
470 <tr>
471 <td class="datatype_keyword">enum</td>
472 <td class="function_name"><a class="link" href="GVirDomain.html#GVirDomainDeleteFlags" title="enum GVirDomainDeleteFlags">GVirDomainDeleteFlags</a></td>
473 </tr>
474 <tr>
475 <td class="datatype_keyword">enum</td>
476 <td class="function_name"><a class="link" href="GVirDomain.html#GVirDomainXMLFlags" title="enum GVirDomainXMLFlags">GVirDomainXMLFlags</a></td>
477 </tr>
478 <tr>
479 <td class="datatype_keyword">enum</td>
480 <td class="function_name"><a class="link" href="GVirDomain.html#GVirDomainShutdownFlags" title="enum GVirDomainShutdownFlags">GVirDomainShutdownFlags</a></td>
481 </tr>
482 <tr>
483 <td class="datatype_keyword">enum</td>
484 <td class="function_name"><a class="link" href="GVirDomain.html#GVirDomainSnapshotCreateFlags" title="enum GVirDomainSnapshotCreateFlags">GVirDomainSnapshotCreateFlags</a></td>
485 </tr>
486 <tr>
487 <td class="datatype_keyword">enum</td>
488 <td class="function_name"><a class="link" href="GVirDomain.html#GVirDomainUpdateDeviceFlags" title="enum GVirDomainUpdateDeviceFlags">GVirDomainUpdateDeviceFlags</a></td>
489 </tr>
490 <tr>
491 <td class="datatype_keyword">enum</td>
492 <td class="function_name"><a class="link" href="GVirDomain.html#GVirDomainRebootFlags" title="enum GVirDomainRebootFlags">GVirDomainRebootFlags</a></td>
493 </tr>
494 <tr>
495 <td class="datatype_keyword">enum</td>
496 <td class="function_name"><a class="link" href="GVirDomain.html#GVirDomainSnapshotListFlags" title="enum GVirDomainSnapshotListFlags">GVirDomainSnapshotListFlags</a></td>
497 </tr>
498 </tbody>
499 </table></div>
174500 </div>
175501 <div class="refsect1">
176502 <a name="GVirDomain.object-hierarchy"></a><h2>Object Hierarchy</h2>
177 <pre class="synopsis">
178 GObject
179 +----GVirDomain
180 </pre>
181 <pre class="synopsis">
182 GBoxed
183 +----GVirDomainInfo
184 </pre>
185 </div>
186 <div class="refsect1">
187 <a name="GVirDomain.properties"></a><h2>Properties</h2>
188 <pre class="synopsis">
189 "<a class="link" href="GVirDomain.html#GVirDomain--handle" title='The "handle" property'>handle</a>" <span class="type">GVirDomainHandle</span>* : Read / Write / Construct Only
190 "<a class="link" href="GVirDomain.html#GVirDomain--persistent" title='The "persistent" property'>persistent</a>" <span class="type">gboolean</span> : Read
191 </pre>
192 </div>
193 <div class="refsect1">
194 <a name="GVirDomain.signals"></a><h2>Signals</h2>
195 <pre class="synopsis">
196 "<a class="link" href="GVirDomain.html#GVirDomain-pmsuspended" title='The "pmsuspended" signal'>pmsuspended</a>" : <code class="literal">No Hooks</code>
197 "<a class="link" href="GVirDomain.html#GVirDomain-resumed" title='The "resumed" signal'>resumed</a>" : <code class="literal">No Hooks</code>
198 "<a class="link" href="GVirDomain.html#GVirDomain-started" title='The "started" signal'>started</a>" : <code class="literal">No Hooks</code>
199 "<a class="link" href="GVirDomain.html#GVirDomain-stopped" title='The "stopped" signal'>stopped</a>" : <code class="literal">No Hooks</code>
200 "<a class="link" href="GVirDomain.html#GVirDomain-suspended" title='The "suspended" signal'>suspended</a>" : <code class="literal">No Hooks</code>
201 "<a class="link" href="GVirDomain.html#GVirDomain-updated" title='The "updated" signal'>updated</a>" : <code class="literal">No Hooks</code>
503 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html">GBoxed</a>
504 <span class="lineart">╰──</span> GVirDomainInfo
505 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
506 <span class="lineart">╰──</span> GVirDomain
202507 </pre>
203508 </div>
204509 <div class="refsect1">
205510 <a name="GVirDomain.description"></a><h2>Description</h2>
206511 </div>
207512 <div class="refsect1">
208 <a name="GVirDomain.details"></a><h2>Details</h2>
209 <div class="refsect2">
210 <a name="GVirDomain-struct"></a><h3>struct GVirDomain</h3>
211 <pre class="programlisting">struct GVirDomain;</pre>
212 </div>
213 <hr>
214 <div class="refsect2">
215 <a name="GVirDomainClass"></a><h3>struct GVirDomainClass</h3>
216 <pre class="programlisting">struct GVirDomainClass {
217 GObjectClass parent_class;
218
219 /* signals */
220 void (*started)(GVirDomain *dom);
221 void (*stopped)(GVirDomain *dom);
222 void (*resumed)(GVirDomain *dom);
223 void (*updated)(GVirDomain *dom);
224 void (*suspended)(GVirDomain *dom);
225 void (*pmsuspended)(GVirDomain *dom);
226
227 gpointer padding[19];
228 };
229 </pre>
230 </div>
231 <hr>
513 <a name="GVirDomain.functions_details"></a><h2>Functions</h2>
514 <div class="refsect2">
515 <a name="gvir-domain-get-name"></a><h3>gvir_domain_get_name ()</h3>
516 <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
517 gvir_domain_get_name (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);</pre>
518 </div>
519 <hr>
520 <div class="refsect2">
521 <a name="gvir-domain-get-uuid"></a><h3>gvir_domain_get_uuid ()</h3>
522 <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
523 gvir_domain_get_uuid (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);</pre>
524 </div>
525 <hr>
526 <div class="refsect2">
527 <a name="gvir-domain-get-id"></a><h3>gvir_domain_get_id ()</h3>
528 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
529 gvir_domain_get_id (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
530 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
531 </div>
532 <hr>
533 <div class="refsect2">
534 <a name="gvir-domain-start"></a><h3>gvir_domain_start ()</h3>
535 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
536 gvir_domain_start (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
537 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
538 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
539 <div class="refsect3">
540 <a name="id-1.2.3.10.5.4"></a><h4>Parameters</h4>
541 <div class="informaltable"><table width="100%" border="0">
542 <colgroup>
543 <col width="150px" class="parameters_name">
544 <col class="parameters_description">
545 <col width="200px" class="parameters_annotations">
546 </colgroup>
547 <tbody>
548 <tr>
549 <td class="parameter_name"><p>dom</p></td>
550 <td class="parameter_description"><p>the domain</p></td>
551 <td class="parameter_annotations"> </td>
552 </tr>
553 <tr>
554 <td class="parameter_name"><p>flags</p></td>
555 <td class="parameter_description"><p>the flags</p></td>
556 <td class="parameter_annotations"> </td>
557 </tr>
558 </tbody>
559 </table></div>
560 </div>
561 </div>
562 <hr>
563 <div class="refsect2">
564 <a name="gvir-domain-start-async"></a><h3>gvir_domain_start_async ()</h3>
565 <pre class="programlisting"><span class="returnvalue">void</span>
566 gvir_domain_start_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
567 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
568 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
569 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
570 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
571 <p>Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-start" title="gvir_domain_start ()"><span class="type">gvir_domain_start</span></a>.</p>
572 <div class="refsect3">
573 <a name="id-1.2.3.10.6.5"></a><h4>Parameters</h4>
574 <div class="informaltable"><table width="100%" border="0">
575 <colgroup>
576 <col width="150px" class="parameters_name">
577 <col class="parameters_description">
578 <col width="200px" class="parameters_annotations">
579 </colgroup>
580 <tbody>
581 <tr>
582 <td class="parameter_name"><p>dom</p></td>
583 <td class="parameter_description"><p>the domain</p></td>
584 <td class="parameter_annotations"> </td>
585 </tr>
586 <tr>
587 <td class="parameter_name"><p>flags</p></td>
588 <td class="parameter_description"><p>the flags</p></td>
589 <td class="parameter_annotations"> </td>
590 </tr>
591 <tr>
592 <td class="parameter_name"><p>cancellable</p></td>
593 <td class="parameter_description"><p> cancellation object. </p></td>
594 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
595 </tr>
596 <tr>
597 <td class="parameter_name"><p>callback</p></td>
598 <td class="parameter_description"><p> completion callback. </p></td>
599 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
600 </tr>
601 <tr>
602 <td class="parameter_name"><p>user_data</p></td>
603 <td class="parameter_description"><p> opaque data for callback. </p></td>
604 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
605 </tr>
606 </tbody>
607 </table></div>
608 </div>
609 </div>
610 <hr>
611 <div class="refsect2">
612 <a name="gvir-domain-start-finish"></a><h3>gvir_domain_start_finish ()</h3>
613 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
614 gvir_domain_start_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
615 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
616 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
617 </div>
618 <hr>
619 <div class="refsect2">
620 <a name="gvir-domain-resume"></a><h3>gvir_domain_resume ()</h3>
621 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
622 gvir_domain_resume (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
623 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
624 <div class="refsect3">
625 <a name="id-1.2.3.10.8.4"></a><h4>Parameters</h4>
626 <div class="informaltable"><table width="100%" border="0">
627 <colgroup>
628 <col width="150px" class="parameters_name">
629 <col class="parameters_description">
630 <col width="200px" class="parameters_annotations">
631 </colgroup>
632 <tbody>
633 <tr>
634 <td class="parameter_name"><p>dom</p></td>
635 <td class="parameter_description"><p>the domain</p></td>
636 <td class="parameter_annotations"> </td>
637 </tr>
638 <tr>
639 <td class="parameter_name"><p>err</p></td>
640 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
641 <td class="parameter_annotations"> </td>
642 </tr>
643 </tbody>
644 </table></div>
645 </div>
646 <div class="refsect3">
647 <a name="id-1.2.3.10.8.5"></a><h4>Returns</h4>
648 <p> TRUE on success</p>
649 <p></p>
650 </div>
651 </div>
652 <hr>
653 <div class="refsect2">
654 <a name="gvir-domain-resume-async"></a><h3>gvir_domain_resume_async ()</h3>
655 <pre class="programlisting"><span class="returnvalue">void</span>
656 gvir_domain_resume_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
657 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
658 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
659 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
660 <p>Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-resume" title="gvir_domain_resume ()"><span class="type">gvir_domain_resume</span></a>.</p>
661 <div class="refsect3">
662 <a name="id-1.2.3.10.9.5"></a><h4>Parameters</h4>
663 <div class="informaltable"><table width="100%" border="0">
664 <colgroup>
665 <col width="150px" class="parameters_name">
666 <col class="parameters_description">
667 <col width="200px" class="parameters_annotations">
668 </colgroup>
669 <tbody>
670 <tr>
671 <td class="parameter_name"><p>dom</p></td>
672 <td class="parameter_description"><p>the domain to resume</p></td>
673 <td class="parameter_annotations"> </td>
674 </tr>
675 <tr>
676 <td class="parameter_name"><p>cancellable</p></td>
677 <td class="parameter_description"><p> cancellation object. </p></td>
678 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
679 </tr>
680 <tr>
681 <td class="parameter_name"><p>callback</p></td>
682 <td class="parameter_description"><p> completion callback. </p></td>
683 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
684 </tr>
685 <tr>
686 <td class="parameter_name"><p>user_data</p></td>
687 <td class="parameter_description"><p> opaque data for callback. </p></td>
688 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
689 </tr>
690 </tbody>
691 </table></div>
692 </div>
693 </div>
694 <hr>
695 <div class="refsect2">
696 <a name="gvir-domain-resume-finish"></a><h3>gvir_domain_resume_finish ()</h3>
697 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
698 gvir_domain_resume_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
699 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
700 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
701 </div>
702 <hr>
703 <div class="refsect2">
704 <a name="gvir-domain-wakeup"></a><h3>gvir_domain_wakeup ()</h3>
705 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
706 gvir_domain_wakeup (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
707 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
708 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
709 <div class="refsect3">
710 <a name="id-1.2.3.10.11.4"></a><h4>Parameters</h4>
711 <div class="informaltable"><table width="100%" border="0">
712 <colgroup>
713 <col width="150px" class="parameters_name">
714 <col class="parameters_description">
715 <col width="200px" class="parameters_annotations">
716 </colgroup>
717 <tbody>
718 <tr>
719 <td class="parameter_name"><p>dom</p></td>
720 <td class="parameter_description"><p>the domain</p></td>
721 <td class="parameter_annotations"> </td>
722 </tr>
723 <tr>
724 <td class="parameter_name"><p>flags</p></td>
725 <td class="parameter_description"><p>placeholder for flags, pass 0</p></td>
726 <td class="parameter_annotations"> </td>
727 </tr>
728 <tr>
729 <td class="parameter_name"><p>err</p></td>
730 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
731 <td class="parameter_annotations"> </td>
732 </tr>
733 </tbody>
734 </table></div>
735 </div>
736 <div class="refsect3">
737 <a name="id-1.2.3.10.11.5"></a><h4>Returns</h4>
738 <p> TRUE on success</p>
739 <p></p>
740 </div>
741 </div>
742 <hr>
743 <div class="refsect2">
744 <a name="gvir-domain-wakeup-async"></a><h3>gvir_domain_wakeup_async ()</h3>
745 <pre class="programlisting"><span class="returnvalue">void</span>
746 gvir_domain_wakeup_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
747 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
748 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
749 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
750 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
751 <p>Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-wakeup" title="gvir_domain_wakeup ()"><span class="type">gvir_domain_wakeup</span></a>.</p>
752 <div class="refsect3">
753 <a name="id-1.2.3.10.12.5"></a><h4>Parameters</h4>
754 <div class="informaltable"><table width="100%" border="0">
755 <colgroup>
756 <col width="150px" class="parameters_name">
757 <col class="parameters_description">
758 <col width="200px" class="parameters_annotations">
759 </colgroup>
760 <tbody>
761 <tr>
762 <td class="parameter_name"><p>dom</p></td>
763 <td class="parameter_description"><p>the domain to wakeup</p></td>
764 <td class="parameter_annotations"> </td>
765 </tr>
766 <tr>
767 <td class="parameter_name"><p>flags</p></td>
768 <td class="parameter_description"><p>placeholder for flags, pass 0</p></td>
769 <td class="parameter_annotations"> </td>
770 </tr>
771 <tr>
772 <td class="parameter_name"><p>cancellable</p></td>
773 <td class="parameter_description"><p> cancellation object. </p></td>
774 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
775 </tr>
776 <tr>
777 <td class="parameter_name"><p>callback</p></td>
778 <td class="parameter_description"><p> completion callback. </p></td>
779 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
780 </tr>
781 <tr>
782 <td class="parameter_name"><p>user_data</p></td>
783 <td class="parameter_description"><p> opaque data for callback. </p></td>
784 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
785 </tr>
786 </tbody>
787 </table></div>
788 </div>
789 </div>
790 <hr>
791 <div class="refsect2">
792 <a name="gvir-domain-wakeup-finish"></a><h3>gvir_domain_wakeup_finish ()</h3>
793 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
794 gvir_domain_wakeup_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
795 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
796 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
797 </div>
798 <hr>
799 <div class="refsect2">
800 <a name="gvir-domain-stop"></a><h3>gvir_domain_stop ()</h3>
801 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
802 gvir_domain_stop (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
803 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
804 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
805 <div class="refsect3">
806 <a name="id-1.2.3.10.14.4"></a><h4>Parameters</h4>
807 <div class="informaltable"><table width="100%" border="0">
808 <colgroup>
809 <col width="150px" class="parameters_name">
810 <col class="parameters_description">
811 <col width="200px" class="parameters_annotations">
812 </colgroup>
813 <tbody>
814 <tr>
815 <td class="parameter_name"><p>dom</p></td>
816 <td class="parameter_description"><p>the domain</p></td>
817 <td class="parameter_annotations"> </td>
818 </tr>
819 <tr>
820 <td class="parameter_name"><p>flags</p></td>
821 <td class="parameter_description"><p>the flags</p></td>
822 <td class="parameter_annotations"> </td>
823 </tr>
824 </tbody>
825 </table></div>
826 </div>
827 </div>
828 <hr>
829 <div class="refsect2">
830 <a name="gvir-domain-delete"></a><h3>gvir_domain_delete ()</h3>
831 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
832 gvir_domain_delete (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
833 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
834 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
835 <div class="refsect3">
836 <a name="id-1.2.3.10.15.4"></a><h4>Parameters</h4>
837 <div class="informaltable"><table width="100%" border="0">
838 <colgroup>
839 <col width="150px" class="parameters_name">
840 <col class="parameters_description">
841 <col width="200px" class="parameters_annotations">
842 </colgroup>
843 <tbody>
844 <tr>
845 <td class="parameter_name"><p>dom</p></td>
846 <td class="parameter_description"><p>the domain</p></td>
847 <td class="parameter_annotations"> </td>
848 </tr>
849 <tr>
850 <td class="parameter_name"><p>flags</p></td>
851 <td class="parameter_description"><p>the flags</p></td>
852 <td class="parameter_annotations"> </td>
853 </tr>
854 </tbody>
855 </table></div>
856 </div>
857 </div>
858 <hr>
859 <div class="refsect2">
860 <a name="gvir-domain-shutdown"></a><h3>gvir_domain_shutdown ()</h3>
861 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
862 gvir_domain_shutdown (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
863 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
864 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
865 <div class="refsect3">
866 <a name="id-1.2.3.10.16.4"></a><h4>Parameters</h4>
867 <div class="informaltable"><table width="100%" border="0">
868 <colgroup>
869 <col width="150px" class="parameters_name">
870 <col class="parameters_description">
871 <col width="200px" class="parameters_annotations">
872 </colgroup>
873 <tbody>
874 <tr>
875 <td class="parameter_name"><p>dom</p></td>
876 <td class="parameter_description"><p>the domain</p></td>
877 <td class="parameter_annotations"> </td>
878 </tr>
879 <tr>
880 <td class="parameter_name"><p>flags</p></td>
881 <td class="parameter_description"><p>the <a class="link" href="GVirDomain.html#GVirDomainShutdownFlags" title="enum GVirDomainShutdownFlags"><code class="literal">GVirDomainShutdownFlags</code></a> flags</p></td>
882 <td class="parameter_annotations"> </td>
883 </tr>
884 </tbody>
885 </table></div>
886 </div>
887 </div>
888 <hr>
889 <div class="refsect2">
890 <a name="gvir-domain-reboot"></a><h3>gvir_domain_reboot ()</h3>
891 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
892 gvir_domain_reboot (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
893 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
894 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
895 <div class="refsect3">
896 <a name="id-1.2.3.10.17.4"></a><h4>Parameters</h4>
897 <div class="informaltable"><table width="100%" border="0">
898 <colgroup>
899 <col width="150px" class="parameters_name">
900 <col class="parameters_description">
901 <col width="200px" class="parameters_annotations">
902 </colgroup>
903 <tbody>
904 <tr>
905 <td class="parameter_name"><p>dom</p></td>
906 <td class="parameter_description"><p>the domain</p></td>
907 <td class="parameter_annotations"> </td>
908 </tr>
909 <tr>
910 <td class="parameter_name"><p>flags</p></td>
911 <td class="parameter_description"><p>the <a class="link" href="GVirDomain.html#GVirDomainRebootFlags" title="enum GVirDomainRebootFlags"><code class="literal">GVirDomainRebootFlags</code></a> flags</p></td>
912 <td class="parameter_annotations"> </td>
913 </tr>
914 </tbody>
915 </table></div>
916 </div>
917 </div>
918 <hr>
919 <div class="refsect2">
920 <a name="gvir-domain-save-to-file"></a><h3>gvir_domain_save_to_file ()</h3>
921 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
922 gvir_domain_save_to_file (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
923 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *filename</code></em>,
924 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *custom_conf</code></em>,
925 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
926 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
927 <div class="refsect3">
928 <a name="id-1.2.3.10.18.4"></a><h4>Parameters</h4>
929 <div class="informaltable"><table width="100%" border="0">
930 <colgroup>
931 <col width="150px" class="parameters_name">
932 <col class="parameters_description">
933 <col width="200px" class="parameters_annotations">
934 </colgroup>
935 <tbody>
936 <tr>
937 <td class="parameter_name"><p>dom</p></td>
938 <td class="parameter_description"><p>the domain</p></td>
939 <td class="parameter_annotations"> </td>
940 </tr>
941 <tr>
942 <td class="parameter_name"><p>filename</p></td>
943 <td class="parameter_description"><p>path to the output file</p></td>
944 <td class="parameter_annotations"> </td>
945 </tr>
946 <tr>
947 <td class="parameter_name"><p>custom_conf</p></td>
948 <td class="parameter_description"><p> configuration for domain or NULL. </p></td>
949 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
950 </tr>
951 <tr>
952 <td class="parameter_name"><p>flags</p></td>
953 <td class="parameter_description"><p>the flags</p></td>
954 <td class="parameter_annotations"> </td>
955 </tr>
956 </tbody>
957 </table></div>
958 </div>
959 <div class="refsect3">
960 <a name="id-1.2.3.10.18.5"></a><h4>Returns</h4>
961 <p> TRUE on success, FALSE otherwise</p>
962 <p></p>
963 </div>
964 </div>
965 <hr>
966 <div class="refsect2">
967 <a name="gvir-domain-save-to-file-async"></a><h3>gvir_domain_save_to_file_async ()</h3>
968 <pre class="programlisting"><span class="returnvalue">void</span>
969 gvir_domain_save_to_file_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
970 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *filename</code></em>,
971 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *custom_conf</code></em>,
972 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
973 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
974 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
975 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
976 <p>Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-save-to-file" title="gvir_domain_save_to_file ()"><span class="type">gvir_domain_save_to_file</span></a></p>
977 <div class="refsect3">
978 <a name="id-1.2.3.10.19.5"></a><h4>Parameters</h4>
979 <div class="informaltable"><table width="100%" border="0">
980 <colgroup>
981 <col width="150px" class="parameters_name">
982 <col class="parameters_description">
983 <col width="200px" class="parameters_annotations">
984 </colgroup>
985 <tbody>
986 <tr>
987 <td class="parameter_name"><p>dom</p></td>
988 <td class="parameter_description"><p>the domain</p></td>
989 <td class="parameter_annotations"> </td>
990 </tr>
991 <tr>
992 <td class="parameter_name"><p>filename</p></td>
993 <td class="parameter_description"><p>path to output file</p></td>
994 <td class="parameter_annotations"> </td>
995 </tr>
996 <tr>
997 <td class="parameter_name"><p>custom_conf</p></td>
998 <td class="parameter_description"><p> configuration for domain or NULL. </p></td>
999 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1000 </tr>
1001 <tr>
1002 <td class="parameter_name"><p>flags</p></td>
1003 <td class="parameter_description"><p>the flags</p></td>
1004 <td class="parameter_annotations"> </td>
1005 </tr>
1006 <tr>
1007 <td class="parameter_name"><p>cancellable</p></td>
1008 <td class="parameter_description"><p> cancallation object. </p></td>
1009 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1010 </tr>
1011 <tr>
1012 <td class="parameter_name"><p>callback</p></td>
1013 <td class="parameter_description"><p> completion callback. </p></td>
1014 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
1015 </tr>
1016 <tr>
1017 <td class="parameter_name"><p>user_data</p></td>
1018 <td class="parameter_description"><p> opaque data for callback. </p></td>
1019 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
1020 </tr>
1021 </tbody>
1022 </table></div>
1023 </div>
1024 </div>
1025 <hr>
1026 <div class="refsect2">
1027 <a name="gvir-domain-save-to-file-finish"></a><h3>gvir_domain_save_to_file_finish ()</h3>
1028 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1029 gvir_domain_save_to_file_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1030 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
1031 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1032 <p>Finishes the operation started by <a class="link" href="GVirDomain.html#gvir-domain-save-to-file-async" title="gvir_domain_save_to_file_async ()"><span class="type">gvir_domain_save_to_file_async</span></a>.</p>
1033 <div class="refsect3">
1034 <a name="id-1.2.3.10.20.5"></a><h4>Parameters</h4>
1035 <div class="informaltable"><table width="100%" border="0">
1036 <colgroup>
1037 <col width="150px" class="parameters_name">
1038 <col class="parameters_description">
1039 <col width="200px" class="parameters_annotations">
1040 </colgroup>
1041 <tbody>
1042 <tr>
1043 <td class="parameter_name"><p>dom</p></td>
1044 <td class="parameter_description"><p>the domain to save</p></td>
1045 <td class="parameter_annotations"> </td>
1046 </tr>
1047 <tr>
1048 <td class="parameter_name"><p>result</p></td>
1049 <td class="parameter_description"><p> async method result. </p></td>
1050 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1051 </tr>
1052 <tr>
1053 <td class="parameter_name"><p>err</p></td>
1054 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
1055 <td class="parameter_annotations"> </td>
1056 </tr>
1057 </tbody>
1058 </table></div>
1059 </div>
1060 <div class="refsect3">
1061 <a name="id-1.2.3.10.20.6"></a><h4>Returns</h4>
1062 <p> TRUE if domain was saved successfully, FALSE otherwise.</p>
1063 <p></p>
1064 </div>
1065 </div>
1066 <hr>
1067 <div class="refsect2">
1068 <a name="gvir-domain-get-info"></a><h3>gvir_domain_get_info ()</h3>
1069 <pre class="programlisting"><a class="link" href="GVirDomain.html#GVirDomainInfo"><span class="returnvalue">GVirDomainInfo</span></a> *
1070 gvir_domain_get_info (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1071 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1072 <div class="refsect3">
1073 <a name="id-1.2.3.10.21.4"></a><h4>Parameters</h4>
1074 <div class="informaltable"><table width="100%" border="0">
1075 <colgroup>
1076 <col width="150px" class="parameters_name">
1077 <col class="parameters_description">
1078 <col width="200px" class="parameters_annotations">
1079 </colgroup>
1080 <tbody><tr>
1081 <td class="parameter_name"><p>dom</p></td>
1082 <td class="parameter_description"><p>the domain</p></td>
1083 <td class="parameter_annotations"> </td>
1084 </tr></tbody>
1085 </table></div>
1086 </div>
1087 <div class="refsect3">
1088 <a name="id-1.2.3.10.21.5"></a><h4>Returns</h4>
1089 <p> the info. The returned structure should be
1090 freed using <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html#g-boxed-free"><code class="function"><GTKDOCLINK HREF="g-boxed-free"><code class="function">g_boxed_free()</code></a></code></GTKDOCLINK> with GVIR_TYPE_DOMAIN_INFO as the first argument
1091 when no longer needed. </p>
1092 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1093 </div>
1094 </div>
1095 <hr>
1096 <div class="refsect2">
1097 <a name="gvir-domain-get-info-async"></a><h3>gvir_domain_get_info_async ()</h3>
1098 <pre class="programlisting"><span class="returnvalue">void</span>
1099 gvir_domain_get_info_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1100 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1101 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1102 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
1103 <p>Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-get-info" title="gvir_domain_get_info ()"><span class="type">gvir_domain_get_info</span></a>.</p>
1104 <div class="refsect3">
1105 <a name="id-1.2.3.10.22.5"></a><h4>Parameters</h4>
1106 <div class="informaltable"><table width="100%" border="0">
1107 <colgroup>
1108 <col width="150px" class="parameters_name">
1109 <col class="parameters_description">
1110 <col width="200px" class="parameters_annotations">
1111 </colgroup>
1112 <tbody>
1113 <tr>
1114 <td class="parameter_name"><p>dom</p></td>
1115 <td class="parameter_description"><p>the domain</p></td>
1116 <td class="parameter_annotations"> </td>
1117 </tr>
1118 <tr>
1119 <td class="parameter_name"><p>cancellable</p></td>
1120 <td class="parameter_description"><p> cancellation object. </p></td>
1121 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1122 </tr>
1123 <tr>
1124 <td class="parameter_name"><p>callback</p></td>
1125 <td class="parameter_description"><p> completion callback. </p></td>
1126 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
1127 </tr>
1128 <tr>
1129 <td class="parameter_name"><p>user_data</p></td>
1130 <td class="parameter_description"><p> opaque data for callback. </p></td>
1131 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
1132 </tr>
1133 </tbody>
1134 </table></div>
1135 </div>
1136 </div>
1137 <hr>
1138 <div class="refsect2">
1139 <a name="gvir-domain-get-info-finish"></a><h3>gvir_domain_get_info_finish ()</h3>
1140 <pre class="programlisting"><a class="link" href="GVirDomain.html#GVirDomainInfo"><span class="returnvalue">GVirDomainInfo</span></a> *
1141 gvir_domain_get_info_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1142 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
1143 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1144 <p>Finishes the operation started by <a class="link" href="GVirDomain.html#gvir-domain-get-info-async" title="gvir_domain_get_info_async ()"><span class="type">gvir_domain_get_info_async</span></a>.</p>
1145 <div class="refsect3">
1146 <a name="id-1.2.3.10.23.5"></a><h4>Parameters</h4>
1147 <div class="informaltable"><table width="100%" border="0">
1148 <colgroup>
1149 <col width="150px" class="parameters_name">
1150 <col class="parameters_description">
1151 <col width="200px" class="parameters_annotations">
1152 </colgroup>
1153 <tbody>
1154 <tr>
1155 <td class="parameter_name"><p>dom</p></td>
1156 <td class="parameter_description"><p>the domain</p></td>
1157 <td class="parameter_annotations"> </td>
1158 </tr>
1159 <tr>
1160 <td class="parameter_name"><p>result</p></td>
1161 <td class="parameter_description"><p> async method result. </p></td>
1162 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1163 </tr>
1164 <tr>
1165 <td class="parameter_name"><p>err</p></td>
1166 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
1167 <td class="parameter_annotations"> </td>
1168 </tr>
1169 </tbody>
1170 </table></div>
1171 </div>
1172 <div class="refsect3">
1173 <a name="id-1.2.3.10.23.6"></a><h4>Returns</h4>
1174 <p> the info. The returned object should be
1175 unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
1176 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1177 </div>
1178 </div>
1179 <hr>
1180 <div class="refsect2">
1181 <a name="gvir-domain-get-config"></a><h3>gvir_domain_get_config ()</h3>
1182 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="returnvalue">GVirConfigDomain</span></a> *
1183 gvir_domain_get_config (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1184 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1185 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1186 <div class="refsect3">
1187 <a name="id-1.2.3.10.24.4"></a><h4>Parameters</h4>
1188 <div class="informaltable"><table width="100%" border="0">
1189 <colgroup>
1190 <col width="150px" class="parameters_name">
1191 <col class="parameters_description">
1192 <col width="200px" class="parameters_annotations">
1193 </colgroup>
1194 <tbody>
1195 <tr>
1196 <td class="parameter_name"><p>dom</p></td>
1197 <td class="parameter_description"><p>the domain</p></td>
1198 <td class="parameter_annotations"> </td>
1199 </tr>
1200 <tr>
1201 <td class="parameter_name"><p>flags</p></td>
1202 <td class="parameter_description"><p>the <a class="link" href="GVirDomain.html#GVirDomainXMLFlags" title="enum GVirDomainXMLFlags"><code class="literal">GVirDomainXMLFlags</code></a> flags</p></td>
1203 <td class="parameter_annotations"> </td>
1204 </tr>
1205 </tbody>
1206 </table></div>
1207 </div>
1208 <div class="refsect3">
1209 <a name="id-1.2.3.10.24.5"></a><h4>Returns</h4>
1210 <p> the config. The returned object should be
1211 unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
1212 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1213 </div>
1214 </div>
1215 <hr>
1216 <div class="refsect2">
1217 <a name="gvir-domain-set-config"></a><h3>gvir_domain_set_config ()</h3>
1218 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1219 gvir_domain_set_config (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *domain</code></em>,
1220 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *conf</code></em>,
1221 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1222 <p>Resets configuration of an existing domain.</p>
1223 <p>Note: If domain is already running, the new configuration will not take
1224 affect until domain reboots.</p>
1225 <div class="refsect3">
1226 <a name="id-1.2.3.10.25.6"></a><h4>Parameters</h4>
1227 <div class="informaltable"><table width="100%" border="0">
1228 <colgroup>
1229 <col width="150px" class="parameters_name">
1230 <col class="parameters_description">
1231 <col width="200px" class="parameters_annotations">
1232 </colgroup>
1233 <tbody>
1234 <tr>
1235 <td class="parameter_name"><p>domain</p></td>
1236 <td class="parameter_description"><p>the domain</p></td>
1237 <td class="parameter_annotations"> </td>
1238 </tr>
1239 <tr>
1240 <td class="parameter_name"><p>conf</p></td>
1241 <td class="parameter_description"><p>the new configuration for the domain</p></td>
1242 <td class="parameter_annotations"> </td>
1243 </tr>
1244 <tr>
1245 <td class="parameter_name"><p>err</p></td>
1246 <td class="parameter_description"><p> Place-holder for error or NULL. </p></td>
1247 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1248 </tr>
1249 </tbody>
1250 </table></div>
1251 </div>
1252 <div class="refsect3">
1253 <a name="id-1.2.3.10.25.7"></a><h4>Returns</h4>
1254 <p> TRUE on success, FALSE if an error occurred.</p>
1255 <p></p>
1256 </div>
1257 </div>
1258 <hr>
1259 <div class="refsect2">
1260 <a name="gvir-domain-screenshot"></a><h3>gvir_domain_screenshot ()</h3>
1261 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
1262 gvir_domain_screenshot (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1263 <em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
1264 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> monitor_id</code></em>,
1265 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1266 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1267 <div class="refsect3">
1268 <a name="id-1.2.3.10.26.4"></a><h4>Parameters</h4>
1269 <div class="informaltable"><table width="100%" border="0">
1270 <colgroup>
1271 <col width="150px" class="parameters_name">
1272 <col class="parameters_description">
1273 <col width="200px" class="parameters_annotations">
1274 </colgroup>
1275 <tbody>
1276 <tr>
1277 <td class="parameter_name"><p>stream</p></td>
1278 <td class="parameter_description"><p>stream to use as output</p></td>
1279 <td class="parameter_annotations"> </td>
1280 </tr>
1281 <tr>
1282 <td class="parameter_name"><p>monitor_id</p></td>
1283 <td class="parameter_description"><p>monitor ID to take screenshot from</p></td>
1284 <td class="parameter_annotations"> </td>
1285 </tr>
1286 <tr>
1287 <td class="parameter_name"><p>flags</p></td>
1288 <td class="parameter_description"><p>extra flags, currently unused</p></td>
1289 <td class="parameter_annotations"> </td>
1290 </tr>
1291 </tbody>
1292 </table></div>
1293 </div>
1294 <div class="refsect3">
1295 <a name="id-1.2.3.10.26.5"></a><h4>Returns</h4>
1296 <p> a newly allocated string containing the
1297 mime-type of the image format, or NULL upon error. </p>
1298 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1299 </div>
1300 </div>
1301 <hr>
1302 <div class="refsect2">
1303 <a name="gvir-domain-open-console"></a><h3>gvir_domain_open_console ()</h3>
1304 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1305 gvir_domain_open_console (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1306 <em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
1307 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *devname</code></em>,
1308 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1309 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1310 <p>Open a text console for the domain <em class="parameter"><code>dom</code></em>
1311 , connecting it to the
1312 stream <em class="parameter"><code>stream</code></em>
1313 . If <em class="parameter"><code>devname</code></em>
1314 is NULL, the default console will
1315 be opened, otherwise <em class="parameter"><code>devname</code></em>
1316 can be used to specify a non-default
1317 console device.</p>
1318 <div class="refsect3">
1319 <a name="id-1.2.3.10.27.5"></a><h4>Parameters</h4>
1320 <div class="informaltable"><table width="100%" border="0">
1321 <colgroup>
1322 <col width="150px" class="parameters_name">
1323 <col class="parameters_description">
1324 <col width="200px" class="parameters_annotations">
1325 </colgroup>
1326 <tbody>
1327 <tr>
1328 <td class="parameter_name"><p>dom</p></td>
1329 <td class="parameter_description"><p> the domain. </p></td>
1330 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1331 </tr>
1332 <tr>
1333 <td class="parameter_name"><p>devname</p></td>
1334 <td class="parameter_description"><p> the device name. </p></td>
1335 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1336 </tr>
1337 <tr>
1338 <td class="parameter_name"><p>stream</p></td>
1339 <td class="parameter_description"><p> stream to use as output. </p></td>
1340 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1341 </tr>
1342 <tr>
1343 <td class="parameter_name"><p>flags</p></td>
1344 <td class="parameter_description"><p>extra flags, currently unused</p></td>
1345 <td class="parameter_annotations"> </td>
1346 </tr>
1347 </tbody>
1348 </table></div>
1349 </div>
1350 <div class="refsect3">
1351 <a name="id-1.2.3.10.27.6"></a><h4>Returns</h4>
1352 <p> TRUE if the console was opened, FALSE otherwise.</p>
1353 <p></p>
1354 </div>
1355 </div>
1356 <hr>
1357 <div class="refsect2">
1358 <a name="gvir-domain-open-graphics"></a><h3>gvir_domain_open_graphics ()</h3>
1359 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1360 gvir_domain_open_graphics (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1361 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> idx</code></em>,
1362 <em class="parameter"><code><span class="type">int</span> fd</code></em>,
1363 <em class="parameter"><code>unsigned <span class="type">int</span> flags</code></em>,
1364 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1365 <p>Open a connection to the local graphics display, connecting it to the
1366 socket pair file descriptor passed in as <em class="parameter"><code>fd</code></em>
1367 .</p>
1368 <div class="refsect3">
1369 <a name="id-1.2.3.10.28.5"></a><h4>Parameters</h4>
1370 <div class="informaltable"><table width="100%" border="0">
1371 <colgroup>
1372 <col width="150px" class="parameters_name">
1373 <col class="parameters_description">
1374 <col width="200px" class="parameters_annotations">
1375 </colgroup>
1376 <tbody>
1377 <tr>
1378 <td class="parameter_name"><p>dom</p></td>
1379 <td class="parameter_description"><p>the domain</p></td>
1380 <td class="parameter_annotations"> </td>
1381 </tr>
1382 <tr>
1383 <td class="parameter_name"><p>idx</p></td>
1384 <td class="parameter_description"><p>the graphics index</p></td>
1385 <td class="parameter_annotations"> </td>
1386 </tr>
1387 <tr>
1388 <td class="parameter_name"><p>fd</p></td>
1389 <td class="parameter_description"><p>pre-opened socket pair</p></td>
1390 <td class="parameter_annotations"> </td>
1391 </tr>
1392 <tr>
1393 <td class="parameter_name"><p>flags</p></td>
1394 <td class="parameter_description"><p>extra flags, currently unused</p></td>
1395 <td class="parameter_annotations"> </td>
1396 </tr>
1397 </tbody>
1398 </table></div>
1399 </div>
1400 <div class="refsect3">
1401 <a name="id-1.2.3.10.28.6"></a><h4>Returns</h4>
1402 <p> TRUE if the graphics connection was opened, FALSE otherwise.</p>
1403 <p></p>
1404 </div>
1405 </div>
1406 <hr>
1407 <div class="refsect2">
1408 <a name="gvir-domain-suspend"></a><h3>gvir_domain_suspend ()</h3>
1409 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1410 gvir_domain_suspend (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1411 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1412 <p>Suspends an active domain, the process is frozen without further access to
1413 CPU resources and I/O but the memory used by the domain at the hypervisor
1414 level will stay allocated. Use <a class="link" href="GVirDomain.html#gvir-domain-resume" title="gvir_domain_resume ()"><code class="function">gvir_domain_resume()</code></a> to reactivate the domain.</p>
1415 <div class="refsect3">
1416 <a name="id-1.2.3.10.29.5"></a><h4>Parameters</h4>
1417 <div class="informaltable"><table width="100%" border="0">
1418 <colgroup>
1419 <col width="150px" class="parameters_name">
1420 <col class="parameters_description">
1421 <col width="200px" class="parameters_annotations">
1422 </colgroup>
1423 <tbody>
1424 <tr>
1425 <td class="parameter_name"><p>dom</p></td>
1426 <td class="parameter_description"><p>the domain to suspend</p></td>
1427 <td class="parameter_annotations"> </td>
1428 </tr>
1429 <tr>
1430 <td class="parameter_name"><p>err</p></td>
1431 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
1432 <td class="parameter_annotations"> </td>
1433 </tr>
1434 </tbody>
1435 </table></div>
1436 </div>
1437 <div class="refsect3">
1438 <a name="id-1.2.3.10.29.6"></a><h4>Returns</h4>
1439 <p> TRUE if domain was suspended successfully, FALSE otherwise.</p>
1440 <p></p>
1441 </div>
1442 </div>
1443 <hr>
1444 <div class="refsect2">
1445 <a name="gvir-domain-save"></a><h3>gvir_domain_save ()</h3>
1446 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1447 gvir_domain_save (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1448 <em class="parameter"><code>unsigned <span class="type">int</span> flags</code></em>,
1449 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1450 <p>Saves the state of the domain on disk and stops it. Use <a class="link" href="GVirDomain.html#gvir-domain-start" title="gvir_domain_start ()"><span class="type">gvir_domain_start</span></a>
1451 to restore the saved state of the domain. A saved domain can be restored
1452 even after shutdown/reboot of host machine.</p>
1453 <div class="refsect3">
1454 <a name="id-1.2.3.10.30.5"></a><h4>Parameters</h4>
1455 <div class="informaltable"><table width="100%" border="0">
1456 <colgroup>
1457 <col width="150px" class="parameters_name">
1458 <col class="parameters_description">
1459 <col width="200px" class="parameters_annotations">
1460 </colgroup>
1461 <tbody>
1462 <tr>
1463 <td class="parameter_name"><p>dom</p></td>
1464 <td class="parameter_description"><p>the domain to save</p></td>
1465 <td class="parameter_annotations"> </td>
1466 </tr>
1467 <tr>
1468 <td class="parameter_name"><p>flags</p></td>
1469 <td class="parameter_description"><p>extra flags, currently unused</p></td>
1470 <td class="parameter_annotations"> </td>
1471 </tr>
1472 <tr>
1473 <td class="parameter_name"><p>err</p></td>
1474 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
1475 <td class="parameter_annotations"> </td>
1476 </tr>
1477 </tbody>
1478 </table></div>
1479 </div>
1480 <div class="refsect3">
1481 <a name="id-1.2.3.10.30.6"></a><h4>Returns</h4>
1482 <p> TRUE if domain was saved successfully, FALSE otherwise.</p>
1483 <p></p>
1484 </div>
1485 </div>
1486 <hr>
1487 <div class="refsect2">
1488 <a name="gvir-domain-save-async"></a><h3>gvir_domain_save_async ()</h3>
1489 <pre class="programlisting"><span class="returnvalue">void</span>
1490 gvir_domain_save_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1491 <em class="parameter"><code>unsigned <span class="type">int</span> flags</code></em>,
1492 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1493 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1494 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
1495 <p>Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-save" title="gvir_domain_save ()"><span class="type">gvir_domain_save</span></a>.</p>
1496 <div class="refsect3">
1497 <a name="id-1.2.3.10.31.5"></a><h4>Parameters</h4>
1498 <div class="informaltable"><table width="100%" border="0">
1499 <colgroup>
1500 <col width="150px" class="parameters_name">
1501 <col class="parameters_description">
1502 <col width="200px" class="parameters_annotations">
1503 </colgroup>
1504 <tbody>
1505 <tr>
1506 <td class="parameter_name"><p>dom</p></td>
1507 <td class="parameter_description"><p>the domain to save</p></td>
1508 <td class="parameter_annotations"> </td>
1509 </tr>
1510 <tr>
1511 <td class="parameter_name"><p>flags</p></td>
1512 <td class="parameter_description"><p>extra flags, currently unused</p></td>
1513 <td class="parameter_annotations"> </td>
1514 </tr>
1515 <tr>
1516 <td class="parameter_name"><p>cancellable</p></td>
1517 <td class="parameter_description"><p> cancellation object. </p></td>
1518 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1519 </tr>
1520 <tr>
1521 <td class="parameter_name"><p>callback</p></td>
1522 <td class="parameter_description"><p> completion callback. </p></td>
1523 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
1524 </tr>
1525 <tr>
1526 <td class="parameter_name"><p>user_data</p></td>
1527 <td class="parameter_description"><p> opaque data for callback. </p></td>
1528 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
1529 </tr>
1530 </tbody>
1531 </table></div>
1532 </div>
1533 </div>
1534 <hr>
1535 <div class="refsect2">
1536 <a name="gvir-domain-save-finish"></a><h3>gvir_domain_save_finish ()</h3>
1537 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1538 gvir_domain_save_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1539 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
1540 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1541 <p>Finishes the operation started by <a class="link" href="GVirDomain.html#gvir-domain-save-async" title="gvir_domain_save_async ()"><span class="type">gvir_domain_save_async</span></a>.</p>
1542 <div class="refsect3">
1543 <a name="id-1.2.3.10.32.5"></a><h4>Parameters</h4>
1544 <div class="informaltable"><table width="100%" border="0">
1545 <colgroup>
1546 <col width="150px" class="parameters_name">
1547 <col class="parameters_description">
1548 <col width="200px" class="parameters_annotations">
1549 </colgroup>
1550 <tbody>
1551 <tr>
1552 <td class="parameter_name"><p>dom</p></td>
1553 <td class="parameter_description"><p>the domain to save</p></td>
1554 <td class="parameter_annotations"> </td>
1555 </tr>
1556 <tr>
1557 <td class="parameter_name"><p>result</p></td>
1558 <td class="parameter_description"><p> async method result. </p></td>
1559 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1560 </tr>
1561 <tr>
1562 <td class="parameter_name"><p>err</p></td>
1563 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
1564 <td class="parameter_annotations"> </td>
1565 </tr>
1566 </tbody>
1567 </table></div>
1568 </div>
1569 <div class="refsect3">
1570 <a name="id-1.2.3.10.32.6"></a><h4>Returns</h4>
1571 <p> TRUE if domain was saved successfully, FALSE otherwise.</p>
1572 <p></p>
1573 </div>
1574 </div>
1575 <hr>
1576 <div class="refsect2">
1577 <a name="gvir-domain-get-persistent"></a><h3>gvir_domain_get_persistent ()</h3>
1578 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1579 gvir_domain_get_persistent (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);</pre>
1580 <div class="refsect3">
1581 <a name="id-1.2.3.10.33.4"></a><h4>Parameters</h4>
1582 <div class="informaltable"><table width="100%" border="0">
1583 <colgroup>
1584 <col width="150px" class="parameters_name">
1585 <col class="parameters_description">
1586 <col width="200px" class="parameters_annotations">
1587 </colgroup>
1588 <tbody><tr>
1589 <td class="parameter_name"><p>dom</p></td>
1590 <td class="parameter_description"><p>the domain</p></td>
1591 <td class="parameter_annotations"> </td>
1592 </tr></tbody>
1593 </table></div>
1594 </div>
1595 <div class="refsect3">
1596 <a name="id-1.2.3.10.33.5"></a><h4>Returns</h4>
1597 <p> TRUE if domain is persistent, FALSE otherwise.</p>
1598 <p></p>
1599 </div>
1600 </div>
1601 <hr>
1602 <div class="refsect2">
1603 <a name="gvir-domain-get-saved"></a><h3>gvir_domain_get_saved ()</h3>
1604 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1605 gvir_domain_get_saved (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);</pre>
1606 <div class="refsect3">
1607 <a name="id-1.2.3.10.34.4"></a><h4>Parameters</h4>
1608 <div class="informaltable"><table width="100%" border="0">
1609 <colgroup>
1610 <col width="150px" class="parameters_name">
1611 <col class="parameters_description">
1612 <col width="200px" class="parameters_annotations">
1613 </colgroup>
1614 <tbody><tr>
1615 <td class="parameter_name"><p>dom</p></td>
1616 <td class="parameter_description"><p>the domain</p></td>
1617 <td class="parameter_annotations"> </td>
1618 </tr></tbody>
1619 </table></div>
1620 </div>
1621 <div class="refsect3">
1622 <a name="id-1.2.3.10.34.5"></a><h4>Returns</h4>
1623 <p> TRUE if a stopped domain has a saved state to which it can be
1624 restored to using <a class="link" href="GVirDomain.html#gvir-domain-start" title="gvir_domain_start ()"><span class="type">gvir_domain_start</span></a>, FALSE otherwise.</p>
1625 <p></p>
1626 </div>
1627 </div>
1628 <hr>
1629 <div class="refsect2">
1630 <a name="gvir-domain-get-devices"></a><h3>gvir_domain_get_devices ()</h3>
1631 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
1632 gvir_domain_get_devices (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *domain</code></em>,
1633 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1634 <p>Gets the list of devices attached to <em class="parameter"><code>domain</code></em>
1635 . The returned list should
1636 be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>, after its elements have been unreffed with
1637 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>.</p>
1638 <div class="refsect3">
1639 <a name="id-1.2.3.10.35.5"></a><h4>Parameters</h4>
1640 <div class="informaltable"><table width="100%" border="0">
1641 <colgroup>
1642 <col width="150px" class="parameters_name">
1643 <col class="parameters_description">
1644 <col width="200px" class="parameters_annotations">
1645 </colgroup>
1646 <tbody>
1647 <tr>
1648 <td class="parameter_name"><p>domain</p></td>
1649 <td class="parameter_description"><p>the domain</p></td>
1650 <td class="parameter_annotations"> </td>
1651 </tr>
1652 <tr>
1653 <td class="parameter_name"><p>err</p></td>
1654 <td class="parameter_description"><p>place-holder for possible errors, or NULL</p></td>
1655 <td class="parameter_annotations"> </td>
1656 </tr>
1657 </tbody>
1658 </table></div>
1659 </div>
1660 <div class="refsect3">
1661 <a name="id-1.2.3.10.35.6"></a><h4>Returns</h4>
1662 <p> a newly
1663 allocated <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of <span class="type">GVirDomainDevice</span>. </p>
1664 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGObject.DomainDevice][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1665 </div>
1666 </div>
1667 <hr>
1668 <div class="refsect2">
1669 <a name="gvir-domain-update-device"></a><h3>gvir_domain_update_device ()</h3>
1670 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1671 gvir_domain_update_device (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1672 <em class="parameter"><code><span class="type">GVirConfigDomainDevice</span> *device</code></em>,
1673 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1674 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1675 <p>Update the configuration of a device.</p>
1676 <div class="refsect3">
1677 <a name="id-1.2.3.10.36.5"></a><h4>Parameters</h4>
1678 <div class="informaltable"><table width="100%" border="0">
1679 <colgroup>
1680 <col width="150px" class="parameters_name">
1681 <col class="parameters_description">
1682 <col width="200px" class="parameters_annotations">
1683 </colgroup>
1684 <tbody>
1685 <tr>
1686 <td class="parameter_name"><p>dom</p></td>
1687 <td class="parameter_description"><p>the domain</p></td>
1688 <td class="parameter_annotations"> </td>
1689 </tr>
1690 <tr>
1691 <td class="parameter_name"><p>device</p></td>
1692 <td class="parameter_description"><p>A modified device config</p></td>
1693 <td class="parameter_annotations"> </td>
1694 </tr>
1695 <tr>
1696 <td class="parameter_name"><p>flags</p></td>
1697 <td class="parameter_description"><p>bitwise-OR of <a class="link" href="GVirDomain.html#GVirDomainUpdateDeviceFlags" title="enum GVirDomainUpdateDeviceFlags"><span class="type">GVirDomainUpdateDeviceFlags</span></a></p></td>
1698 <td class="parameter_annotations"> </td>
1699 </tr>
1700 <tr>
1701 <td class="parameter_name"><p>err</p></td>
1702 <td class="parameter_description"><p>Place-holder for error or NULL. </p></td>
1703 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1704 </tr>
1705 </tbody>
1706 </table></div>
1707 </div>
1708 <div class="refsect3">
1709 <a name="id-1.2.3.10.36.6"></a><h4>Returns</h4>
1710 <p> TRUE if device was updated successfully, FALSE otherwise.</p>
1711 <p></p>
1712 </div>
1713 </div>
1714 <hr>
1715 <div class="refsect2">
1716 <a name="gvir-domain-create-snapshot"></a><h3>gvir_domain_create_snapshot ()</h3>
1717 <pre class="programlisting"><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="returnvalue">GVirDomainSnapshot</span></a> *
1718 gvir_domain_create_snapshot (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1719 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomainSnapshot.html"><span class="type">GVirConfigDomainSnapshot</span></a> *custom_conf</code></em>,
1720 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1721 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1722 <div class="refsect3">
1723 <a name="id-1.2.3.10.37.4"></a><h4>Parameters</h4>
1724 <div class="informaltable"><table width="100%" border="0">
1725 <colgroup>
1726 <col width="150px" class="parameters_name">
1727 <col class="parameters_description">
1728 <col width="200px" class="parameters_annotations">
1729 </colgroup>
1730 <tbody>
1731 <tr>
1732 <td class="parameter_name"><p>dom</p></td>
1733 <td class="parameter_description"><p>the domain</p></td>
1734 <td class="parameter_annotations"> </td>
1735 </tr>
1736 <tr>
1737 <td class="parameter_name"><p>custom_conf</p></td>
1738 <td class="parameter_description"><p> configuration of snapshot or NULL. </p></td>
1739 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1740 </tr>
1741 <tr>
1742 <td class="parameter_name"><p>flags</p></td>
1743 <td class="parameter_description"><p>bitwise-OR of <a class="link" href="GVirDomain.html#GVirDomainSnapshotCreateFlags" title="enum GVirDomainSnapshotCreateFlags"><span class="type">GVirDomainSnapshotCreateFlags</span></a></p></td>
1744 <td class="parameter_annotations"> </td>
1745 </tr>
1746 <tr>
1747 <td class="parameter_name"><p>err</p></td>
1748 <td class="parameter_description"><p>Place-holder for error or NULL. </p></td>
1749 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1750 </tr>
1751 </tbody>
1752 </table></div>
1753 </div>
1754 <div class="refsect3">
1755 <a name="id-1.2.3.10.37.5"></a><h4>Returns</h4>
1756 <p> snapshot of domain. The returned object should be
1757 unreffed when no longer needed. </p>
1758 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1759 </div>
1760 </div>
1761 <hr>
1762 <div class="refsect2">
1763 <a name="gvir-domain-create-snapshot-async"></a><h3>gvir_domain_create_snapshot_async ()</h3>
1764 <pre class="programlisting"><span class="returnvalue">void</span>
1765 gvir_domain_create_snapshot_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1766 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomainSnapshot.html"><span class="type">GVirConfigDomainSnapshot</span></a> *custom_conf</code></em>,
1767 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1768 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1769 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1770 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
1771 <div class="refsect3">
1772 <a name="id-1.2.3.10.38.4"></a><h4>Parameters</h4>
1773 <div class="informaltable"><table width="100%" border="0">
1774 <colgroup>
1775 <col width="150px" class="parameters_name">
1776 <col class="parameters_description">
1777 <col width="200px" class="parameters_annotations">
1778 </colgroup>
1779 <tbody>
1780 <tr>
1781 <td class="parameter_name"><p>dom</p></td>
1782 <td class="parameter_description"><p>The <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a></p></td>
1783 <td class="parameter_annotations"> </td>
1784 </tr>
1785 <tr>
1786 <td class="parameter_name"><p>custom_conf</p></td>
1787 <td class="parameter_description"><p> Configuration of snapshot or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
1788 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1789 </tr>
1790 <tr>
1791 <td class="parameter_name"><p>flags</p></td>
1792 <td class="parameter_description"><p>Bitwise-OR of <a class="link" href="GVirDomain.html#GVirDomainSnapshotCreateFlags" title="enum GVirDomainSnapshotCreateFlags"><span class="type">GVirDomainSnapshotCreateFlags</span></a></p></td>
1793 <td class="parameter_annotations"> </td>
1794 </tr>
1795 <tr>
1796 <td class="parameter_name"><p>cancellable</p></td>
1797 <td class="parameter_description"><p> cancellation object. </p></td>
1798 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1799 </tr>
1800 <tr>
1801 <td class="parameter_name"><p>callback</p></td>
1802 <td class="parameter_description"><p> Completion callback. </p></td>
1803 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
1804 </tr>
1805 <tr>
1806 <td class="parameter_name"><p>user_data</p></td>
1807 <td class="parameter_description"><p> Opaque data for callback. </p></td>
1808 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
1809 </tr>
1810 </tbody>
1811 </table></div>
1812 </div>
1813 </div>
1814 <hr>
1815 <div class="refsect2">
1816 <a name="gvir-domain-create-snapshot-finish"></a><h3>gvir_domain_create_snapshot_finish ()</h3>
1817 <pre class="programlisting"><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="returnvalue">GVirDomainSnapshot</span></a> *
1818 gvir_domain_create_snapshot_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *domain</code></em>,
1819 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
1820 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
1821 <div class="refsect3">
1822 <a name="id-1.2.3.10.39.4"></a><h4>Parameters</h4>
1823 <div class="informaltable"><table width="100%" border="0">
1824 <colgroup>
1825 <col width="150px" class="parameters_name">
1826 <col class="parameters_description">
1827 <col width="200px" class="parameters_annotations">
1828 </colgroup>
1829 <tbody>
1830 <tr>
1831 <td class="parameter_name"><p>domain</p></td>
1832 <td class="parameter_description"><p>A <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a></p></td>
1833 <td class="parameter_annotations"> </td>
1834 </tr>
1835 <tr>
1836 <td class="parameter_name"><p>result</p></td>
1837 <td class="parameter_description"><p> Async method result. </p></td>
1838 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1839 </tr>
1840 <tr>
1841 <td class="parameter_name"><p>error</p></td>
1842 <td class="parameter_description"><p> Error placeholder. </p></td>
1843 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1844 </tr>
1845 </tbody>
1846 </table></div>
1847 </div>
1848 <div class="refsect3">
1849 <a name="id-1.2.3.10.39.5"></a><h4>Returns</h4>
1850 <p> The created snapshot. </p>
1851 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
1852 </div>
1853 </div>
1854 <hr>
1855 <div class="refsect2">
1856 <a name="gvir-domain-fetch-snapshots"></a><h3>gvir_domain_fetch_snapshots ()</h3>
1857 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1858 gvir_domain_fetch_snapshots (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1859 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> list_flags</code></em>,
1860 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1861 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
1862 <div class="refsect3">
1863 <a name="id-1.2.3.10.40.4"></a><h4>Parameters</h4>
1864 <div class="informaltable"><table width="100%" border="0">
1865 <colgroup>
1866 <col width="150px" class="parameters_name">
1867 <col class="parameters_description">
1868 <col width="200px" class="parameters_annotations">
1869 </colgroup>
1870 <tbody>
1871 <tr>
1872 <td class="parameter_name"><p>dom</p></td>
1873 <td class="parameter_description"><p>The domain</p></td>
1874 <td class="parameter_annotations"> </td>
1875 </tr>
1876 <tr>
1877 <td class="parameter_name"><p>list_flags</p></td>
1878 <td class="parameter_description"><p>bitwise-OR of <a class="link" href="GVirDomain.html#GVirDomainSnapshotListFlags" title="enum GVirDomainSnapshotListFlags"><span class="type">GVirDomainSnapshotListFlags</span></a></p></td>
1879 <td class="parameter_annotations"> </td>
1880 </tr>
1881 <tr>
1882 <td class="parameter_name"><p>cancellable</p></td>
1883 <td class="parameter_description"><p> cancellation object. </p></td>
1884 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1885 </tr>
1886 <tr>
1887 <td class="parameter_name"><p>error</p></td>
1888 <td class="parameter_description"><p> Place-holder for error or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
1889 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1890 </tr>
1891 </tbody>
1892 </table></div>
1893 </div>
1894 <div class="refsect3">
1895 <a name="id-1.2.3.10.40.5"></a><h4>Returns</h4>
1896 <p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
1897 <p></p>
1898 </div>
1899 </div>
1900 <hr>
1901 <div class="refsect2">
1902 <a name="gvir-domain-get-snapshots"></a><h3>gvir_domain_get_snapshots ()</h3>
1903 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
1904 gvir_domain_get_snapshots (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);</pre>
1905 <div class="refsect3">
1906 <a name="id-1.2.3.10.41.4"></a><h4>Parameters</h4>
1907 <div class="informaltable"><table width="100%" border="0">
1908 <colgroup>
1909 <col width="150px" class="parameters_name">
1910 <col class="parameters_description">
1911 <col width="200px" class="parameters_annotations">
1912 </colgroup>
1913 <tbody><tr>
1914 <td class="parameter_name"><p>dom</p></td>
1915 <td class="parameter_description"><p>The domain
1916 Returns: (element-type LibvirtGObject.DomainSnapshot) (transfer full): A
1917 list of all the snapshots available for the given domain. The returned
1918 list should be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>, after its elements have been
1919 unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>.</p></td>
1920 <td class="parameter_annotations"> </td>
1921 </tr></tbody>
1922 </table></div>
1923 </div>
1924 </div>
1925 <hr>
1926 <div class="refsect2">
1927 <a name="gvir-domain-fetch-snapshots-async"></a><h3>gvir_domain_fetch_snapshots_async ()</h3>
1928 <pre class="programlisting"><span class="returnvalue">void</span>
1929 gvir_domain_fetch_snapshots_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1930 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> list_flags</code></em>,
1931 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1932 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1933 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
1934 <div class="refsect3">
1935 <a name="id-1.2.3.10.42.4"></a><h4>Parameters</h4>
1936 <div class="informaltable"><table width="100%" border="0">
1937 <colgroup>
1938 <col width="150px" class="parameters_name">
1939 <col class="parameters_description">
1940 <col width="200px" class="parameters_annotations">
1941 </colgroup>
1942 <tbody>
1943 <tr>
1944 <td class="parameter_name"><p>dom</p></td>
1945 <td class="parameter_description"><p>The domain</p></td>
1946 <td class="parameter_annotations"> </td>
1947 </tr>
1948 <tr>
1949 <td class="parameter_name"><p>list_flags</p></td>
1950 <td class="parameter_description"><p>bitwise-OR of <a class="link" href="GVirDomain.html#GVirDomainSnapshotListFlags" title="enum GVirDomainSnapshotListFlags"><span class="type">GVirDomainSnapshotListFlags</span></a></p></td>
1951 <td class="parameter_annotations"> </td>
1952 </tr>
1953 <tr>
1954 <td class="parameter_name"><p>cancellable</p></td>
1955 <td class="parameter_description"><p> cancellation object. </p></td>
1956 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1957 </tr>
1958 <tr>
1959 <td class="parameter_name"><p>callback</p></td>
1960 <td class="parameter_description"><p> completion callback. </p></td>
1961 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
1962 </tr>
1963 <tr>
1964 <td class="parameter_name"><p>user_data</p></td>
1965 <td class="parameter_description"><p> opaque data for callback. </p></td>
1966 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
1967 </tr>
1968 </tbody>
1969 </table></div>
1970 </div>
1971 </div>
1972 <hr>
1973 <div class="refsect2">
1974 <a name="gvir-domain-fetch-snapshots-finish"></a><h3>gvir_domain_fetch_snapshots_finish ()</h3>
1975 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1976 gvir_domain_fetch_snapshots_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1977 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *res</code></em>,
1978 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
1979 <div class="refsect3">
1980 <a name="id-1.2.3.10.43.4"></a><h4>Parameters</h4>
1981 <div class="informaltable"><table width="100%" border="0">
1982 <colgroup>
1983 <col width="150px" class="parameters_name">
1984 <col class="parameters_description">
1985 <col width="200px" class="parameters_annotations">
1986 </colgroup>
1987 <tbody>
1988 <tr>
1989 <td class="parameter_name"><p>dom</p></td>
1990 <td class="parameter_description"><p>a <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a></p></td>
1991 <td class="parameter_annotations"> </td>
1992 </tr>
1993 <tr>
1994 <td class="parameter_name"><p>res</p></td>
1995 <td class="parameter_description"><p> async method result. </p></td>
1996 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1997 </tr>
1998 </tbody>
1999 </table></div>
2000 </div>
2001 <div class="refsect3">
2002 <a name="id-1.2.3.10.43.5"></a><h4>Returns</h4>
2003 <p> TRUE on success, FALSE otherwise.</p>
2004 <p></p>
2005 </div>
2006 </div>
2007 <hr>
2008 <div class="refsect2">
2009 <a name="gvir-domain-get-has-current-snapshot"></a><h3>gvir_domain_get_has_current_snapshot ()</h3>
2010 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2011 gvir_domain_get_has_current_snapshot (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
2012 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
2013 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *has_current_snapshot</code></em>,
2014 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
2015 <div class="refsect3">
2016 <a name="id-1.2.3.10.44.4"></a><h4>Parameters</h4>
2017 <div class="informaltable"><table width="100%" border="0">
2018 <colgroup>
2019 <col width="150px" class="parameters_name">
2020 <col class="parameters_description">
2021 <col width="200px" class="parameters_annotations">
2022 </colgroup>
2023 <tbody>
2024 <tr>
2025 <td class="parameter_name"><p>dom</p></td>
2026 <td class="parameter_description"><p>a <a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a></p></td>
2027 <td class="parameter_annotations"> </td>
2028 </tr>
2029 <tr>
2030 <td class="parameter_name"><p>flags</p></td>
2031 <td class="parameter_description"><p>Unused, pass 0</p></td>
2032 <td class="parameter_annotations"> </td>
2033 </tr>
2034 <tr>
2035 <td class="parameter_name"><p>has_current_snapshot</p></td>
2036 <td class="parameter_description"><p> Will be set to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the given domain
2037 has a current snapshot and to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise. </p></td>
2038 <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
2039 </tr>
2040 <tr>
2041 <td class="parameter_name"><p>error</p></td>
2042 <td class="parameter_description"><p> Place-holder for error or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
2043 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
2044 </tr>
2045 </tbody>
2046 </table></div>
2047 </div>
2048 <div class="refsect3">
2049 <a name="id-1.2.3.10.44.5"></a><h4>Returns</h4>
2050 <p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
2051 <p></p>
2052 </div>
2053 </div>
2054 </div>
2055 <div class="refsect1">
2056 <a name="GVirDomain.other_details"></a><h2>Types and Values</h2>
2322057 <div class="refsect2">
2332058 <a name="GVirDomainState"></a><h3>enum GVirDomainState</h3>
234 <pre class="programlisting">typedef enum {
235 GVIR_DOMAIN_STATE_NONE = 0, /* no state */
236 GVIR_DOMAIN_STATE_RUNNING = 1, /* the domain is running */
237 GVIR_DOMAIN_STATE_BLOCKED = 2, /* the domain is blocked on resource */
238 GVIR_DOMAIN_STATE_PAUSED = 3, /* the domain is paused by user */
239 GVIR_DOMAIN_STATE_SHUTDOWN= 4, /* the domain is being shut down */
240 GVIR_DOMAIN_STATE_SHUTOFF = 5, /* the domain is shut off */
241 GVIR_DOMAIN_STATE_CRASHED = 6, /* the domain is crashed */
242 GVIR_DOMAIN_STATE_PMSUSPENDED = 7 /* the domain is suspended by guest
243 power management */
244 } GVirDomainState;
245 </pre>
246 <div class="variablelist"><table border="0" class="variablelist">
247 <colgroup>
248 <col align="left" valign="top">
249 <col>
250 </colgroup>
251 <tbody>
252 <tr>
253 <td><p><a name="GVIR-DOMAIN-STATE-NONE:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_STATE_NONE</code></span></p></td>
254 <td></td>
255 </tr>
256 <tr>
257 <td><p><a name="GVIR-DOMAIN-STATE-RUNNING:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_STATE_RUNNING</code></span></p></td>
258 <td></td>
259 </tr>
260 <tr>
261 <td><p><a name="GVIR-DOMAIN-STATE-BLOCKED:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_STATE_BLOCKED</code></span></p></td>
262 <td></td>
263 </tr>
264 <tr>
265 <td><p><a name="GVIR-DOMAIN-STATE-PAUSED:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_STATE_PAUSED</code></span></p></td>
266 <td></td>
267 </tr>
268 <tr>
269 <td><p><a name="GVIR-DOMAIN-STATE-SHUTDOWN:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_STATE_SHUTDOWN</code></span></p></td>
270 <td></td>
271 </tr>
272 <tr>
273 <td><p><a name="GVIR-DOMAIN-STATE-SHUTOFF:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_STATE_SHUTOFF</code></span></p></td>
274 <td></td>
275 </tr>
276 <tr>
277 <td><p><a name="GVIR-DOMAIN-STATE-CRASHED:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_STATE_CRASHED</code></span></p></td>
278 <td></td>
279 </tr>
280 <tr>
281 <td><p><a name="GVIR-DOMAIN-STATE-PMSUSPENDED:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_STATE_PMSUSPENDED</code></span></p></td>
282 <td></td>
283 </tr>
284 </tbody>
285 </table></div>
2059 <div class="refsect3">
2060 <a name="id-1.2.3.11.2.3"></a><h4>Members</h4>
2061 <div class="informaltable"><table width="100%" border="0">
2062 <colgroup>
2063 <col width="300px" class="enum_members_name">
2064 <col class="enum_members_description">
2065 <col width="200px" class="enum_members_annotations">
2066 </colgroup>
2067 <tbody>
2068 <tr>
2069 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-STATE-NONE:CAPS"></a>GVIR_DOMAIN_STATE_NONE</p></td>
2070 <td> </td>
2071 <td> </td>
2072 </tr>
2073 <tr>
2074 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-STATE-RUNNING:CAPS"></a>GVIR_DOMAIN_STATE_RUNNING</p></td>
2075 <td> </td>
2076 <td> </td>
2077 </tr>
2078 <tr>
2079 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-STATE-BLOCKED:CAPS"></a>GVIR_DOMAIN_STATE_BLOCKED</p></td>
2080 <td> </td>
2081 <td> </td>
2082 </tr>
2083 <tr>
2084 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-STATE-PAUSED:CAPS"></a>GVIR_DOMAIN_STATE_PAUSED</p></td>
2085 <td> </td>
2086 <td> </td>
2087 </tr>
2088 <tr>
2089 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-STATE-SHUTDOWN:CAPS"></a>GVIR_DOMAIN_STATE_SHUTDOWN</p></td>
2090 <td> </td>
2091 <td> </td>
2092 </tr>
2093 <tr>
2094 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-STATE-SHUTOFF:CAPS"></a>GVIR_DOMAIN_STATE_SHUTOFF</p></td>
2095 <td> </td>
2096 <td> </td>
2097 </tr>
2098 <tr>
2099 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-STATE-CRASHED:CAPS"></a>GVIR_DOMAIN_STATE_CRASHED</p></td>
2100 <td> </td>
2101 <td> </td>
2102 </tr>
2103 <tr>
2104 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-STATE-PMSUSPENDED:CAPS"></a>GVIR_DOMAIN_STATE_PMSUSPENDED</p></td>
2105 <td> </td>
2106 <td> </td>
2107 </tr>
2108 </tbody>
2109 </table></div>
2110 </div>
2862111 </div>
2872112 <hr>
2882113 <div class="refsect2">
2892114 <a name="GVirDomainStartFlags"></a><h3>enum GVirDomainStartFlags</h3>
290 <pre class="programlisting">typedef enum {
291 GVIR_DOMAIN_START_NONE = 0,
292 GVIR_DOMAIN_START_PAUSED = (1 &lt;&lt; 0),
293 GVIR_DOMAIN_START_AUTODESTROY = (1 &lt;&lt; 1),
294 GVIR_DOMAIN_START_BYPASS_CACHE = (1 &lt;&lt; 2),
295 GVIR_DOMAIN_START_FORCE_BOOT = (1 &lt;&lt; 3),
296 } GVirDomainStartFlags;
297 </pre>
298 <div class="variablelist"><table border="0" class="variablelist">
299 <colgroup>
300 <col align="left" valign="top">
301 <col>
302 </colgroup>
303 <tbody>
304 <tr>
305 <td><p><a name="GVIR-DOMAIN-START-NONE:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_START_NONE</code></span></p></td>
306 <td></td>
307 </tr>
308 <tr>
309 <td><p><a name="GVIR-DOMAIN-START-PAUSED:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_START_PAUSED</code></span></p></td>
310 <td></td>
311 </tr>
312 <tr>
313 <td><p><a name="GVIR-DOMAIN-START-AUTODESTROY:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_START_AUTODESTROY</code></span></p></td>
314 <td></td>
315 </tr>
316 <tr>
317 <td><p><a name="GVIR-DOMAIN-START-BYPASS-CACHE:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_START_BYPASS_CACHE</code></span></p></td>
318 <td></td>
319 </tr>
320 <tr>
321 <td><p><a name="GVIR-DOMAIN-START-FORCE-BOOT:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_START_FORCE_BOOT</code></span></p></td>
322 <td></td>
323 </tr>
324 </tbody>
325 </table></div>
2115 <div class="refsect3">
2116 <a name="id-1.2.3.11.3.3"></a><h4>Members</h4>
2117 <div class="informaltable"><table width="100%" border="0">
2118 <colgroup>
2119 <col width="300px" class="enum_members_name">
2120 <col class="enum_members_description">
2121 <col width="200px" class="enum_members_annotations">
2122 </colgroup>
2123 <tbody>
2124 <tr>
2125 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-START-NONE:CAPS"></a>GVIR_DOMAIN_START_NONE</p></td>
2126 <td> </td>
2127 <td> </td>
2128 </tr>
2129 <tr>
2130 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-START-PAUSED:CAPS"></a>GVIR_DOMAIN_START_PAUSED</p></td>
2131 <td> </td>
2132 <td> </td>
2133 </tr>
2134 <tr>
2135 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-START-AUTODESTROY:CAPS"></a>GVIR_DOMAIN_START_AUTODESTROY</p></td>
2136 <td> </td>
2137 <td> </td>
2138 </tr>
2139 <tr>
2140 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-START-BYPASS-CACHE:CAPS"></a>GVIR_DOMAIN_START_BYPASS_CACHE</p></td>
2141 <td> </td>
2142 <td> </td>
2143 </tr>
2144 <tr>
2145 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-START-FORCE-BOOT:CAPS"></a>GVIR_DOMAIN_START_FORCE_BOOT</p></td>
2146 <td> </td>
2147 <td> </td>
2148 </tr>
2149 </tbody>
2150 </table></div>
2151 </div>
3262152 </div>
3272153 <hr>
3282154 <div class="refsect2">
3292155 <a name="GVirDomainDeleteFlags"></a><h3>enum GVirDomainDeleteFlags</h3>
330 <pre class="programlisting">typedef enum {
331 GVIR_DOMAIN_DELETE_NONE = 0,
332 GVIR_DOMAIN_DELETE_SAVED_STATE = VIR_DOMAIN_UNDEFINE_MANAGED_SAVE,
333 GVIR_DOMAIN_DELETE_SNAPSHOTS_METADATA = VIR_DOMAIN_UNDEFINE_SNAPSHOTS_METADATA,
334 } GVirDomainDeleteFlags;
335 </pre>
336 <div class="variablelist"><table border="0" class="variablelist">
337 <colgroup>
338 <col align="left" valign="top">
339 <col>
340 </colgroup>
341 <tbody>
342 <tr>
343 <td><p><a name="GVIR-DOMAIN-DELETE-NONE:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_DELETE_NONE</code></span></p></td>
344 <td>No flags
345 </td>
346 </tr>
347 <tr>
348 <td><p><a name="GVIR-DOMAIN-DELETE-SAVED-STATE:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_DELETE_SAVED_STATE</code></span></p></td>
349 <td>Also remove associated saved state (if present).
350 </td>
351 </tr>
352 <tr>
353 <td><p><a name="GVIR-DOMAIN-DELETE-SNAPSHOTS-METADATA:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_DELETE_SNAPSHOTS_METADATA</code></span></p></td>
354 <td>If last use of domain, then also
355 remove any snapshot metadata.
356 </td>
357 </tr>
358 </tbody>
359 </table></div>
2156 <div class="refsect3">
2157 <a name="id-1.2.3.11.4.3"></a><h4>Members</h4>
2158 <div class="informaltable"><table width="100%" border="0">
2159 <colgroup>
2160 <col width="300px" class="enum_members_name">
2161 <col class="enum_members_description">
2162 <col width="200px" class="enum_members_annotations">
2163 </colgroup>
2164 <tbody>
2165 <tr>
2166 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-DELETE-NONE:CAPS"></a>GVIR_DOMAIN_DELETE_NONE</p></td>
2167 <td class="enum_member_description">
2168 <p>No flags</p>
2169 </td>
2170 <td class="enum_member_annotations"> </td>
2171 </tr>
2172 <tr>
2173 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-DELETE-SAVED-STATE:CAPS"></a>GVIR_DOMAIN_DELETE_SAVED_STATE</p></td>
2174 <td class="enum_member_description">
2175 <p>Also remove associated saved state (if present).</p>
2176 </td>
2177 <td class="enum_member_annotations"> </td>
2178 </tr>
2179 <tr>
2180 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-DELETE-SNAPSHOTS-METADATA:CAPS"></a>GVIR_DOMAIN_DELETE_SNAPSHOTS_METADATA</p></td>
2181 <td class="enum_member_description">
2182 <p>If last use of domain, then also
2183 remove any snapshot metadata.</p>
2184 </td>
2185 <td class="enum_member_annotations"> </td>
2186 </tr>
2187 </tbody>
2188 </table></div>
2189 </div>
3602190 </div>
3612191 <hr>
3622192 <div class="refsect2">
3632193 <a name="GVirDomainXMLFlags"></a><h3>enum GVirDomainXMLFlags</h3>
364 <pre class="programlisting">typedef enum {
365 GVIR_DOMAIN_XML_NONE = 0,
366 GVIR_DOMAIN_XML_SECURE = VIR_DOMAIN_XML_SECURE,
367 GVIR_DOMAIN_XML_INACTIVE = VIR_DOMAIN_XML_INACTIVE,
368 GVIR_DOMAIN_XML_UPDATE_CPU = VIR_DOMAIN_XML_UPDATE_CPU,
369 } GVirDomainXMLFlags;
370 </pre>
371 <div class="variablelist"><table border="0" class="variablelist">
372 <colgroup>
373 <col align="left" valign="top">
374 <col>
375 </colgroup>
376 <tbody>
377 <tr>
378 <td><p><a name="GVIR-DOMAIN-XML-NONE:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_XML_NONE</code></span></p></td>
379 <td>No flags
380 </td>
381 </tr>
382 <tr>
383 <td><p><a name="GVIR-DOMAIN-XML-SECURE:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_XML_SECURE</code></span></p></td>
384 <td>Dump security sensitive information too
385 </td>
386 </tr>
387 <tr>
388 <td><p><a name="GVIR-DOMAIN-XML-INACTIVE:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_XML_INACTIVE</code></span></p></td>
389 <td>Dump inactive domain information
390 </td>
391 </tr>
392 <tr>
393 <td><p><a name="GVIR-DOMAIN-XML-UPDATE-CPU:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_XML_UPDATE_CPU</code></span></p></td>
394 <td>Update guest CPU requirements according to host CPU
395 </td>
396 </tr>
397 </tbody>
398 </table></div>
2194 <div class="refsect3">
2195 <a name="id-1.2.3.11.5.3"></a><h4>Members</h4>
2196 <div class="informaltable"><table width="100%" border="0">
2197 <colgroup>
2198 <col width="300px" class="enum_members_name">
2199 <col class="enum_members_description">
2200 <col width="200px" class="enum_members_annotations">
2201 </colgroup>
2202 <tbody>
2203 <tr>
2204 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-XML-NONE:CAPS"></a>GVIR_DOMAIN_XML_NONE</p></td>
2205 <td class="enum_member_description">
2206 <p>No flags</p>
2207 </td>
2208 <td class="enum_member_annotations"> </td>
2209 </tr>
2210 <tr>
2211 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-XML-SECURE:CAPS"></a>GVIR_DOMAIN_XML_SECURE</p></td>
2212 <td class="enum_member_description">
2213 <p>Dump security sensitive information too</p>
2214 </td>
2215 <td class="enum_member_annotations"> </td>
2216 </tr>
2217 <tr>
2218 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-XML-INACTIVE:CAPS"></a>GVIR_DOMAIN_XML_INACTIVE</p></td>
2219 <td class="enum_member_description">
2220 <p>Dump inactive domain information</p>
2221 </td>
2222 <td class="enum_member_annotations"> </td>
2223 </tr>
2224 <tr>
2225 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-XML-UPDATE-CPU:CAPS"></a>GVIR_DOMAIN_XML_UPDATE_CPU</p></td>
2226 <td class="enum_member_description">
2227 <p>Update guest CPU requirements according to host CPU</p>
2228 </td>
2229 <td class="enum_member_annotations"> </td>
2230 </tr>
2231 </tbody>
2232 </table></div>
2233 </div>
3992234 </div>
4002235 <hr>
4012236 <div class="refsect2">
4022237 <a name="GVirDomainShutdownFlags"></a><h3>enum GVirDomainShutdownFlags</h3>
403 <pre class="programlisting">typedef enum {
404 GVIR_DOMAIN_SHUTDOWN_NONE = 0,
405 GVIR_DOMAIN_SHUTDOWN_ACPI_POWER_BTN = VIR_DOMAIN_SHUTDOWN_ACPI_POWER_BTN,
406 GVIR_DOMAIN_SHUTDOWN_GUEST_AGENT = VIR_DOMAIN_SHUTDOWN_GUEST_AGENT,
407 } GVirDomainShutdownFlags;
408 </pre>
409 <div class="variablelist"><table border="0" class="variablelist">
410 <colgroup>
411 <col align="left" valign="top">
412 <col>
413 </colgroup>
414 <tbody>
415 <tr>
416 <td><p><a name="GVIR-DOMAIN-SHUTDOWN-NONE:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_SHUTDOWN_NONE</code></span></p></td>
417 <td>No flags, hypervisor choice
418 </td>
419 </tr>
420 <tr>
421 <td><p><a name="GVIR-DOMAIN-SHUTDOWN-ACPI-POWER-BTN:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_SHUTDOWN_ACPI_POWER_BTN</code></span></p></td>
422 <td>Send ACPI event
423 </td>
424 </tr>
425 <tr>
426 <td><p><a name="GVIR-DOMAIN-SHUTDOWN-GUEST-AGENT:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_SHUTDOWN_GUEST_AGENT</code></span></p></td>
427 <td>Use guest agent
428 </td>
429 </tr>
430 </tbody>
431 </table></div>
2238 <div class="refsect3">
2239 <a name="id-1.2.3.11.6.3"></a><h4>Members</h4>
2240 <div class="informaltable"><table width="100%" border="0">
2241 <colgroup>
2242 <col width="300px" class="enum_members_name">
2243 <col class="enum_members_description">
2244 <col width="200px" class="enum_members_annotations">
2245 </colgroup>
2246 <tbody>
2247 <tr>
2248 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SHUTDOWN-NONE:CAPS"></a>GVIR_DOMAIN_SHUTDOWN_NONE</p></td>
2249 <td class="enum_member_description">
2250 <p>No flags, hypervisor choice</p>
2251 </td>
2252 <td class="enum_member_annotations"> </td>
2253 </tr>
2254 <tr>
2255 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SHUTDOWN-ACPI-POWER-BTN:CAPS"></a>GVIR_DOMAIN_SHUTDOWN_ACPI_POWER_BTN</p></td>
2256 <td class="enum_member_description">
2257 <p>Send ACPI event</p>
2258 </td>
2259 <td class="enum_member_annotations"> </td>
2260 </tr>
2261 <tr>
2262 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SHUTDOWN-GUEST-AGENT:CAPS"></a>GVIR_DOMAIN_SHUTDOWN_GUEST_AGENT</p></td>
2263 <td class="enum_member_description">
2264 <p>Use guest agent</p>
2265 </td>
2266 <td class="enum_member_annotations"> </td>
2267 </tr>
2268 </tbody>
2269 </table></div>
2270 </div>
4322271 </div>
4332272 <hr>
4342273 <div class="refsect2">
4352274 <a name="GVirDomainSnapshotCreateFlags"></a><h3>enum GVirDomainSnapshotCreateFlags</h3>
436 <pre class="programlisting">typedef enum {
437 GVIR_DOMAIN_SNAPSHOT_NONE = 0,
438 GVIR_DOMAIN_SNAPSHOT_REDEFINE = VIR_DOMAIN_SNAPSHOT_CREATE_REDEFINE,
439 GVIR_DOMAIN_SNAPSHOT_CURRENT = VIR_DOMAIN_SNAPSHOT_CREATE_CURRENT,
440 GVIR_DOMAIN_SNAPSHOT_NO_METADATA = VIR_DOMAIN_SNAPSHOT_CREATE_NO_METADATA,
441 GVIR_DOMAIN_SNAPSHOT_HALT = VIR_DOMAIN_SNAPSHOT_CREATE_HALT,
442 GVIR_DOMAIN_SNAPSHOT_DISK_ONLY = VIR_DOMAIN_SNAPSHOT_CREATE_DISK_ONLY,
443 GVIR_DOMAIN_SNAPSHOT_REUSE_EXT = VIR_DOMAIN_SNAPSHOT_CREATE_REUSE_EXT,
444 GVIR_DOMAIN_SNAPSHOT_QUIESCE = VIR_DOMAIN_SNAPSHOT_CREATE_QUIESCE,
445 GVIR_DOMAIN_SNAPSHOT_ATOMIC = VIR_DOMAIN_SNAPSHOT_CREATE_ATOMIC,
446 } GVirDomainSnapshotCreateFlags;
447 </pre>
448 <div class="variablelist"><table border="0" class="variablelist">
449 <colgroup>
450 <col align="left" valign="top">
451 <col>
452 </colgroup>
453 <tbody>
454 <tr>
455 <td><p><a name="GVIR-DOMAIN-SNAPSHOT-NONE:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_SNAPSHOT_NONE</code></span></p></td>
456 <td>No flags
457 </td>
458 </tr>
459 <tr>
460 <td><p><a name="GVIR-DOMAIN-SNAPSHOT-REDEFINE:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_SNAPSHOT_REDEFINE</code></span></p></td>
461 <td>Restore or alter metadata
462 </td>
463 </tr>
464 <tr>
465 <td><p><a name="GVIR-DOMAIN-SNAPSHOT-CURRENT:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_SNAPSHOT_CURRENT</code></span></p></td>
466 <td>With redefine, make snapshot current
467 </td>
468 </tr>
469 <tr>
470 <td><p><a name="GVIR-DOMAIN-SNAPSHOT-NO-METADATA:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_SNAPSHOT_NO_METADATA</code></span></p></td>
471 <td>Make snapshot without remembering it
472 </td>
473 </tr>
474 <tr>
475 <td><p><a name="GVIR-DOMAIN-SNAPSHOT-HALT:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_SNAPSHOT_HALT</code></span></p></td>
476 <td>Stop running guest after snapshot
477 </td>
478 </tr>
479 <tr>
480 <td><p><a name="GVIR-DOMAIN-SNAPSHOT-DISK-ONLY:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_SNAPSHOT_DISK_ONLY</code></span></p></td>
481 <td>Disk snapshot, not system checkpoint
482 </td>
483 </tr>
484 <tr>
485 <td><p><a name="GVIR-DOMAIN-SNAPSHOT-REUSE-EXT:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_SNAPSHOT_REUSE_EXT</code></span></p></td>
486 <td>Reuse any existing external files
487 </td>
488 </tr>
489 <tr>
490 <td><p><a name="GVIR-DOMAIN-SNAPSHOT-QUIESCE:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_SNAPSHOT_QUIESCE</code></span></p></td>
491 <td>Use guest agent to quiesce all mounter
492 file systems within the domain
493 </td>
494 </tr>
495 <tr>
496 <td><p><a name="GVIR-DOMAIN-SNAPSHOT-ATOMIC:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_SNAPSHOT_ATOMIC</code></span></p></td>
497 <td>Atomically avoid partial changes
498 </td>
499 </tr>
500 </tbody>
501 </table></div>
2275 <div class="refsect3">
2276 <a name="id-1.2.3.11.7.3"></a><h4>Members</h4>
2277 <div class="informaltable"><table width="100%" border="0">
2278 <colgroup>
2279 <col width="300px" class="enum_members_name">
2280 <col class="enum_members_description">
2281 <col width="200px" class="enum_members_annotations">
2282 </colgroup>
2283 <tbody>
2284 <tr>
2285 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-NONE:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_NONE</p></td>
2286 <td class="enum_member_description">
2287 <p>No flags</p>
2288 </td>
2289 <td class="enum_member_annotations"> </td>
2290 </tr>
2291 <tr>
2292 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-REDEFINE:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_REDEFINE</p></td>
2293 <td class="enum_member_description">
2294 <p>Restore or alter metadata</p>
2295 </td>
2296 <td class="enum_member_annotations"> </td>
2297 </tr>
2298 <tr>
2299 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-CURRENT:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_CURRENT</p></td>
2300 <td class="enum_member_description">
2301 <p>With redefine, make snapshot current</p>
2302 </td>
2303 <td class="enum_member_annotations"> </td>
2304 </tr>
2305 <tr>
2306 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-NO-METADATA:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_NO_METADATA</p></td>
2307 <td class="enum_member_description">
2308 <p>Make snapshot without remembering it</p>
2309 </td>
2310 <td class="enum_member_annotations"> </td>
2311 </tr>
2312 <tr>
2313 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-HALT:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_HALT</p></td>
2314 <td class="enum_member_description">
2315 <p>Stop running guest after snapshot</p>
2316 </td>
2317 <td class="enum_member_annotations"> </td>
2318 </tr>
2319 <tr>
2320 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-DISK-ONLY:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_DISK_ONLY</p></td>
2321 <td class="enum_member_description">
2322 <p>Disk snapshot, not system checkpoint</p>
2323 </td>
2324 <td class="enum_member_annotations"> </td>
2325 </tr>
2326 <tr>
2327 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-REUSE-EXT:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_REUSE_EXT</p></td>
2328 <td class="enum_member_description">
2329 <p>Reuse any existing external files</p>
2330 </td>
2331 <td class="enum_member_annotations"> </td>
2332 </tr>
2333 <tr>
2334 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-QUIESCE:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_QUIESCE</p></td>
2335 <td class="enum_member_description">
2336 <p>Use guest agent to quiesce all mounter
2337 file systems within the domain</p>
2338 </td>
2339 <td class="enum_member_annotations"> </td>
2340 </tr>
2341 <tr>
2342 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-ATOMIC:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_ATOMIC</p></td>
2343 <td class="enum_member_description">
2344 <p>Atomically avoid partial changes</p>
2345 </td>
2346 <td class="enum_member_annotations"> </td>
2347 </tr>
2348 </tbody>
2349 </table></div>
2350 </div>
5022351 </div>
5032352 <hr>
5042353 <div class="refsect2">
5052354 <a name="GVirDomainUpdateDeviceFlags"></a><h3>enum GVirDomainUpdateDeviceFlags</h3>
506 <pre class="programlisting">typedef enum {
507 GVIR_DOMAIN_UPDATE_DEVICE_CURRENT = VIR_DOMAIN_AFFECT_CURRENT,
508 GVIR_DOMAIN_UPDATE_DEVICE_LIVE = VIR_DOMAIN_AFFECT_LIVE,
509 GVIR_DOMAIN_UPDATE_DEVICE_CONFIG = VIR_DOMAIN_AFFECT_CONFIG,
510 } GVirDomainUpdateDeviceFlags;
511 </pre>
512 <div class="variablelist"><table border="0" class="variablelist">
513 <colgroup>
514 <col align="left" valign="top">
515 <col>
516 </colgroup>
517 <tbody>
518 <tr>
519 <td><p><a name="GVIR-DOMAIN-UPDATE-DEVICE-CURRENT:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_UPDATE_DEVICE_CURRENT</code></span></p></td>
520 <td>Update current domain state
521 </td>
522 </tr>
523 <tr>
524 <td><p><a name="GVIR-DOMAIN-UPDATE-DEVICE-LIVE:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_UPDATE_DEVICE_LIVE</code></span></p></td>
525 <td>Update state for only active domains
526 </td>
527 </tr>
528 <tr>
529 <td><p><a name="GVIR-DOMAIN-UPDATE-DEVICE-CONFIG:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_UPDATE_DEVICE_CONFIG</code></span></p></td>
530 <td>Update state for persistent state only
531 </td>
532 </tr>
533 </tbody>
534 </table></div>
2355 <div class="refsect3">
2356 <a name="id-1.2.3.11.8.3"></a><h4>Members</h4>
2357 <div class="informaltable"><table width="100%" border="0">
2358 <colgroup>
2359 <col width="300px" class="enum_members_name">
2360 <col class="enum_members_description">
2361 <col width="200px" class="enum_members_annotations">
2362 </colgroup>
2363 <tbody>
2364 <tr>
2365 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-UPDATE-DEVICE-CURRENT:CAPS"></a>GVIR_DOMAIN_UPDATE_DEVICE_CURRENT</p></td>
2366 <td class="enum_member_description">
2367 <p>Update current domain state</p>
2368 </td>
2369 <td class="enum_member_annotations"> </td>
2370 </tr>
2371 <tr>
2372 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-UPDATE-DEVICE-LIVE:CAPS"></a>GVIR_DOMAIN_UPDATE_DEVICE_LIVE</p></td>
2373 <td class="enum_member_description">
2374 <p>Update state for only active domains</p>
2375 </td>
2376 <td class="enum_member_annotations"> </td>
2377 </tr>
2378 <tr>
2379 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-UPDATE-DEVICE-CONFIG:CAPS"></a>GVIR_DOMAIN_UPDATE_DEVICE_CONFIG</p></td>
2380 <td class="enum_member_description">
2381 <p>Update state for persistent state only</p>
2382 </td>
2383 <td class="enum_member_annotations"> </td>
2384 </tr>
2385 </tbody>
2386 </table></div>
2387 </div>
5352388 </div>
5362389 <hr>
5372390 <div class="refsect2">
5382391 <a name="GVirDomainRebootFlags"></a><h3>enum GVirDomainRebootFlags</h3>
539 <pre class="programlisting">typedef enum {
540 GVIR_DOMAIN_REBOOT_NONE = 0,
541 GVIR_DOMAIN_REBOOT_ACPI_POWER_BTN = VIR_DOMAIN_REBOOT_ACPI_POWER_BTN,
542 GVIR_DOMAIN_REBOOT_GUEST_AGENT = VIR_DOMAIN_REBOOT_GUEST_AGENT,
543 } GVirDomainRebootFlags;
544 </pre>
545 <div class="variablelist"><table border="0" class="variablelist">
546 <colgroup>
547 <col align="left" valign="top">
548 <col>
549 </colgroup>
550 <tbody>
551 <tr>
552 <td><p><a name="GVIR-DOMAIN-REBOOT-NONE:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_REBOOT_NONE</code></span></p></td>
553 <td>No flags, hypervisor choice
554 </td>
555 </tr>
556 <tr>
557 <td><p><a name="GVIR-DOMAIN-REBOOT-ACPI-POWER-BTN:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_REBOOT_ACPI_POWER_BTN</code></span></p></td>
558 <td>Send ACPI event
559 </td>
560 </tr>
561 <tr>
562 <td><p><a name="GVIR-DOMAIN-REBOOT-GUEST-AGENT:CAPS"></a><span class="term"><code class="literal">GVIR_DOMAIN_REBOOT_GUEST_AGENT</code></span></p></td>
563 <td>Use guest agent
564 </td>
565 </tr>
566 </tbody>
567 </table></div>
568 </div>
569 <hr>
570 <div class="refsect2">
571 <a name="GVirDomainInfo-struct"></a><h3>struct GVirDomainInfo</h3>
572 <pre class="programlisting">struct GVirDomainInfo {
573 GVirDomainState state; /* the running state */
574 guint64 maxMem; /* the maximum memory in KBytes allowed */
575 guint64 memory; /* the memory in KBytes used by the domain */
576 guint16 nrVirtCpu; /* the number of virtual CPUs for the domain */
577 guint64 cpuTime; /* the CPU time used in nanoseconds */
578 };
579 </pre>
580 </div>
581 <hr>
582 <div class="refsect2">
583 <a name="gvir-domain-get-name"></a><h3>gvir_domain_get_name ()</h3>
584 <pre class="programlisting">const <span class="returnvalue">gchar</span> * gvir_domain_get_name (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);</pre>
585 </div>
586 <hr>
587 <div class="refsect2">
588 <a name="gvir-domain-get-uuid"></a><h3>gvir_domain_get_uuid ()</h3>
589 <pre class="programlisting">const <span class="returnvalue">gchar</span> * gvir_domain_get_uuid (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);</pre>
590 </div>
591 <hr>
592 <div class="refsect2">
593 <a name="gvir-domain-get-id"></a><h3>gvir_domain_get_id ()</h3>
594 <pre class="programlisting"><span class="returnvalue">gint</span> gvir_domain_get_id (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
595 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
596 </div>
597 <hr>
598 <div class="refsect2">
599 <a name="gvir-domain-start"></a><h3>gvir_domain_start ()</h3>
600 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_start (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
601 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
602 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
603 <div class="variablelist"><table border="0" class="variablelist">
604 <colgroup>
605 <col align="left" valign="top">
606 <col>
607 </colgroup>
608 <tbody>
609 <tr>
610 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
611 <td>the domain</td>
612 </tr>
613 <tr>
614 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
615 <td>the flags</td>
616 </tr>
617 </tbody>
618 </table></div>
619 </div>
620 <hr>
621 <div class="refsect2">
622 <a name="gvir-domain-start-async"></a><h3>gvir_domain_start_async ()</h3>
623 <pre class="programlisting"><span class="returnvalue">void</span> gvir_domain_start_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
624 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
625 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
626 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
627 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
628 <p>
629 Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-start" title="gvir_domain_start ()"><span class="type">gvir_domain_start</span></a>.
630 </p>
631 <div class="variablelist"><table border="0" class="variablelist">
632 <colgroup>
633 <col align="left" valign="top">
634 <col>
635 </colgroup>
636 <tbody>
637 <tr>
638 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
639 <td>the domain</td>
640 </tr>
641 <tr>
642 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
643 <td>the flags</td>
644 </tr>
645 <tr>
646 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
647 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
648 </td>
649 </tr>
650 <tr>
651 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
652 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
653 </td>
654 </tr>
655 <tr>
656 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
657 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
658 </td>
659 </tr>
660 </tbody>
661 </table></div>
662 </div>
663 <hr>
664 <div class="refsect2">
665 <a name="gvir-domain-start-finish"></a><h3>gvir_domain_start_finish ()</h3>
666 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_start_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
667 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
668 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
669 </div>
670 <hr>
671 <div class="refsect2">
672 <a name="gvir-domain-resume"></a><h3>gvir_domain_resume ()</h3>
673 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_resume (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
674 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
675 <div class="variablelist"><table border="0" class="variablelist">
676 <colgroup>
677 <col align="left" valign="top">
678 <col>
679 </colgroup>
680 <tbody>
681 <tr>
682 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
683 <td>the domain</td>
684 </tr>
685 <tr>
686 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
687 <td>Place-holder for possible errors</td>
688 </tr>
689 <tr>
690 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
691 <td>TRUE on success</td>
692 </tr>
693 </tbody>
694 </table></div>
695 </div>
696 <hr>
697 <div class="refsect2">
698 <a name="gvir-domain-resume-async"></a><h3>gvir_domain_resume_async ()</h3>
699 <pre class="programlisting"><span class="returnvalue">void</span> gvir_domain_resume_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
700 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
701 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
702 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
703 <p>
704 Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-resume" title="gvir_domain_resume ()"><span class="type">gvir_domain_resume</span></a>.
705 </p>
706 <div class="variablelist"><table border="0" class="variablelist">
707 <colgroup>
708 <col align="left" valign="top">
709 <col>
710 </colgroup>
711 <tbody>
712 <tr>
713 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
714 <td>the domain to resume</td>
715 </tr>
716 <tr>
717 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
718 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
719 </td>
720 </tr>
721 <tr>
722 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
723 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
724 </td>
725 </tr>
726 <tr>
727 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
728 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
729 </td>
730 </tr>
731 </tbody>
732 </table></div>
733 </div>
734 <hr>
735 <div class="refsect2">
736 <a name="gvir-domain-resume-finish"></a><h3>gvir_domain_resume_finish ()</h3>
737 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_resume_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
738 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
739 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
740 </div>
741 <hr>
742 <div class="refsect2">
743 <a name="gvir-domain-wakeup"></a><h3>gvir_domain_wakeup ()</h3>
744 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_wakeup (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
745 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
746 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
747 <div class="variablelist"><table border="0" class="variablelist">
748 <colgroup>
749 <col align="left" valign="top">
750 <col>
751 </colgroup>
752 <tbody>
753 <tr>
754 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
755 <td>the domain</td>
756 </tr>
757 <tr>
758 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
759 <td>placeholder for flags, pass 0</td>
760 </tr>
761 <tr>
762 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
763 <td>Place-holder for possible errors</td>
764 </tr>
765 <tr>
766 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
767 <td>TRUE on success</td>
768 </tr>
769 </tbody>
770 </table></div>
771 </div>
772 <hr>
773 <div class="refsect2">
774 <a name="gvir-domain-wakeup-async"></a><h3>gvir_domain_wakeup_async ()</h3>
775 <pre class="programlisting"><span class="returnvalue">void</span> gvir_domain_wakeup_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
776 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
777 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
778 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
779 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
780 <p>
781 Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-wakeup" title="gvir_domain_wakeup ()"><span class="type">gvir_domain_wakeup</span></a>.
782 </p>
783 <div class="variablelist"><table border="0" class="variablelist">
784 <colgroup>
785 <col align="left" valign="top">
786 <col>
787 </colgroup>
788 <tbody>
789 <tr>
790 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
791 <td>the domain to wakeup</td>
792 </tr>
793 <tr>
794 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
795 <td>placeholder for flags, pass 0</td>
796 </tr>
797 <tr>
798 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
799 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
800 </td>
801 </tr>
802 <tr>
803 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
804 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
805 </td>
806 </tr>
807 <tr>
808 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
809 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
810 </td>
811 </tr>
812 </tbody>
813 </table></div>
814 </div>
815 <hr>
816 <div class="refsect2">
817 <a name="gvir-domain-wakeup-finish"></a><h3>gvir_domain_wakeup_finish ()</h3>
818 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_wakeup_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
819 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
820 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
821 </div>
822 <hr>
823 <div class="refsect2">
824 <a name="gvir-domain-stop"></a><h3>gvir_domain_stop ()</h3>
825 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_stop (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
826 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
827 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
828 <div class="variablelist"><table border="0" class="variablelist">
829 <colgroup>
830 <col align="left" valign="top">
831 <col>
832 </colgroup>
833 <tbody>
834 <tr>
835 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
836 <td>the domain</td>
837 </tr>
838 <tr>
839 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
840 <td>the flags</td>
841 </tr>
842 </tbody>
843 </table></div>
844 </div>
845 <hr>
846 <div class="refsect2">
847 <a name="gvir-domain-delete"></a><h3>gvir_domain_delete ()</h3>
848 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_delete (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
849 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
850 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
851 <div class="variablelist"><table border="0" class="variablelist">
852 <colgroup>
853 <col align="left" valign="top">
854 <col>
855 </colgroup>
856 <tbody>
857 <tr>
858 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
859 <td>the domain</td>
860 </tr>
861 <tr>
862 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
863 <td>the flags</td>
864 </tr>
865 </tbody>
866 </table></div>
867 </div>
868 <hr>
869 <div class="refsect2">
870 <a name="gvir-domain-shutdown"></a><h3>gvir_domain_shutdown ()</h3>
871 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_shutdown (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
872 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
873 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
874 <div class="variablelist"><table border="0" class="variablelist">
875 <colgroup>
876 <col align="left" valign="top">
877 <col>
878 </colgroup>
879 <tbody>
880 <tr>
881 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
882 <td>the domain</td>
883 </tr>
884 <tr>
885 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
886 <td>the <a class="link" href="GVirDomain.html#GVirDomainShutdownFlags" title="enum GVirDomainShutdownFlags"><code class="literal">GVirDomainShutdownFlags</code></a> flags</td>
887 </tr>
888 </tbody>
889 </table></div>
890 </div>
891 <hr>
892 <div class="refsect2">
893 <a name="gvir-domain-reboot"></a><h3>gvir_domain_reboot ()</h3>
894 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_reboot (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
895 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
896 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
897 <div class="variablelist"><table border="0" class="variablelist">
898 <colgroup>
899 <col align="left" valign="top">
900 <col>
901 </colgroup>
902 <tbody>
903 <tr>
904 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
905 <td>the domain</td>
906 </tr>
907 <tr>
908 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
909 <td>the <a class="link" href="GVirDomain.html#GVirDomainRebootFlags" title="enum GVirDomainRebootFlags"><code class="literal">GVirDomainRebootFlags</code></a> flags</td>
910 </tr>
911 </tbody>
912 </table></div>
913 </div>
914 <hr>
915 <div class="refsect2">
916 <a name="gvir-domain-save-to-file"></a><h3>gvir_domain_save_to_file ()</h3>
917 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_save_to_file (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
918 <em class="parameter"><code><span class="type">gchar</span> *filename</code></em>,
919 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *custom_conf</code></em>,
920 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
921 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
922 <div class="variablelist"><table border="0" class="variablelist">
923 <colgroup>
924 <col align="left" valign="top">
925 <col>
926 </colgroup>
927 <tbody>
928 <tr>
929 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
930 <td>the domain</td>
931 </tr>
932 <tr>
933 <td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
934 <td>path to the output file</td>
935 </tr>
936 <tr>
937 <td><p><span class="term"><em class="parameter"><code>custom_conf</code></em> :</span></p></td>
938 <td>configuration for domain or NULL. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
939 </td>
940 </tr>
941 <tr>
942 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
943 <td>the flags</td>
944 </tr>
945 <tr>
946 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
947 <td>TRUE on success, FALSE otherwise</td>
948 </tr>
949 </tbody>
950 </table></div>
951 </div>
952 <hr>
953 <div class="refsect2">
954 <a name="gvir-domain-save-to-file-async"></a><h3>gvir_domain_save_to_file_async ()</h3>
955 <pre class="programlisting"><span class="returnvalue">void</span> gvir_domain_save_to_file_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
956 <em class="parameter"><code><span class="type">gchar</span> *filename</code></em>,
957 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *custom_conf</code></em>,
958 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
959 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
960 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
961 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
962 <p>
963 Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-save-to-file" title="gvir_domain_save_to_file ()"><span class="type">gvir_domain_save_to_file</span></a>
964 </p>
965 <div class="variablelist"><table border="0" class="variablelist">
966 <colgroup>
967 <col align="left" valign="top">
968 <col>
969 </colgroup>
970 <tbody>
971 <tr>
972 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
973 <td>the domain</td>
974 </tr>
975 <tr>
976 <td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
977 <td>path to output file</td>
978 </tr>
979 <tr>
980 <td><p><span class="term"><em class="parameter"><code>custom_conf</code></em> :</span></p></td>
981 <td>configuration for domain or NULL. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
982 </td>
983 </tr>
984 <tr>
985 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
986 <td>the flags</td>
987 </tr>
988 <tr>
989 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
990 <td>cancallation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
991 </td>
992 </tr>
993 <tr>
994 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
995 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
996 </td>
997 </tr>
998 <tr>
999 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1000 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
1001 </td>
1002 </tr>
1003 </tbody>
1004 </table></div>
1005 </div>
1006 <hr>
1007 <div class="refsect2">
1008 <a name="gvir-domain-save-to-file-finish"></a><h3>gvir_domain_save_to_file_finish ()</h3>
1009 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_save_to_file_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1010 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
1011 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1012 <p>
1013 Finishes the operation started by <a class="link" href="GVirDomain.html#gvir-domain-save-to-file-async" title="gvir_domain_save_to_file_async ()"><span class="type">gvir_domain_save_to_file_async</span></a>.
1014 </p>
1015 <div class="variablelist"><table border="0" class="variablelist">
1016 <colgroup>
1017 <col align="left" valign="top">
1018 <col>
1019 </colgroup>
1020 <tbody>
1021 <tr>
1022 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
1023 <td>the domain to save</td>
1024 </tr>
1025 <tr>
1026 <td><p><span class="term"><em class="parameter"><code>result</code></em> :</span></p></td>
1027 <td>async method result. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1028 </td>
1029 </tr>
1030 <tr>
1031 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
1032 <td>Place-holder for possible errors</td>
1033 </tr>
1034 <tr>
1035 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1036 <td>TRUE if domain was saved successfully, FALSE otherwise.</td>
1037 </tr>
1038 </tbody>
1039 </table></div>
1040 </div>
1041 <hr>
1042 <div class="refsect2">
1043 <a name="gvir-domain-get-info"></a><h3>gvir_domain_get_info ()</h3>
1044 <pre class="programlisting"><a class="link" href="GVirDomain.html#GVirDomainInfo"><span class="returnvalue">GVirDomainInfo</span></a> * gvir_domain_get_info (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1045 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1046 <div class="variablelist"><table border="0" class="variablelist">
1047 <colgroup>
1048 <col align="left" valign="top">
1049 <col>
1050 </colgroup>
1051 <tbody>
1052 <tr>
1053 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
1054 <td>the domain</td>
1055 </tr>
1056 <tr>
1057 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1058 <td>the info. The returned structure should be
1059 freed using #<code class="function">g_boxed_free()</code> with GVIR_TYPE_DOMAIN_INFO as the first argument
1060 when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1061 </td>
1062 </tr>
1063 </tbody>
1064 </table></div>
1065 </div>
1066 <hr>
1067 <div class="refsect2">
1068 <a name="gvir-domain-get-info-async"></a><h3>gvir_domain_get_info_async ()</h3>
1069 <pre class="programlisting"><span class="returnvalue">void</span> gvir_domain_get_info_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1070 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
1071 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
1072 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
1073 <p>
1074 Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-get-info" title="gvir_domain_get_info ()"><span class="type">gvir_domain_get_info</span></a>.
1075 </p>
1076 <div class="variablelist"><table border="0" class="variablelist">
1077 <colgroup>
1078 <col align="left" valign="top">
1079 <col>
1080 </colgroup>
1081 <tbody>
1082 <tr>
1083 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
1084 <td>the domain</td>
1085 </tr>
1086 <tr>
1087 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
1088 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1089 </td>
1090 </tr>
1091 <tr>
1092 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
1093 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
1094 </td>
1095 </tr>
1096 <tr>
1097 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1098 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
1099 </td>
1100 </tr>
1101 </tbody>
1102 </table></div>
1103 </div>
1104 <hr>
1105 <div class="refsect2">
1106 <a name="gvir-domain-get-info-finish"></a><h3>gvir_domain_get_info_finish ()</h3>
1107 <pre class="programlisting"><a class="link" href="GVirDomain.html#GVirDomainInfo"><span class="returnvalue">GVirDomainInfo</span></a> * gvir_domain_get_info_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1108 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
1109 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1110 <p>
1111 Finishes the operation started by <a class="link" href="GVirDomain.html#gvir-domain-get-info-async" title="gvir_domain_get_info_async ()"><span class="type">gvir_domain_get_info_async</span></a>.
1112 </p>
1113 <div class="variablelist"><table border="0" class="variablelist">
1114 <colgroup>
1115 <col align="left" valign="top">
1116 <col>
1117 </colgroup>
1118 <tbody>
1119 <tr>
1120 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
1121 <td>the domain</td>
1122 </tr>
1123 <tr>
1124 <td><p><span class="term"><em class="parameter"><code>result</code></em> :</span></p></td>
1125 <td>async method result. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1126 </td>
1127 </tr>
1128 <tr>
1129 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
1130 <td>Place-holder for possible errors</td>
1131 </tr>
1132 <tr>
1133 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1134 <td>the info. The returned object should be
1135 unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1136 </td>
1137 </tr>
1138 </tbody>
1139 </table></div>
1140 </div>
1141 <hr>
1142 <div class="refsect2">
1143 <a name="gvir-domain-get-config"></a><h3>gvir_domain_get_config ()</h3>
1144 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="returnvalue">GVirConfigDomain</span></a> * gvir_domain_get_config (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1145 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1146 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1147 <div class="variablelist"><table border="0" class="variablelist">
1148 <colgroup>
1149 <col align="left" valign="top">
1150 <col>
1151 </colgroup>
1152 <tbody>
1153 <tr>
1154 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
1155 <td>the domain</td>
1156 </tr>
1157 <tr>
1158 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
1159 <td>the <a class="link" href="GVirDomain.html#GVirDomainXMLFlags" title="enum GVirDomainXMLFlags"><code class="literal">GVirDomainXMLFlags</code></a> flags</td>
1160 </tr>
1161 <tr>
1162 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1163 <td>the config. The returned object should be
1164 unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1165 </td>
1166 </tr>
1167 </tbody>
1168 </table></div>
1169 </div>
1170 <hr>
1171 <div class="refsect2">
1172 <a name="gvir-domain-set-config"></a><h3>gvir_domain_set_config ()</h3>
1173 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_set_config (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *domain</code></em>,
1174 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomain.html"><span class="type">GVirConfigDomain</span></a> *conf</code></em>,
1175 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1176 <p>
1177 Resets configuration of an existing domain.
1178 </p>
1179 <p>
1180 Note: If domain is already running, the new configuration will not take
1181 affect until domain reboots.
1182 </p>
1183 <div class="variablelist"><table border="0" class="variablelist">
1184 <colgroup>
1185 <col align="left" valign="top">
1186 <col>
1187 </colgroup>
1188 <tbody>
1189 <tr>
1190 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
1191 <td>the domain</td>
1192 </tr>
1193 <tr>
1194 <td><p><span class="term"><em class="parameter"><code>conf</code></em> :</span></p></td>
1195 <td>the new configuration for the domain</td>
1196 </tr>
1197 <tr>
1198 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
1199 <td>Place-holder for error or NULL. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1200 </td>
1201 </tr>
1202 <tr>
1203 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1204 <td>TRUE on success, FALSE if an error occurred.</td>
1205 </tr>
1206 </tbody>
1207 </table></div>
1208 </div>
1209 <hr>
1210 <div class="refsect2">
1211 <a name="gvir-domain-screenshot"></a><h3>gvir_domain_screenshot ()</h3>
1212 <pre class="programlisting"><span class="returnvalue">gchar</span> * gvir_domain_screenshot (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1213 <em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
1214 <em class="parameter"><code><span class="type">guint</span> monitor_id</code></em>,
1215 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1216 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1217 <div class="variablelist"><table border="0" class="variablelist">
1218 <colgroup>
1219 <col align="left" valign="top">
1220 <col>
1221 </colgroup>
1222 <tbody>
1223 <tr>
1224 <td><p><span class="term"><em class="parameter"><code>stream</code></em> :</span></p></td>
1225 <td>stream to use as output</td>
1226 </tr>
1227 <tr>
1228 <td><p><span class="term"><em class="parameter"><code>monitor_id</code></em> :</span></p></td>
1229 <td>monitor ID to take screenshot from</td>
1230 </tr>
1231 <tr>
1232 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
1233 <td>extra flags, currently unused</td>
1234 </tr>
1235 <tr>
1236 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1237 <td>a newly allocated string containing the
1238 mime-type of the image format, or NULL upon error. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1239 </td>
1240 </tr>
1241 </tbody>
1242 </table></div>
1243 </div>
1244 <hr>
1245 <div class="refsect2">
1246 <a name="gvir-domain-open-console"></a><h3>gvir_domain_open_console ()</h3>
1247 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_open_console (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1248 <em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
1249 <em class="parameter"><code>const <span class="type">gchar</span> *devname</code></em>,
1250 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1251 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1252 <p>
1253 Open a text console for the domain <em class="parameter"><code>dom</code></em>, connecting it to the
1254 stream <em class="parameter"><code>stream</code></em>. If <em class="parameter"><code>devname</code></em> is NULL, the default console will
1255 be opened, otherwise <em class="parameter"><code>devname</code></em> can be used to specify a non-default
1256 console device.
1257 </p>
1258 <div class="variablelist"><table border="0" class="variablelist">
1259 <colgroup>
1260 <col align="left" valign="top">
1261 <col>
1262 </colgroup>
1263 <tbody>
1264 <tr>
1265 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
1266 <td>the domain. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1267 </td>
1268 </tr>
1269 <tr>
1270 <td><p><span class="term"><em class="parameter"><code>devname</code></em> :</span></p></td>
1271 <td>the device name. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1272 </td>
1273 </tr>
1274 <tr>
1275 <td><p><span class="term"><em class="parameter"><code>stream</code></em> :</span></p></td>
1276 <td>stream to use as output. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1277 </td>
1278 </tr>
1279 <tr>
1280 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
1281 <td>extra flags, currently unused</td>
1282 </tr>
1283 <tr>
1284 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1285 <td>TRUE if the console was opened, FALSE otherwise.</td>
1286 </tr>
1287 </tbody>
1288 </table></div>
1289 </div>
1290 <hr>
1291 <div class="refsect2">
1292 <a name="gvir-domain-open-graphics"></a><h3>gvir_domain_open_graphics ()</h3>
1293 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_open_graphics (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1294 <em class="parameter"><code><span class="type">guint</span> idx</code></em>,
1295 <em class="parameter"><code><span class="type">int</span> fd</code></em>,
1296 <em class="parameter"><code>unsigned <span class="type">int</span> flags</code></em>,
1297 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1298 <p>
1299 Open a connection to the local graphics display, connecting it to the
1300 socket pair file descriptor passed in as <em class="parameter"><code>fd</code></em>.
1301 </p>
1302 <div class="variablelist"><table border="0" class="variablelist">
1303 <colgroup>
1304 <col align="left" valign="top">
1305 <col>
1306 </colgroup>
1307 <tbody>
1308 <tr>
1309 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
1310 <td>the domain</td>
1311 </tr>
1312 <tr>
1313 <td><p><span class="term"><em class="parameter"><code>idx</code></em> :</span></p></td>
1314 <td>the graphics index</td>
1315 </tr>
1316 <tr>
1317 <td><p><span class="term"><em class="parameter"><code>fd</code></em> :</span></p></td>
1318 <td>pre-opened socket pair</td>
1319 </tr>
1320 <tr>
1321 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
1322 <td>extra flags, currently unused</td>
1323 </tr>
1324 <tr>
1325 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1326 <td>TRUE if the graphics connection was opened, FALSE otherwise.</td>
1327 </tr>
1328 </tbody>
1329 </table></div>
1330 </div>
1331 <hr>
1332 <div class="refsect2">
1333 <a name="gvir-domain-suspend"></a><h3>gvir_domain_suspend ()</h3>
1334 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_suspend (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1335 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1336 <p>
1337 Suspends an active domain, the process is frozen without further access to
1338 CPU resources and I/O but the memory used by the domain at the hypervisor
1339 level will stay allocated. Use <a class="link" href="GVirDomain.html#gvir-domain-resume" title="gvir_domain_resume ()"><code class="function">gvir_domain_resume()</code></a> to reactivate the domain.
1340 </p>
1341 <div class="variablelist"><table border="0" class="variablelist">
1342 <colgroup>
1343 <col align="left" valign="top">
1344 <col>
1345 </colgroup>
1346 <tbody>
1347 <tr>
1348 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
1349 <td>the domain to suspend</td>
1350 </tr>
1351 <tr>
1352 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
1353 <td>Place-holder for possible errors</td>
1354 </tr>
1355 <tr>
1356 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1357 <td>TRUE if domain was suspended successfully, FALSE otherwise.</td>
1358 </tr>
1359 </tbody>
1360 </table></div>
1361 </div>
1362 <hr>
1363 <div class="refsect2">
1364 <a name="gvir-domain-save"></a><h3>gvir_domain_save ()</h3>
1365 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_save (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1366 <em class="parameter"><code>unsigned <span class="type">int</span> flags</code></em>,
1367 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1368 <p>
1369 Saves the state of the domain on disk and stops it. Use <a class="link" href="GVirDomain.html#gvir-domain-start" title="gvir_domain_start ()"><span class="type">gvir_domain_start</span></a>
1370 to restore the saved state of the domain. A saved domain can be restored
1371 even after shutdown/reboot of host machine.
1372 </p>
1373 <div class="variablelist"><table border="0" class="variablelist">
1374 <colgroup>
1375 <col align="left" valign="top">
1376 <col>
1377 </colgroup>
1378 <tbody>
1379 <tr>
1380 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
1381 <td>the domain to save</td>
1382 </tr>
1383 <tr>
1384 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
1385 <td>extra flags, currently unused</td>
1386 </tr>
1387 <tr>
1388 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
1389 <td>Place-holder for possible errors</td>
1390 </tr>
1391 <tr>
1392 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1393 <td>TRUE if domain was saved successfully, FALSE otherwise.</td>
1394 </tr>
1395 </tbody>
1396 </table></div>
1397 </div>
1398 <hr>
1399 <div class="refsect2">
1400 <a name="gvir-domain-save-async"></a><h3>gvir_domain_save_async ()</h3>
1401 <pre class="programlisting"><span class="returnvalue">void</span> gvir_domain_save_async (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1402 <em class="parameter"><code>unsigned <span class="type">int</span> flags</code></em>,
1403 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
1404 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
1405 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
1406 <p>
1407 Asynchronous variant of <a class="link" href="GVirDomain.html#gvir-domain-save" title="gvir_domain_save ()"><span class="type">gvir_domain_save</span></a>.
1408 </p>
1409 <div class="variablelist"><table border="0" class="variablelist">
1410 <colgroup>
1411 <col align="left" valign="top">
1412 <col>
1413 </colgroup>
1414 <tbody>
1415 <tr>
1416 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
1417 <td>the domain to save</td>
1418 </tr>
1419 <tr>
1420 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
1421 <td>extra flags, currently unused</td>
1422 </tr>
1423 <tr>
1424 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
1425 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1426 </td>
1427 </tr>
1428 <tr>
1429 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
1430 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
1431 </td>
1432 </tr>
1433 <tr>
1434 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1435 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
1436 </td>
1437 </tr>
1438 </tbody>
1439 </table></div>
1440 </div>
1441 <hr>
1442 <div class="refsect2">
1443 <a name="gvir-domain-save-finish"></a><h3>gvir_domain_save_finish ()</h3>
1444 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_save_finish (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1445 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
1446 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1447 <p>
1448 Finishes the operation started by <a class="link" href="GVirDomain.html#gvir-domain-save-async" title="gvir_domain_save_async ()"><span class="type">gvir_domain_save_async</span></a>.
1449 </p>
1450 <div class="variablelist"><table border="0" class="variablelist">
1451 <colgroup>
1452 <col align="left" valign="top">
1453 <col>
1454 </colgroup>
1455 <tbody>
1456 <tr>
1457 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
1458 <td>the domain to save</td>
1459 </tr>
1460 <tr>
1461 <td><p><span class="term"><em class="parameter"><code>result</code></em> :</span></p></td>
1462 <td>async method result. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1463 </td>
1464 </tr>
1465 <tr>
1466 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
1467 <td>Place-holder for possible errors</td>
1468 </tr>
1469 <tr>
1470 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1471 <td>TRUE if domain was saved successfully, FALSE otherwise.</td>
1472 </tr>
1473 </tbody>
1474 </table></div>
1475 </div>
1476 <hr>
1477 <div class="refsect2">
1478 <a name="gvir-domain-get-persistent"></a><h3>gvir_domain_get_persistent ()</h3>
1479 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_get_persistent (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);</pre>
1480 <div class="variablelist"><table border="0" class="variablelist">
1481 <colgroup>
1482 <col align="left" valign="top">
1483 <col>
1484 </colgroup>
1485 <tbody>
1486 <tr>
1487 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
1488 <td>the domain</td>
1489 </tr>
1490 <tr>
1491 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1492 <td>TRUE if domain is persistent, FALSE otherwise.</td>
1493 </tr>
1494 </tbody>
1495 </table></div>
1496 </div>
1497 <hr>
1498 <div class="refsect2">
1499 <a name="gvir-domain-get-saved"></a><h3>gvir_domain_get_saved ()</h3>
1500 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_get_saved (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>);</pre>
1501 <div class="variablelist"><table border="0" class="variablelist">
1502 <colgroup>
1503 <col align="left" valign="top">
1504 <col>
1505 </colgroup>
1506 <tbody>
1507 <tr>
1508 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
1509 <td>the domain</td>
1510 </tr>
1511 <tr>
1512 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1513 <td>TRUE if a stopped domain has a saved state to which it can be
1514 restored to using <a class="link" href="GVirDomain.html#gvir-domain-start" title="gvir_domain_start ()"><span class="type">gvir_domain_start</span></a>, FALSE otherwise.</td>
1515 </tr>
1516 </tbody>
1517 </table></div>
1518 </div>
1519 <hr>
1520 <div class="refsect2">
1521 <a name="gvir-domain-get-devices"></a><h3>gvir_domain_get_devices ()</h3>
1522 <pre class="programlisting"><span class="returnvalue">GList</span> * gvir_domain_get_devices (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *domain</code></em>,
1523 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1524 <p>
1525 Gets the list of devices attached to <em class="parameter"><code>domain</code></em>. The returned list should
1526 be freed with <code class="function">g_list_free()</code>, after its elements have been unreffed with
1527 <code class="function">g_object_unref()</code>.
1528 </p>
1529 <div class="variablelist"><table border="0" class="variablelist">
1530 <colgroup>
1531 <col align="left" valign="top">
1532 <col>
1533 </colgroup>
1534 <tbody>
1535 <tr>
1536 <td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
1537 <td>the domain</td>
1538 </tr>
1539 <tr>
1540 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
1541 <td>place-holder for possible errors, or NULL</td>
1542 </tr>
1543 <tr>
1544 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1545 <td>a newly
1546 allocated <span class="type">GList</span> of <span class="type">GVirDomainDevice</span>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGObject.DomainDevice][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1547 </td>
1548 </tr>
1549 </tbody>
1550 </table></div>
1551 </div>
1552 <hr>
1553 <div class="refsect2">
1554 <a name="gvir-domain-update-device"></a><h3>gvir_domain_update_device ()</h3>
1555 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_domain_update_device (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1556 <em class="parameter"><code><span class="type">GVirConfigDomainDevice</span> *device</code></em>,
1557 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1558 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1559 <p>
1560 Update the configuration of a device.
1561 </p>
1562 <div class="variablelist"><table border="0" class="variablelist">
1563 <colgroup>
1564 <col align="left" valign="top">
1565 <col>
1566 </colgroup>
1567 <tbody>
1568 <tr>
1569 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
1570 <td>the domain</td>
1571 </tr>
1572 <tr>
1573 <td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
1574 <td>A modified device config</td>
1575 </tr>
1576 <tr>
1577 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
1578 <td>bitwise-OR of <a class="link" href="GVirDomain.html#GVirDomainUpdateDeviceFlags" title="enum GVirDomainUpdateDeviceFlags"><span class="type">GVirDomainUpdateDeviceFlags</span></a>
1579 </td>
1580 </tr>
1581 <tr>
1582 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
1583 <td>Place-holder for error or NULL. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1584 </td>
1585 </tr>
1586 <tr>
1587 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1588 <td>TRUE if device was updated successfully, FALSE otherwise.</td>
1589 </tr>
1590 </tbody>
1591 </table></div>
1592 </div>
1593 <hr>
1594 <div class="refsect2">
1595 <a name="gvir-domain-create-snapshot"></a><h3>gvir_domain_create_snapshot ()</h3>
1596 <pre class="programlisting"><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="returnvalue">GVirDomainSnapshot</span></a> * gvir_domain_create_snapshot (<em class="parameter"><code><a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *dom</code></em>,
1597 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomainSnapshot.html"><span class="type">GVirConfigDomainSnapshot</span></a> *custom_conf</code></em>,
1598 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
1599 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
1600 <div class="variablelist"><table border="0" class="variablelist">
1601 <colgroup>
1602 <col align="left" valign="top">
1603 <col>
1604 </colgroup>
1605 <tbody>
1606 <tr>
1607 <td><p><span class="term"><em class="parameter"><code>dom</code></em> :</span></p></td>
1608 <td>the domain</td>
1609 </tr>
1610 <tr>
1611 <td><p><span class="term"><em class="parameter"><code>custom_conf</code></em> :</span></p></td>
1612 <td>configuration of snapshot or NULL. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1613 </td>
1614 </tr>
1615 <tr>
1616 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
1617 <td>bitwise-OR of <a class="link" href="GVirDomain.html#GVirDomainSnapshotCreateFlags" title="enum GVirDomainSnapshotCreateFlags"><span class="type">GVirDomainSnapshotCreateFlags</span></a>
1618 </td>
1619 </tr>
1620 <tr>
1621 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
1622 <td>Place-holder for error or NULL. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1623 </td>
1624 </tr>
1625 <tr>
1626 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1627 <td>snapshot of domain. The returned object should be
1628 unreffed when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1629 </td>
1630 </tr>
1631 </tbody>
1632 </table></div>
2392 <div class="refsect3">
2393 <a name="id-1.2.3.11.9.3"></a><h4>Members</h4>
2394 <div class="informaltable"><table width="100%" border="0">
2395 <colgroup>
2396 <col width="300px" class="enum_members_name">
2397 <col class="enum_members_description">
2398 <col width="200px" class="enum_members_annotations">
2399 </colgroup>
2400 <tbody>
2401 <tr>
2402 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-REBOOT-NONE:CAPS"></a>GVIR_DOMAIN_REBOOT_NONE</p></td>
2403 <td class="enum_member_description">
2404 <p>No flags, hypervisor choice</p>
2405 </td>
2406 <td class="enum_member_annotations"> </td>
2407 </tr>
2408 <tr>
2409 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-REBOOT-ACPI-POWER-BTN:CAPS"></a>GVIR_DOMAIN_REBOOT_ACPI_POWER_BTN</p></td>
2410 <td class="enum_member_description">
2411 <p>Send ACPI event</p>
2412 </td>
2413 <td class="enum_member_annotations"> </td>
2414 </tr>
2415 <tr>
2416 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-REBOOT-GUEST-AGENT:CAPS"></a>GVIR_DOMAIN_REBOOT_GUEST_AGENT</p></td>
2417 <td class="enum_member_description">
2418 <p>Use guest agent</p>
2419 </td>
2420 <td class="enum_member_annotations"> </td>
2421 </tr>
2422 </tbody>
2423 </table></div>
2424 </div>
2425 </div>
2426 <hr>
2427 <div class="refsect2">
2428 <a name="GVirDomainSnapshotListFlags"></a><h3>enum GVirDomainSnapshotListFlags</h3>
2429 <div class="refsect3">
2430 <a name="id-1.2.3.11.10.3"></a><h4>Members</h4>
2431 <div class="informaltable"><table width="100%" border="0">
2432 <colgroup>
2433 <col width="300px" class="enum_members_name">
2434 <col class="enum_members_description">
2435 <col width="200px" class="enum_members_annotations">
2436 </colgroup>
2437 <tbody>
2438 <tr>
2439 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-LIST-ALL:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_LIST_ALL</p></td>
2440 <td class="enum_member_description">
2441 <p>List all snapshots</p>
2442 </td>
2443 <td class="enum_member_annotations"> </td>
2444 </tr>
2445 <tr>
2446 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-LIST-DESCENDANTS:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_LIST_DESCENDANTS</p></td>
2447 <td class="enum_member_description">
2448 <p>List all descendants, not just
2449 children, when listing a snapshot.
2450 For historical reasons, groups do not use contiguous bits.</p>
2451 </td>
2452 <td class="enum_member_annotations"> </td>
2453 </tr>
2454 <tr>
2455 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-LIST-ROOTS:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_LIST_ROOTS</p></td>
2456 <td class="enum_member_description">
2457 <p>Filter by snapshots with no parents, when listing a domain</p>
2458 </td>
2459 <td class="enum_member_annotations"> </td>
2460 </tr>
2461 <tr>
2462 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-LIST-METADATA:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_LIST_METADATA</p></td>
2463 <td class="enum_member_description">
2464 <p>Filter by snapshots which have metadata</p>
2465 </td>
2466 <td class="enum_member_annotations"> </td>
2467 </tr>
2468 <tr>
2469 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-LIST-LEAVES:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_LIST_LEAVES</p></td>
2470 <td class="enum_member_description">
2471 <p>Filter by snapshots with no children</p>
2472 </td>
2473 <td class="enum_member_annotations"> </td>
2474 </tr>
2475 <tr>
2476 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-LIST-NO-LEAVES:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_LIST_NO_LEAVES</p></td>
2477 <td class="enum_member_description">
2478 <p>Filter by snapshots that have children</p>
2479 </td>
2480 <td class="enum_member_annotations"> </td>
2481 </tr>
2482 <tr>
2483 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-LIST-NO-METADATA:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_LIST_NO_METADATA</p></td>
2484 <td class="enum_member_description">
2485 <p>Filter by snapshots with no metadata</p>
2486 </td>
2487 <td class="enum_member_annotations"> </td>
2488 </tr>
2489 <tr>
2490 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-LIST-INACTIVE:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_LIST_INACTIVE</p></td>
2491 <td class="enum_member_description">
2492 <p>Filter by snapshots taken while guest was shut off</p>
2493 </td>
2494 <td class="enum_member_annotations"> </td>
2495 </tr>
2496 <tr>
2497 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-LIST-ACTIVE:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_LIST_ACTIVE</p></td>
2498 <td class="enum_member_description">
2499 <p>Filter by snapshots taken while guest was active, and with memory state</p>
2500 </td>
2501 <td class="enum_member_annotations"> </td>
2502 </tr>
2503 <tr>
2504 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-LIST-DISK-ONLY:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_LIST_DISK_ONLY</p></td>
2505 <td class="enum_member_description">
2506 <p>Filter by snapshots taken while guest was active, but without memory state</p>
2507 </td>
2508 <td class="enum_member_annotations"> </td>
2509 </tr>
2510 <tr>
2511 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-LIST-INTERNAL:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_LIST_INTERNAL</p></td>
2512 <td class="enum_member_description">
2513 <p>Filter by snapshots stored internal to disk images</p>
2514 </td>
2515 <td class="enum_member_annotations"> </td>
2516 </tr>
2517 <tr>
2518 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-LIST-EXTERNAL:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_LIST_EXTERNAL</p></td>
2519 <td class="enum_member_description">
2520 <p>Filter by snapshots that use files external to disk images</p>
2521 </td>
2522 <td class="enum_member_annotations"> </td>
2523 </tr>
2524 </tbody>
2525 </table></div>
2526 </div>
16332527 </div>
16342528 </div>
16352529 <div class="refsect1">
16362530 <a name="GVirDomain.property-details"></a><h2>Property Details</h2>
16372531 <div class="refsect2">
1638 <a name="GVirDomain--handle"></a><h3>The <code class="literal">"handle"</code> property</h3>
1639 <pre class="programlisting"> "handle" <span class="type">GVirDomainHandle</span>* : Read / Write / Construct Only</pre>
2532 <a name="GVirDomain--handle"></a><h3>The <code class="literal">“handle”</code> property</h3>
2533 <pre class="programlisting"> “handle” <span class="type">GVirDomainHandle</span> *</pre>
16402534 <p>The domain handle.</p>
1641 </div>
1642 <hr>
1643 <div class="refsect2">
1644 <a name="GVirDomain--persistent"></a><h3>The <code class="literal">"persistent"</code> property</h3>
1645 <pre class="programlisting"> "persistent" <span class="type">gboolean</span> : Read</pre>
2535 <p>Flags: Read / Write / Construct Only</p>
2536 </div>
2537 <hr>
2538 <div class="refsect2">
2539 <a name="GVirDomain--persistent"></a><h3>The <code class="literal">“persistent”</code> property</h3>
2540 <pre class="programlisting"> “persistent” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
16462541 <p>If domain is persistent.</p>
2542 <p>Flags: Read</p>
16472543 <p>Default value: TRUE</p>
16482544 </div>
16492545 </div>
16502546 <div class="refsect1">
16512547 <a name="GVirDomain.signal-details"></a><h2>Signal Details</h2>
16522548 <div class="refsect2">
1653 <a name="GVirDomain-pmsuspended"></a><h3>The <code class="literal">"pmsuspended"</code> signal</h3>
1654 <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
1655 <span class="type">gpointer</span> user_data) : <code class="literal">No Hooks</code></pre>
1656 </div>
1657 <hr>
1658 <div class="refsect2">
1659 <a name="GVirDomain-resumed"></a><h3>The <code class="literal">"resumed"</code> signal</h3>
1660 <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
1661 <span class="type">gpointer</span> user_data) : <code class="literal">No Hooks</code></pre>
1662 </div>
1663 <hr>
1664 <div class="refsect2">
1665 <a name="GVirDomain-started"></a><h3>The <code class="literal">"started"</code> signal</h3>
1666 <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
1667 <span class="type">gpointer</span> user_data) : <code class="literal">No Hooks</code></pre>
1668 </div>
1669 <hr>
1670 <div class="refsect2">
1671 <a name="GVirDomain-stopped"></a><h3>The <code class="literal">"stopped"</code> signal</h3>
1672 <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
1673 <span class="type">gpointer</span> user_data) : <code class="literal">No Hooks</code></pre>
1674 </div>
1675 <hr>
1676 <div class="refsect2">
1677 <a name="GVirDomain-suspended"></a><h3>The <code class="literal">"suspended"</code> signal</h3>
1678 <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
1679 <span class="type">gpointer</span> user_data) : <code class="literal">No Hooks</code></pre>
1680 </div>
1681 <hr>
1682 <div class="refsect2">
1683 <a name="GVirDomain-updated"></a><h3>The <code class="literal">"updated"</code> signal</h3>
1684 <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
1685 <span class="type">gpointer</span> user_data) : <code class="literal">No Hooks</code></pre>
2549 <a name="GVirDomain-pmsuspended"></a><h3>The <code class="literal">“pmsuspended”</code> signal</h3>
2550 <pre class="programlisting"><span class="returnvalue">void</span>
2551 user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
2552 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2553 <p>Flags: No Hooks</p>
2554 </div>
2555 <hr>
2556 <div class="refsect2">
2557 <a name="GVirDomain-resumed"></a><h3>The <code class="literal">“resumed”</code> signal</h3>
2558 <pre class="programlisting"><span class="returnvalue">void</span>
2559 user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
2560 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2561 <p>Flags: No Hooks</p>
2562 </div>
2563 <hr>
2564 <div class="refsect2">
2565 <a name="GVirDomain-started"></a><h3>The <code class="literal">“started”</code> signal</h3>
2566 <pre class="programlisting"><span class="returnvalue">void</span>
2567 user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
2568 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2569 <p>Flags: No Hooks</p>
2570 </div>
2571 <hr>
2572 <div class="refsect2">
2573 <a name="GVirDomain-stopped"></a><h3>The <code class="literal">“stopped”</code> signal</h3>
2574 <pre class="programlisting"><span class="returnvalue">void</span>
2575 user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
2576 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2577 <p>Flags: No Hooks</p>
2578 </div>
2579 <hr>
2580 <div class="refsect2">
2581 <a name="GVirDomain-suspended"></a><h3>The <code class="literal">“suspended”</code> signal</h3>
2582 <pre class="programlisting"><span class="returnvalue">void</span>
2583 user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
2584 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2585 <p>Flags: No Hooks</p>
2586 </div>
2587 <hr>
2588 <div class="refsect2">
2589 <a name="GVirDomain-updated"></a><h3>The <code class="literal">“updated”</code> signal</h3>
2590 <pre class="programlisting"><span class="returnvalue">void</span>
2591 user_function (<a class="link" href="GVirDomain.html" title="GVirDomain"><span class="type">GVirDomain</span></a> *gvirdomain,
2592 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2593 <p>Flags: No Hooks</p>
16862594 </div>
16872595 </div>
16882596 </div>
16892597 <div class="footer">
16902598 <hr>
1691 Generated by GTK-Doc V1.19</div>
2599 Generated by GTK-Doc V1.21</div>
16922600 </body>
16932601 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirDomainSnapshot</title>
4 <title>Libvirt-gobject Reference Manual: GVirDomainSnapshot</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirDomain.html" title="GVirDomain">
9 <link rel="next" href="Libvirt-gobject-GVir.html" title="GVir">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
9 <link rel="next" href="GVirInterface.html" title="GVirInterface">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirDomain.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gobject Reference Manual</th>
20 <td><a accesskey="n" href="Libvirt-gobject-GVir.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirDomainSnapshot.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirDomainSnapshot.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirDomainSnapshot.object-hierarchy" class="shortcut">Object Hierarchy</a>
28  | 
29 <a href="#GVirDomainSnapshot.properties" class="shortcut">Properties</a>
30 </td></tr>
31 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirDomainSnapshot.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirDomainSnapshot.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
19 <a href="#GVirDomainSnapshot.properties" class="shortcut">Properties</a></span>
20 </td>
21 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23 <td><a accesskey="p" href="GVirDomain.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24 <td><a accesskey="n" href="GVirInterface.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25 </tr></table>
3226 <div class="refentry">
3327 <a name="GVirDomainSnapshot"></a><div class="titlepage"></div>
3428 <div class="refnamediv"><table width="100%"><tr>
3630 <h2><span class="refentrytitle"><a name="GVirDomainSnapshot.top_of_page"></a>GVirDomainSnapshot</span></h2>
3731 <p>GVirDomainSnapshot</p>
3832 </td>
39 <td valign="top" align="right"></td>
33 <td class="gallery_image" valign="top" align="right"></td>
4034 </tr></table></div>
41 <div class="refsynopsisdiv">
42 <a name="GVirDomainSnapshot.synopsis"></a><h2>Synopsis</h2>
43 <pre class="synopsis">struct <a class="link" href="GVirDomainSnapshot.html#GVirDomainSnapshot-struct" title="struct GVirDomainSnapshot">GVirDomainSnapshot</a>;
44 struct <a class="link" href="GVirDomainSnapshot.html#GVirDomainSnapshotClass" title="struct GVirDomainSnapshotClass">GVirDomainSnapshotClass</a>;
45 const <span class="returnvalue">gchar</span> * <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-get-name" title="gvir_domain_snapshot_get_name ()">gvir_domain_snapshot_get_name</a> (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>);
46 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomainSnapshot.html"><span class="returnvalue">GVirConfigDomainSnapshot</span></a> * <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-get-config" title="gvir_domain_snapshot_get_config ()">gvir_domain_snapshot_get_config</a>
47 (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
48 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
49 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
35 <div class="refsect1">
36 <a name="GVirDomainSnapshot.functions"></a><h2>Functions</h2>
37 <div class="informaltable"><table width="100%" border="0">
38 <colgroup>
39 <col width="150px" class="functions_return">
40 <col class="functions_name">
41 </colgroup>
42 <tbody>
43 <tr>
44 <td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
45 </td>
46 <td class="function_name">
47 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-get-name" title="gvir_domain_snapshot_get_name ()">gvir_domain_snapshot_get_name</a> <span class="c_punctuation">()</span>
48 </td>
49 </tr>
50 <tr>
51 <td class="function_type">
52 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomainSnapshot.html"><span class="returnvalue">GVirConfigDomainSnapshot</span></a> *
53 </td>
54 <td class="function_name">
55 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-get-config" title="gvir_domain_snapshot_get_config ()">gvir_domain_snapshot_get_config</a> <span class="c_punctuation">()</span>
56 </td>
57 </tr>
58 <tr>
59 <td class="function_type">
60 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
61 </td>
62 <td class="function_name">
63 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-delete" title="gvir_domain_snapshot_delete ()">gvir_domain_snapshot_delete</a> <span class="c_punctuation">()</span>
64 </td>
65 </tr>
66 <tr>
67 <td class="function_type">
68 <span class="returnvalue">void</span>
69 </td>
70 <td class="function_name">
71 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-delete-async" title="gvir_domain_snapshot_delete_async ()">gvir_domain_snapshot_delete_async</a> <span class="c_punctuation">()</span>
72 </td>
73 </tr>
74 <tr>
75 <td class="function_type">
76 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
77 </td>
78 <td class="function_name">
79 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-delete-finish" title="gvir_domain_snapshot_delete_finish ()">gvir_domain_snapshot_delete_finish</a> <span class="c_punctuation">()</span>
80 </td>
81 </tr>
82 <tr>
83 <td class="function_type">
84 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
85 </td>
86 <td class="function_name">
87 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-get-is-current" title="gvir_domain_snapshot_get_is_current ()">gvir_domain_snapshot_get_is_current</a> <span class="c_punctuation">()</span>
88 </td>
89 </tr>
90 <tr>
91 <td class="function_type">
92 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
93 </td>
94 <td class="function_name">
95 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-revert-to" title="gvir_domain_snapshot_revert_to ()">gvir_domain_snapshot_revert_to</a> <span class="c_punctuation">()</span>
96 </td>
97 </tr>
98 <tr>
99 <td class="function_type">
100 <span class="returnvalue">void</span>
101 </td>
102 <td class="function_name">
103 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-revert-to-async" title="gvir_domain_snapshot_revert_to_async ()">gvir_domain_snapshot_revert_to_async</a> <span class="c_punctuation">()</span>
104 </td>
105 </tr>
106 <tr>
107 <td class="function_type">
108 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
109 </td>
110 <td class="function_name">
111 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-revert-to-finish" title="gvir_domain_snapshot_revert_to_finish ()">gvir_domain_snapshot_revert_to_finish</a> <span class="c_punctuation">()</span>
112 </td>
113 </tr>
114 <tr>
115 <td class="function_type">
116 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
117 </td>
118 <td class="function_name">
119 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-set-config" title="gvir_domain_snapshot_set_config ()">gvir_domain_snapshot_set_config</a> <span class="c_punctuation">()</span>
120 </td>
121 </tr>
122 </tbody>
123 </table></div>
124 </div>
125 <div class="refsect1">
126 <a name="GVirDomainSnapshot.properties"></a><h2>Properties</h2>
127 <div class="informaltable"><table border="0">
128 <colgroup>
129 <col width="150px" class="properties_type">
130 <col width="300px" class="properties_name">
131 <col width="200px" class="properties_flags">
132 </colgroup>
133 <tbody><tr>
134 <td class="property_type">
135 <span class="type">GVirDomainSnapshotHandle</span> *</td>
136 <td class="property_name"><a class="link" href="GVirDomainSnapshot.html#GVirDomainSnapshot--handle" title="The “handle” property">handle</a></td>
137 <td class="property_flags">Read / Write / Construct Only</td>
138 </tr></tbody>
139 </table></div>
140 </div>
141 <div class="refsect1">
142 <a name="GVirDomainSnapshot.other"></a><h2>Types and Values</h2>
143 <div class="informaltable"><table width="100%" border="0">
144 <colgroup>
145 <col width="150px" class="name">
146 <col class="description">
147 </colgroup>
148 <tbody>
149 <tr>
150 <td class="datatype_keyword">enum</td>
151 <td class="function_name"><a class="link" href="GVirDomainSnapshot.html#GVirDomainSnapshotDeleteFlags" title="enum GVirDomainSnapshotDeleteFlags">GVirDomainSnapshotDeleteFlags</a></td>
152 </tr>
153 <tr>
154 <td class="datatype_keyword">enum</td>
155 <td class="function_name"><a class="link" href="GVirDomainSnapshot.html#GVirDomainSnapshotRevertFlags" title="enum GVirDomainSnapshotRevertFlags">GVirDomainSnapshotRevertFlags</a></td>
156 </tr>
157 </tbody>
158 </table></div>
159 </div>
160 <div class="refsect1">
161 <a name="GVirDomainSnapshot.object-hierarchy"></a><h2>Object Hierarchy</h2>
162 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
163 <span class="lineart">╰──</span> GVirDomainSnapshot
50164 </pre>
51165 </div>
52166 <div class="refsect1">
53 <a name="GVirDomainSnapshot.object-hierarchy"></a><h2>Object Hierarchy</h2>
54 <pre class="synopsis">
55 GObject
56 +----GVirDomainSnapshot
57 </pre>
58 </div>
59 <div class="refsect1">
60 <a name="GVirDomainSnapshot.properties"></a><h2>Properties</h2>
61 <pre class="synopsis">
62 "<a class="link" href="GVirDomainSnapshot.html#GVirDomainSnapshot--handle" title='The "handle" property'>handle</a>" <span class="type">GVirDomainSnapshotHandle</span>* : Read / Write / Construct Only
63 </pre>
64 </div>
65 <div class="refsect1">
66167 <a name="GVirDomainSnapshot.description"></a><h2>Description</h2>
67168 </div>
68169 <div class="refsect1">
69 <a name="GVirDomainSnapshot.details"></a><h2>Details</h2>
70 <div class="refsect2">
71 <a name="GVirDomainSnapshot-struct"></a><h3>struct GVirDomainSnapshot</h3>
72 <pre class="programlisting">struct GVirDomainSnapshot;</pre>
73 </div>
74 <hr>
75 <div class="refsect2">
76 <a name="GVirDomainSnapshotClass"></a><h3>struct GVirDomainSnapshotClass</h3>
77 <pre class="programlisting">struct GVirDomainSnapshotClass {
78 GObjectClass parent_class;
79
80 gpointer padding[20];
81 };
82 </pre>
83 </div>
84 <hr>
85 <div class="refsect2">
86 <a name="gvir-domain-snapshot-get-name"></a><h3>gvir_domain_snapshot_get_name ()</h3>
87 <pre class="programlisting">const <span class="returnvalue">gchar</span> * gvir_domain_snapshot_get_name (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>);</pre>
88 </div>
89 <hr>
90 <div class="refsect2">
91 <a name="gvir-domain-snapshot-get-config"></a><h3>gvir_domain_snapshot_get_config ()</h3>
92 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomainSnapshot.html"><span class="returnvalue">GVirConfigDomainSnapshot</span></a> * gvir_domain_snapshot_get_config
93 (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
94 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
95 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
96 <div class="variablelist"><table border="0" class="variablelist">
97 <colgroup>
98 <col align="left" valign="top">
99 <col>
100 </colgroup>
101 <tbody>
102 <tr>
103 <td><p><span class="term"><em class="parameter"><code>snapshot</code></em> :</span></p></td>
104 <td>the domain_snapshot</td>
105 </tr>
106 <tr>
107 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
108 <td>the flags</td>
109 </tr>
110 <tr>
111 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
112 <td>the config. The returned object should be
113 unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
114 </td>
115 </tr>
116 </tbody>
117 </table></div>
170 <a name="GVirDomainSnapshot.functions_details"></a><h2>Functions</h2>
171 <div class="refsect2">
172 <a name="gvir-domain-snapshot-get-name"></a><h3>gvir_domain_snapshot_get_name ()</h3>
173 <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
174 gvir_domain_snapshot_get_name (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>);</pre>
175 </div>
176 <hr>
177 <div class="refsect2">
178 <a name="gvir-domain-snapshot-get-config"></a><h3>gvir_domain_snapshot_get_config ()</h3>
179 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomainSnapshot.html"><span class="returnvalue">GVirConfigDomainSnapshot</span></a> *
180 gvir_domain_snapshot_get_config (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
181 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
182 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
183 <div class="refsect3">
184 <a name="id-1.2.4.8.3.4"></a><h4>Parameters</h4>
185 <div class="informaltable"><table width="100%" border="0">
186 <colgroup>
187 <col width="150px" class="parameters_name">
188 <col class="parameters_description">
189 <col width="200px" class="parameters_annotations">
190 </colgroup>
191 <tbody>
192 <tr>
193 <td class="parameter_name"><p>snapshot</p></td>
194 <td class="parameter_description"><p>the domain_snapshot</p></td>
195 <td class="parameter_annotations"> </td>
196 </tr>
197 <tr>
198 <td class="parameter_name"><p>flags</p></td>
199 <td class="parameter_description"><p>the flags</p></td>
200 <td class="parameter_annotations"> </td>
201 </tr>
202 </tbody>
203 </table></div>
204 </div>
205 <div class="refsect3">
206 <a name="id-1.2.4.8.3.5"></a><h4>Returns</h4>
207 <p> the config. The returned object should be
208 unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
209 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
210 </div>
211 </div>
212 <hr>
213 <div class="refsect2">
214 <a name="gvir-domain-snapshot-delete"></a><h3>gvir_domain_snapshot_delete ()</h3>
215 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
216 gvir_domain_snapshot_delete (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
217 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
218 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
219 <div class="refsect3">
220 <a name="id-1.2.4.8.4.4"></a><h4>Parameters</h4>
221 <div class="informaltable"><table width="100%" border="0">
222 <colgroup>
223 <col width="150px" class="parameters_name">
224 <col class="parameters_description">
225 <col width="200px" class="parameters_annotations">
226 </colgroup>
227 <tbody>
228 <tr>
229 <td class="parameter_name"><p>snapshot</p></td>
230 <td class="parameter_description"><p>The domain snapshot</p></td>
231 <td class="parameter_annotations"> </td>
232 </tr>
233 <tr>
234 <td class="parameter_name"><p>flags</p></td>
235 <td class="parameter_description"><p>Bitwise or of <a class="link" href="GVirDomainSnapshot.html#GVirDomainSnapshotDeleteFlags" title="enum GVirDomainSnapshotDeleteFlags"><span class="type">GVirDomainSnapshotDeleteFlags</span></a></p></td>
236 <td class="parameter_annotations"> </td>
237 </tr>
238 <tr>
239 <td class="parameter_name"><p>error</p></td>
240 <td class="parameter_description"><p> Place-holder for error or NULL. </p></td>
241 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
242 </tr>
243 </tbody>
244 </table></div>
245 </div>
246 <div class="refsect3">
247 <a name="id-1.2.4.8.4.5"></a><h4>Returns</h4>
248 <p> TRUE on success, FALSE otherwise</p>
249 <p></p>
250 </div>
251 </div>
252 <hr>
253 <div class="refsect2">
254 <a name="gvir-domain-snapshot-delete-async"></a><h3>gvir_domain_snapshot_delete_async ()</h3>
255 <pre class="programlisting"><span class="returnvalue">void</span>
256 gvir_domain_snapshot_delete_async (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
257 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
258 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
259 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
260 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
261 <div class="refsect3">
262 <a name="id-1.2.4.8.5.4"></a><h4>Parameters</h4>
263 <div class="informaltable"><table width="100%" border="0">
264 <colgroup>
265 <col width="150px" class="parameters_name">
266 <col class="parameters_description">
267 <col width="200px" class="parameters_annotations">
268 </colgroup>
269 <tbody>
270 <tr>
271 <td class="parameter_name"><p>snapshot</p></td>
272 <td class="parameter_description"><p>A <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a></p></td>
273 <td class="parameter_annotations"> </td>
274 </tr>
275 <tr>
276 <td class="parameter_name"><p>flags</p></td>
277 <td class="parameter_description"><p>Bitwise-OR of <a class="link" href="GVirDomainSnapshot.html#GVirDomainSnapshotDeleteFlags" title="enum GVirDomainSnapshotDeleteFlags"><span class="type">GVirDomainSnapshotDeleteFlags</span></a></p></td>
278 <td class="parameter_annotations"> </td>
279 </tr>
280 <tr>
281 <td class="parameter_name"><p>cancellable</p></td>
282 <td class="parameter_description"><p> cancellation object. </p></td>
283 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
284 </tr>
285 <tr>
286 <td class="parameter_name"><p>callback</p></td>
287 <td class="parameter_description"><p> completion callback. </p></td>
288 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
289 </tr>
290 <tr>
291 <td class="parameter_name"><p>user_data</p></td>
292 <td class="parameter_description"><p> opaque data for callback. </p></td>
293 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
294 </tr>
295 </tbody>
296 </table></div>
297 </div>
298 </div>
299 <hr>
300 <div class="refsect2">
301 <a name="gvir-domain-snapshot-delete-finish"></a><h3>gvir_domain_snapshot_delete_finish ()</h3>
302 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
303 gvir_domain_snapshot_delete_finish (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
304 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *res</code></em>,
305 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
306 <div class="refsect3">
307 <a name="id-1.2.4.8.6.4"></a><h4>Parameters</h4>
308 <div class="informaltable"><table width="100%" border="0">
309 <colgroup>
310 <col width="150px" class="parameters_name">
311 <col class="parameters_description">
312 <col width="200px" class="parameters_annotations">
313 </colgroup>
314 <tbody>
315 <tr>
316 <td class="parameter_name"><p>snapshot</p></td>
317 <td class="parameter_description"><p>A <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a></p></td>
318 <td class="parameter_annotations"> </td>
319 </tr>
320 <tr>
321 <td class="parameter_name"><p>res</p></td>
322 <td class="parameter_description"><p> async method result. </p></td>
323 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
324 </tr>
325 </tbody>
326 </table></div>
327 </div>
328 <div class="refsect3">
329 <a name="id-1.2.4.8.6.5"></a><h4>Returns</h4>
330 <p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
331 <p></p>
332 </div>
333 </div>
334 <hr>
335 <div class="refsect2">
336 <a name="gvir-domain-snapshot-get-is-current"></a><h3>gvir_domain_snapshot_get_is_current ()</h3>
337 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
338 gvir_domain_snapshot_get_is_current (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
339 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
340 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *is_current</code></em>,
341 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
342 <div class="refsect3">
343 <a name="id-1.2.4.8.7.4"></a><h4>Parameters</h4>
344 <div class="informaltable"><table width="100%" border="0">
345 <colgroup>
346 <col width="150px" class="parameters_name">
347 <col class="parameters_description">
348 <col width="200px" class="parameters_annotations">
349 </colgroup>
350 <tbody>
351 <tr>
352 <td class="parameter_name"><p>snapshot</p></td>
353 <td class="parameter_description"><p>The domain snapshot</p></td>
354 <td class="parameter_annotations"> </td>
355 </tr>
356 <tr>
357 <td class="parameter_name"><p>flags</p></td>
358 <td class="parameter_description"><p>Currently unused, pass 0</p></td>
359 <td class="parameter_annotations"> </td>
360 </tr>
361 <tr>
362 <td class="parameter_name"><p>is_current</p></td>
363 <td class="parameter_description"><p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the given snapshot is the current snapshot
364 of its domain, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise. </p></td>
365 <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
366 </tr>
367 <tr>
368 <td class="parameter_name"><p>error</p></td>
369 <td class="parameter_description"><p> Place-holder for error or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
370 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
371 </tr>
372 </tbody>
373 </table></div>
374 </div>
375 <div class="refsect3">
376 <a name="id-1.2.4.8.7.5"></a><h4>Returns</h4>
377 <p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
378 <p></p>
379 </div>
380 </div>
381 <hr>
382 <div class="refsect2">
383 <a name="gvir-domain-snapshot-revert-to"></a><h3>gvir_domain_snapshot_revert_to ()</h3>
384 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
385 gvir_domain_snapshot_revert_to (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
386 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
387 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
388 <div class="refsect3">
389 <a name="id-1.2.4.8.8.4"></a><h4>Parameters</h4>
390 <div class="informaltable"><table width="100%" border="0">
391 <colgroup>
392 <col width="150px" class="parameters_name">
393 <col class="parameters_description">
394 <col width="200px" class="parameters_annotations">
395 </colgroup>
396 <tbody>
397 <tr>
398 <td class="parameter_name"><p>snapshot</p></td>
399 <td class="parameter_description"><p>The domain snapshot</p></td>
400 <td class="parameter_annotations"> </td>
401 </tr>
402 <tr>
403 <td class="parameter_name"><p>flags</p></td>
404 <td class="parameter_description"><p>Bitwise OR of GVirDomainSnapshotRevertFlags</p></td>
405 <td class="parameter_annotations"> </td>
406 </tr>
407 <tr>
408 <td class="parameter_name"><p>error</p></td>
409 <td class="parameter_description"><p> Place-holder for error or NULL. </p></td>
410 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
411 </tr>
412 </tbody>
413 </table></div>
414 </div>
415 <div class="refsect3">
416 <a name="id-1.2.4.8.8.5"></a><h4>Returns</h4>
417 <p> TRUE if the snapshot's domain has successfully been
418 reverted to the given snapshot, FALSE otherwise, in which case
419 <em class="parameter"><code>error</code></em>
420 will be set.</p>
421 <p></p>
422 </div>
423 </div>
424 <hr>
425 <div class="refsect2">
426 <a name="gvir-domain-snapshot-revert-to-async"></a><h3>gvir_domain_snapshot_revert_to_async ()</h3>
427 <pre class="programlisting"><span class="returnvalue">void</span>
428 gvir_domain_snapshot_revert_to_async (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
429 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
430 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
431 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
432 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
433 <div class="refsect3">
434 <a name="id-1.2.4.8.9.4"></a><h4>Parameters</h4>
435 <div class="informaltable"><table width="100%" border="0">
436 <colgroup>
437 <col width="150px" class="parameters_name">
438 <col class="parameters_description">
439 <col width="200px" class="parameters_annotations">
440 </colgroup>
441 <tbody>
442 <tr>
443 <td class="parameter_name"><p>snapshot</p></td>
444 <td class="parameter_description"><p>A <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a></p></td>
445 <td class="parameter_annotations"> </td>
446 </tr>
447 <tr>
448 <td class="parameter_name"><p>flags</p></td>
449 <td class="parameter_description"><p>Bitwise OR of <a class="link" href="GVirDomainSnapshot.html#GVirDomainSnapshotRevertFlags" title="enum GVirDomainSnapshotRevertFlags"><span class="type">GVirDomainSnapshotRevertFlags</span></a></p></td>
450 <td class="parameter_annotations"> </td>
451 </tr>
452 <tr>
453 <td class="parameter_name"><p>cancellable</p></td>
454 <td class="parameter_description"><p> cancellation object. </p></td>
455 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
456 </tr>
457 <tr>
458 <td class="parameter_name"><p>callback</p></td>
459 <td class="parameter_description"><p> The callback. </p></td>
460 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
461 </tr>
462 <tr>
463 <td class="parameter_name"><p>user_data</p></td>
464 <td class="parameter_description"><p> Opaque data for callback. </p></td>
465 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
466 </tr>
467 </tbody>
468 </table></div>
469 </div>
470 </div>
471 <hr>
472 <div class="refsect2">
473 <a name="gvir-domain-snapshot-revert-to-finish"></a><h3>gvir_domain_snapshot_revert_to_finish ()</h3>
474 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
475 gvir_domain_snapshot_revert_to_finish (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
476 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
477 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
478 <div class="refsect3">
479 <a name="id-1.2.4.8.10.4"></a><h4>Parameters</h4>
480 <div class="informaltable"><table width="100%" border="0">
481 <colgroup>
482 <col width="150px" class="parameters_name">
483 <col class="parameters_description">
484 <col width="200px" class="parameters_annotations">
485 </colgroup>
486 <tbody>
487 <tr>
488 <td class="parameter_name"><p>snapshot</p></td>
489 <td class="parameter_description"><p>The domain snapshot</p></td>
490 <td class="parameter_annotations"> </td>
491 </tr>
492 <tr>
493 <td class="parameter_name"><p>result</p></td>
494 <td class="parameter_description"><p> The result. </p></td>
495 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
496 </tr>
497 </tbody>
498 </table></div>
499 </div>
500 <div class="refsect3">
501 <a name="id-1.2.4.8.10.5"></a><h4>Returns</h4>
502 <p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
503 <p></p>
504 </div>
505 </div>
506 <hr>
507 <div class="refsect2">
508 <a name="gvir-domain-snapshot-set-config"></a><h3>gvir_domain_snapshot_set_config ()</h3>
509 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
510 gvir_domain_snapshot_set_config (<em class="parameter"><code><a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot"><span class="type">GVirDomainSnapshot</span></a> *snapshot</code></em>,
511 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigDomainSnapshot.html"><span class="type">GVirConfigDomainSnapshot</span></a> *conf</code></em>,
512 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
513 <p>Updates the given snapshot's configuration according to the
514 given GVirConfigDomainSnapshot.</p>
515 <div class="refsect3">
516 <a name="id-1.2.4.8.11.5"></a><h4>Parameters</h4>
517 <div class="informaltable"><table width="100%" border="0">
518 <colgroup>
519 <col width="150px" class="parameters_name">
520 <col class="parameters_description">
521 <col width="200px" class="parameters_annotations">
522 </colgroup>
523 <tbody>
524 <tr>
525 <td class="parameter_name"><p>snapshot</p></td>
526 <td class="parameter_description"><p>The domain snapshot</p></td>
527 <td class="parameter_annotations"> </td>
528 </tr>
529 <tr>
530 <td class="parameter_name"><p>conf</p></td>
531 <td class="parameter_description"><p>The new config object</p></td>
532 <td class="parameter_annotations"> </td>
533 </tr>
534 <tr>
535 <td class="parameter_name"><p>error</p></td>
536 <td class="parameter_description"><p> Place-holder for error or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
537 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
538 </tr>
539 </tbody>
540 </table></div>
541 </div>
542 <div class="refsect3">
543 <a name="id-1.2.4.8.11.6"></a><h4>Returns</h4>
544 <p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if no error was reported, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
545 <p></p>
546 </div>
547 </div>
548 </div>
549 <div class="refsect1">
550 <a name="GVirDomainSnapshot.other_details"></a><h2>Types and Values</h2>
551 <div class="refsect2">
552 <a name="GVirDomainSnapshotDeleteFlags"></a><h3>enum GVirDomainSnapshotDeleteFlags</h3>
553 <div class="refsect3">
554 <a name="id-1.2.4.9.2.3"></a><h4>Members</h4>
555 <div class="informaltable"><table width="100%" border="0">
556 <colgroup>
557 <col width="300px" class="enum_members_name">
558 <col class="enum_members_description">
559 <col width="200px" class="enum_members_annotations">
560 </colgroup>
561 <tbody>
562 <tr>
563 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-DELETE-CHILDREN:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_DELETE_CHILDREN</p></td>
564 <td class="enum_member_description">
565 <p>Also delete children</p>
566 </td>
567 <td class="enum_member_annotations"> </td>
568 </tr>
569 <tr>
570 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-DELETE-METADATA-ONLY:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_DELETE_METADATA_ONLY</p></td>
571 <td class="enum_member_description">
572 <p>Delete just metadata</p>
573 </td>
574 <td class="enum_member_annotations"> </td>
575 </tr>
576 <tr>
577 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-DELETE-CHILDREN-ONLY:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_DELETE_CHILDREN_ONLY</p></td>
578 <td class="enum_member_description">
579 <p>Delete just children</p>
580 </td>
581 <td class="enum_member_annotations"> </td>
582 </tr>
583 </tbody>
584 </table></div>
585 </div>
586 </div>
587 <hr>
588 <div class="refsect2">
589 <a name="GVirDomainSnapshotRevertFlags"></a><h3>enum GVirDomainSnapshotRevertFlags</h3>
590 <div class="refsect3">
591 <a name="id-1.2.4.9.3.3"></a><h4>Members</h4>
592 <div class="informaltable"><table width="100%" border="0">
593 <colgroup>
594 <col width="300px" class="enum_members_name">
595 <col class="enum_members_description">
596 <col width="200px" class="enum_members_annotations">
597 </colgroup>
598 <tbody>
599 <tr>
600 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-REVERT-RUNNING:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_REVERT_RUNNING</p></td>
601 <td class="enum_member_description">
602 <p>Run after revert</p>
603 </td>
604 <td class="enum_member_annotations"> </td>
605 </tr>
606 <tr>
607 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-REVERT-PAUSED:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_REVERT_PAUSED</p></td>
608 <td class="enum_member_description">
609 <p>Pause after revert</p>
610 </td>
611 <td class="enum_member_annotations"> </td>
612 </tr>
613 <tr>
614 <td class="enum_member_name"><p><a name="GVIR-DOMAIN-SNAPSHOT-REVERT-FORCE:CAPS"></a>GVIR_DOMAIN_SNAPSHOT_REVERT_FORCE</p></td>
615 <td class="enum_member_description">
616 <p>Allow risky reverts</p>
617 </td>
618 <td class="enum_member_annotations"> </td>
619 </tr>
620 </tbody>
621 </table></div>
622 </div>
118623 </div>
119624 </div>
120625 <div class="refsect1">
121626 <a name="GVirDomainSnapshot.property-details"></a><h2>Property Details</h2>
122627 <div class="refsect2">
123 <a name="GVirDomainSnapshot--handle"></a><h3>The <code class="literal">"handle"</code> property</h3>
124 <pre class="programlisting"> "handle" <span class="type">GVirDomainSnapshotHandle</span>* : Read / Write / Construct Only</pre>
628 <a name="GVirDomainSnapshot--handle"></a><h3>The <code class="literal">“handle”</code> property</h3>
629 <pre class="programlisting"> “handle” <span class="type">GVirDomainSnapshotHandle</span> *</pre>
125630 <p>The domain_snapshot handle.</p>
631 <p>Flags: Read / Write / Construct Only</p>
126632 </div>
127633 </div>
128634 </div>
129635 <div class="footer">
130636 <hr>
131 Generated by GTK-Doc V1.19</div>
637 Generated by GTK-Doc V1.21</div>
132638 </body>
133639 </html>
0 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>Libvirt-gobject Reference Manual: GVirInterface</title>
5 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
6 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
7 <link rel="up" href="ch01.html" title="Libvirt-gobject">
8 <link rel="prev" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">
9 <link rel="next" href="GVirManager.html" title="GVirManager">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
11 <link rel="stylesheet" href="style.css" type="text/css">
12 </head>
13 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirInterface.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirInterface.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
19 <a href="#GVirInterface.properties" class="shortcut">Properties</a></span>
20 </td>
21 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23 <td><a accesskey="p" href="GVirDomainSnapshot.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24 <td><a accesskey="n" href="GVirManager.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25 </tr></table>
26 <div class="refentry">
27 <a name="GVirInterface"></a><div class="titlepage"></div>
28 <div class="refnamediv"><table width="100%"><tr>
29 <td valign="top">
30 <h2><span class="refentrytitle"><a name="GVirInterface.top_of_page"></a>GVirInterface</span></h2>
31 <p>GVirInterface</p>
32 </td>
33 <td class="gallery_image" valign="top" align="right"></td>
34 </tr></table></div>
35 <div class="refsect1">
36 <a name="GVirInterface.functions"></a><h2>Functions</h2>
37 <div class="informaltable"><table width="100%" border="0">
38 <colgroup>
39 <col width="150px" class="functions_return">
40 <col class="functions_name">
41 </colgroup>
42 <tbody>
43 <tr>
44 <td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
45 </td>
46 <td class="function_name">
47 <a class="link" href="GVirInterface.html#gvir-interface-get-name" title="gvir_interface_get_name ()">gvir_interface_get_name</a> <span class="c_punctuation">()</span>
48 </td>
49 </tr>
50 <tr>
51 <td class="function_type">
52 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigInterface.html"><span class="returnvalue">GVirConfigInterface</span></a> *
53 </td>
54 <td class="function_name">
55 <a class="link" href="GVirInterface.html#gvir-interface-get-config" title="gvir_interface_get_config ()">gvir_interface_get_config</a> <span class="c_punctuation">()</span>
56 </td>
57 </tr>
58 </tbody>
59 </table></div>
60 </div>
61 <div class="refsect1">
62 <a name="GVirInterface.properties"></a><h2>Properties</h2>
63 <div class="informaltable"><table border="0">
64 <colgroup>
65 <col width="150px" class="properties_type">
66 <col width="300px" class="properties_name">
67 <col width="200px" class="properties_flags">
68 </colgroup>
69 <tbody><tr>
70 <td class="property_type">
71 <span class="type">GVirInterfaceHandle</span> *</td>
72 <td class="property_name"><a class="link" href="GVirInterface.html#GVirInterface--handle" title="The “handle” property">handle</a></td>
73 <td class="property_flags">Read / Write / Construct Only</td>
74 </tr></tbody>
75 </table></div>
76 </div>
77 <div class="refsect1">
78 <a name="GVirInterface.object-hierarchy"></a><h2>Object Hierarchy</h2>
79 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
80 <span class="lineart">╰──</span> GVirInterface
81 </pre>
82 </div>
83 <div class="refsect1">
84 <a name="GVirInterface.description"></a><h2>Description</h2>
85 </div>
86 <div class="refsect1">
87 <a name="GVirInterface.functions_details"></a><h2>Functions</h2>
88 <div class="refsect2">
89 <a name="gvir-interface-get-name"></a><h3>gvir_interface_get_name ()</h3>
90 <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
91 gvir_interface_get_name (<em class="parameter"><code><a class="link" href="GVirInterface.html" title="GVirInterface"><span class="type">GVirInterface</span></a> *iface</code></em>);</pre>
92 </div>
93 <hr>
94 <div class="refsect2">
95 <a name="gvir-interface-get-config"></a><h3>gvir_interface_get_config ()</h3>
96 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigInterface.html"><span class="returnvalue">GVirConfigInterface</span></a> *
97 gvir_interface_get_config (<em class="parameter"><code><a class="link" href="GVirInterface.html" title="GVirInterface"><span class="type">GVirInterface</span></a> *iface</code></em>,
98 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
99 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
100 <div class="refsect3">
101 <a name="id-1.2.5.7.3.4"></a><h4>Parameters</h4>
102 <div class="informaltable"><table width="100%" border="0">
103 <colgroup>
104 <col width="150px" class="parameters_name">
105 <col class="parameters_description">
106 <col width="200px" class="parameters_annotations">
107 </colgroup>
108 <tbody>
109 <tr>
110 <td class="parameter_name"><p>iface</p></td>
111 <td class="parameter_description"><p>the interface</p></td>
112 <td class="parameter_annotations"> </td>
113 </tr>
114 <tr>
115 <td class="parameter_name"><p>flags</p></td>
116 <td class="parameter_description"><p>the flags</p></td>
117 <td class="parameter_annotations"> </td>
118 </tr>
119 <tr>
120 <td class="parameter_name"><p>err</p></td>
121 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
122 <td class="parameter_annotations"> </td>
123 </tr>
124 </tbody>
125 </table></div>
126 </div>
127 <div class="refsect3">
128 <a name="id-1.2.5.7.3.5"></a><h4>Returns</h4>
129 <p> the config. The returned object should be
130 unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
131 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
132 </div>
133 </div>
134 </div>
135 <div class="refsect1">
136 <a name="GVirInterface.other_details"></a><h2>Types and Values</h2>
137 </div>
138 <div class="refsect1">
139 <a name="GVirInterface.property-details"></a><h2>Property Details</h2>
140 <div class="refsect2">
141 <a name="GVirInterface--handle"></a><h3>The <code class="literal">“handle”</code> property</h3>
142 <pre class="programlisting"> “handle” <span class="type">GVirInterfaceHandle</span> *</pre>
143 <p>The interface handle.</p>
144 <p>Flags: Read / Write / Construct Only</p>
145 </div>
146 </div>
147 </div>
148 <div class="footer">
149 <hr>
150 Generated by GTK-Doc V1.21</div>
151 </body>
152 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirManager</title>
4 <title>Libvirt-gobject Reference Manual: GVirManager</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
8 <link rel="prev" href="Libvirt-gobject-GVir.html" title="GVir">
8 <link rel="prev" href="GVirInterface.html" title="GVirInterface">
99 <link rel="next" href="GVirNetworkFilter.html" title="GVirNetworkFilter">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="Libvirt-gobject-GVir.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gobject Reference Manual</th>
20 <td><a accesskey="n" href="GVirNetworkFilter.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirManager.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirManager.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirManager.object-hierarchy" class="shortcut">Object Hierarchy</a>
28  | 
29 <a href="#GVirManager.signals" class="shortcut">Signals</a>
30 </td></tr>
31 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirManager.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirManager.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_signals">  <span class="dim">|</span> 
19 <a href="#GVirManager.signals" class="shortcut">Signals</a></span>
20 </td>
21 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23 <td><a accesskey="p" href="GVirInterface.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24 <td><a accesskey="n" href="GVirNetworkFilter.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25 </tr></table>
3226 <div class="refentry">
3327 <a name="GVirManager"></a><div class="titlepage"></div>
3428 <div class="refnamediv"><table width="100%"><tr>
3630 <h2><span class="refentrytitle"><a name="GVirManager.top_of_page"></a>GVirManager</span></h2>
3731 <p>GVirManager</p>
3832 </td>
39 <td valign="top" align="right"></td>
33 <td class="gallery_image" valign="top" align="right"></td>
4034 </tr></table></div>
41 <div class="refsynopsisdiv">
42 <a name="GVirManager.synopsis"></a><h2>Synopsis</h2>
43 <pre class="synopsis">struct <a class="link" href="GVirManager.html#GVirManager-struct" title="struct GVirManager">GVirManager</a>;
44 struct <a class="link" href="GVirManager.html#GVirManagerClass" title="struct GVirManagerClass">GVirManagerClass</a>;
45 <a class="link" href="GVirManager.html" title="GVirManager"><span class="returnvalue">GVirManager</span></a> * <a class="link" href="GVirManager.html#gvir-manager-new" title="gvir_manager_new ()">gvir_manager_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
46 <span class="returnvalue">void</span> <a class="link" href="GVirManager.html#gvir-manager-add-connection" title="gvir_manager_add_connection ()">gvir_manager_add_connection</a> (<em class="parameter"><code><a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *man</code></em>,
47 <em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);
48 <span class="returnvalue">void</span> <a class="link" href="GVirManager.html#gvir-manager-remove-connection" title="gvir_manager_remove_connection ()">gvir_manager_remove_connection</a> (<em class="parameter"><code><a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *man</code></em>,
49 <em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);
50 <span class="returnvalue">GList</span> * <a class="link" href="GVirManager.html#gvir-manager-get-connections" title="gvir_manager_get_connections ()">gvir_manager_get_connections</a> (<em class="parameter"><code><a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *man</code></em>);
51 <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="returnvalue">GVirConnection</span></a> * <a class="link" href="GVirManager.html#gvir-manager-find-connection-by-uri" title="gvir_manager_find_connection_by_uri ()">gvir_manager_find_connection_by_uri</a> (<em class="parameter"><code><a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *man</code></em>,
52 <em class="parameter"><code>const <span class="type">gchar</span> *uri</code></em>);
53 </pre>
35 <div class="refsect1">
36 <a name="GVirManager.functions"></a><h2>Functions</h2>
37 <div class="informaltable"><table width="100%" border="0">
38 <colgroup>
39 <col width="150px" class="functions_return">
40 <col class="functions_name">
41 </colgroup>
42 <tbody>
43 <tr>
44 <td class="function_type">
45 <a class="link" href="GVirManager.html" title="GVirManager"><span class="returnvalue">GVirManager</span></a> *
46 </td>
47 <td class="function_name">
48 <a class="link" href="GVirManager.html#gvir-manager-new" title="gvir_manager_new ()">gvir_manager_new</a> <span class="c_punctuation">()</span>
49 </td>
50 </tr>
51 <tr>
52 <td class="function_type">
53 <span class="returnvalue">void</span>
54 </td>
55 <td class="function_name">
56 <a class="link" href="GVirManager.html#gvir-manager-add-connection" title="gvir_manager_add_connection ()">gvir_manager_add_connection</a> <span class="c_punctuation">()</span>
57 </td>
58 </tr>
59 <tr>
60 <td class="function_type">
61 <span class="returnvalue">void</span>
62 </td>
63 <td class="function_name">
64 <a class="link" href="GVirManager.html#gvir-manager-remove-connection" title="gvir_manager_remove_connection ()">gvir_manager_remove_connection</a> <span class="c_punctuation">()</span>
65 </td>
66 </tr>
67 <tr>
68 <td class="function_type">
69 <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
70 </td>
71 <td class="function_name">
72 <a class="link" href="GVirManager.html#gvir-manager-get-connections" title="gvir_manager_get_connections ()">gvir_manager_get_connections</a> <span class="c_punctuation">()</span>
73 </td>
74 </tr>
75 <tr>
76 <td class="function_type">
77 <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="returnvalue">GVirConnection</span></a> *
78 </td>
79 <td class="function_name">
80 <a class="link" href="GVirManager.html#gvir-manager-find-connection-by-uri" title="gvir_manager_find_connection_by_uri ()">gvir_manager_find_connection_by_uri</a> <span class="c_punctuation">()</span>
81 </td>
82 </tr>
83 </tbody>
84 </table></div>
85 </div>
86 <div class="refsect1">
87 <a name="GVirManager.signals"></a><h2>Signals</h2>
88 <div class="informaltable"><table border="0">
89 <colgroup>
90 <col width="150px" class="signals_return">
91 <col width="300px" class="signals_name">
92 <col width="200px" class="signals_flags">
93 </colgroup>
94 <tbody>
95 <tr>
96 <td class="signal_type"><span class="returnvalue">void</span></td>
97 <td class="signal_name"><a class="link" href="GVirManager.html#GVirManager-connection-added" title="The “connection-added” signal">connection-added</a></td>
98 <td class="signal_flags">Run First</td>
99 </tr>
100 <tr>
101 <td class="signal_type"><span class="returnvalue">void</span></td>
102 <td class="signal_name"><a class="link" href="GVirManager.html#GVirManager-connection-removed" title="The “connection-removed” signal">connection-removed</a></td>
103 <td class="signal_flags">Run First</td>
104 </tr>
105 </tbody>
106 </table></div>
54107 </div>
55108 <div class="refsect1">
56109 <a name="GVirManager.object-hierarchy"></a><h2>Object Hierarchy</h2>
57 <pre class="synopsis">
58 GObject
59 +----GVirManager
60 </pre>
61 </div>
62 <div class="refsect1">
63 <a name="GVirManager.signals"></a><h2>Signals</h2>
64 <pre class="synopsis">
65 "<a class="link" href="GVirManager.html#GVirManager-connection-added" title='The "connection-added" signal'>connection-added</a>" : <code class="literal">Run First</code>
66 "<a class="link" href="GVirManager.html#GVirManager-connection-removed" title='The "connection-removed" signal'>connection-removed</a>" : <code class="literal">Run First</code>
110 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
111 <span class="lineart">╰──</span> GVirManager
67112 </pre>
68113 </div>
69114 <div class="refsect1">
70115 <a name="GVirManager.description"></a><h2>Description</h2>
71116 </div>
72117 <div class="refsect1">
73 <a name="GVirManager.details"></a><h2>Details</h2>
118 <a name="GVirManager.functions_details"></a><h2>Functions</h2>
74119 <div class="refsect2">
75 <a name="GVirManager-struct"></a><h3>struct GVirManager</h3>
76 <pre class="programlisting">struct GVirManager;</pre>
120 <a name="gvir-manager-new"></a><h3>gvir_manager_new ()</h3>
121 <pre class="programlisting"><a class="link" href="GVirManager.html" title="GVirManager"><span class="returnvalue">GVirManager</span></a> *
122 gvir_manager_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
77123 </div>
78124 <hr>
79125 <div class="refsect2">
80 <a name="GVirManagerClass"></a><h3>struct GVirManagerClass</h3>
81 <pre class="programlisting">struct GVirManagerClass {
82 GObjectClass parent_class;
83
84 /* Signals */
85 void (*connection_added)(GVirManager *man, GVirConnection *conn);
86 void (*connection_removed)(GVirManager *man, GVirConnection *conn);
87
88 gpointer padding[20];
89 };
90 </pre>
126 <a name="gvir-manager-add-connection"></a><h3>gvir_manager_add_connection ()</h3>
127 <pre class="programlisting"><span class="returnvalue">void</span>
128 gvir_manager_add_connection (<em class="parameter"><code><a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *man</code></em>,
129 <em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
91130 </div>
92131 <hr>
93132 <div class="refsect2">
94 <a name="gvir-manager-new"></a><h3>gvir_manager_new ()</h3>
95 <pre class="programlisting"><a class="link" href="GVirManager.html" title="GVirManager"><span class="returnvalue">GVirManager</span></a> * gvir_manager_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
133 <a name="gvir-manager-remove-connection"></a><h3>gvir_manager_remove_connection ()</h3>
134 <pre class="programlisting"><span class="returnvalue">void</span>
135 gvir_manager_remove_connection (<em class="parameter"><code><a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *man</code></em>,
136 <em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
96137 </div>
97138 <hr>
98139 <div class="refsect2">
99 <a name="gvir-manager-add-connection"></a><h3>gvir_manager_add_connection ()</h3>
100 <pre class="programlisting"><span class="returnvalue">void</span> gvir_manager_add_connection (<em class="parameter"><code><a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *man</code></em>,
101 <em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
140 <a name="gvir-manager-get-connections"></a><h3>gvir_manager_get_connections ()</h3>
141 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
142 gvir_manager_get_connections (<em class="parameter"><code><a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *man</code></em>);</pre>
143 <div class="refsect3">
144 <a name="id-1.2.6.7.5.4"></a><h4>Returns</h4>
145 <p> the connections.
146 The returned list should be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>, after its elements
147 have been unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. </p>
148 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GVirConnection]</span></p>
149 </div>
102150 </div>
103151 <hr>
104152 <div class="refsect2">
105 <a name="gvir-manager-remove-connection"></a><h3>gvir_manager_remove_connection ()</h3>
106 <pre class="programlisting"><span class="returnvalue">void</span> gvir_manager_remove_connection (<em class="parameter"><code><a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *man</code></em>,
107 <em class="parameter"><code><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *conn</code></em>);</pre>
153 <a name="gvir-manager-find-connection-by-uri"></a><h3>gvir_manager_find_connection_by_uri ()</h3>
154 <pre class="programlisting"><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="returnvalue">GVirConnection</span></a> *
155 gvir_manager_find_connection_by_uri (<em class="parameter"><code><a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *man</code></em>,
156 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *uri</code></em>);</pre>
157 <div class="refsect3">
158 <a name="id-1.2.6.7.6.4"></a><h4>Returns</h4>
159 <p> the connection,or NULL. The
160 returned object should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer
161 needed. </p>
162 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></p>
108163 </div>
109 <hr>
110 <div class="refsect2">
111 <a name="gvir-manager-get-connections"></a><h3>gvir_manager_get_connections ()</h3>
112 <pre class="programlisting"><span class="returnvalue">GList</span> * gvir_manager_get_connections (<em class="parameter"><code><a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *man</code></em>);</pre>
113 <div class="variablelist"><table border="0" class="variablelist">
114 <colgroup>
115 <col align="left" valign="top">
116 <col>
117 </colgroup>
118 <tbody><tr>
119 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
120 <td>the connections.
121 The returned list should be freed with <code class="function">g_list_free()</code>, after its elements
122 have been unreffed with <code class="function">g_object_unref()</code>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GVirConnection]</span>
123 </td>
124 </tr></tbody>
125 </table></div>
126164 </div>
127 <hr>
128 <div class="refsect2">
129 <a name="gvir-manager-find-connection-by-uri"></a><h3>gvir_manager_find_connection_by_uri ()</h3>
130 <pre class="programlisting"><a class="link" href="GVirConnection.html" title="GVirConnection"><span class="returnvalue">GVirConnection</span></a> * gvir_manager_find_connection_by_uri (<em class="parameter"><code><a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *man</code></em>,
131 <em class="parameter"><code>const <span class="type">gchar</span> *uri</code></em>);</pre>
132 <div class="variablelist"><table border="0" class="variablelist">
133 <colgroup>
134 <col align="left" valign="top">
135 <col>
136 </colgroup>
137 <tbody><tr>
138 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
139 <td>the connection,or NULL. The
140 returned object should be unreffed with <code class="function">g_object_unref()</code> when no longer
141 needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
142 </td>
143 </tr></tbody>
144 </table></div>
145165 </div>
166 <div class="refsect1">
167 <a name="GVirManager.other_details"></a><h2>Types and Values</h2>
146168 </div>
147169 <div class="refsect1">
148170 <a name="GVirManager.signal-details"></a><h2>Signal Details</h2>
149171 <div class="refsect2">
150 <a name="GVirManager-connection-added"></a><h3>The <code class="literal">"connection-added"</code> signal</h3>
151 <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *gvirmanager,
152 <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *arg1,
153 <span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
172 <a name="GVirManager-connection-added"></a><h3>The <code class="literal">“connection-added”</code> signal</h3>
173 <pre class="programlisting"><span class="returnvalue">void</span>
174 user_function (<a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *gvirmanager,
175 <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *arg1,
176 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
177 <p>Flags: Run First</p>
154178 </div>
155179 <hr>
156180 <div class="refsect2">
157 <a name="GVirManager-connection-removed"></a><h3>The <code class="literal">"connection-removed"</code> signal</h3>
158 <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *gvirmanager,
159 <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *arg1,
160 <span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
181 <a name="GVirManager-connection-removed"></a><h3>The <code class="literal">“connection-removed”</code> signal</h3>
182 <pre class="programlisting"><span class="returnvalue">void</span>
183 user_function (<a class="link" href="GVirManager.html" title="GVirManager"><span class="type">GVirManager</span></a> *gvirmanager,
184 <a class="link" href="GVirConnection.html" title="GVirConnection"><span class="type">GVirConnection</span></a> *arg1,
185 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
186 <p>Flags: Run First</p>
161187 </div>
162188 </div>
163189 </div>
164190 <div class="footer">
165191 <hr>
166 Generated by GTK-Doc V1.19</div>
192 Generated by GTK-Doc V1.21</div>
167193 </body>
168194 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirNetwork</title>
4 <title>Libvirt-gobject Reference Manual: GVirNetwork</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirNetworkFilter.html" title="GVirNetworkFilter">
99 <link rel="next" href="GVirNodeDevice.html" title="GVirNodeDevice">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirNetworkFilter.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gobject Reference Manual</th>
20 <td><a accesskey="n" href="GVirNodeDevice.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirNetwork.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirNetwork.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirNetwork.object-hierarchy" class="shortcut">Object Hierarchy</a>
28  | 
29 <a href="#GVirNetwork.properties" class="shortcut">Properties</a>
30 </td></tr>
31 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirNetwork.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirNetwork.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
19 <a href="#GVirNetwork.properties" class="shortcut">Properties</a></span>
20 </td>
21 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23 <td><a accesskey="p" href="GVirNetworkFilter.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24 <td><a accesskey="n" href="GVirNodeDevice.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25 </tr></table>
3226 <div class="refentry">
3327 <a name="GVirNetwork"></a><div class="titlepage"></div>
3428 <div class="refnamediv"><table width="100%"><tr>
3630 <h2><span class="refentrytitle"><a name="GVirNetwork.top_of_page"></a>GVirNetwork</span></h2>
3731 <p>GVirNetwork</p>
3832 </td>
39 <td valign="top" align="right"></td>
33 <td class="gallery_image" valign="top" align="right"></td>
4034 </tr></table></div>
41 <div class="refsynopsisdiv">
42 <a name="GVirNetwork.synopsis"></a><h2>Synopsis</h2>
43 <pre class="synopsis">struct <a class="link" href="GVirNetwork.html#GVirNetwork-struct" title="struct GVirNetwork">GVirNetwork</a>;
44 struct <a class="link" href="GVirNetwork.html#GVirNetworkClass" title="struct GVirNetworkClass">GVirNetworkClass</a>;
45 const <span class="returnvalue">gchar</span> * <a class="link" href="GVirNetwork.html#gvir-network-get-name" title="gvir_network_get_name ()">gvir_network_get_name</a> (<em class="parameter"><code><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="type">GVirNetwork</span></a> *network</code></em>);
46 const <span class="returnvalue">gchar</span> * <a class="link" href="GVirNetwork.html#gvir-network-get-uuid" title="gvir_network_get_uuid ()">gvir_network_get_uuid</a> (<em class="parameter"><code><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="type">GVirNetwork</span></a> *network</code></em>);
47 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigNetwork.html"><span class="returnvalue">GVirConfigNetwork</span></a> * <a class="link" href="GVirNetwork.html#gvir-network-get-config" title="gvir_network_get_config ()">gvir_network_get_config</a> (<em class="parameter"><code><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="type">GVirNetwork</span></a> *network</code></em>,
48 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
49 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
50 </pre>
35 <div class="refsect1">
36 <a name="GVirNetwork.functions"></a><h2>Functions</h2>
37 <div class="informaltable"><table width="100%" border="0">
38 <colgroup>
39 <col width="150px" class="functions_return">
40 <col class="functions_name">
41 </colgroup>
42 <tbody>
43 <tr>
44 <td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
45 </td>
46 <td class="function_name">
47 <a class="link" href="GVirNetwork.html#gvir-network-get-name" title="gvir_network_get_name ()">gvir_network_get_name</a> <span class="c_punctuation">()</span>
48 </td>
49 </tr>
50 <tr>
51 <td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
52 </td>
53 <td class="function_name">
54 <a class="link" href="GVirNetwork.html#gvir-network-get-uuid" title="gvir_network_get_uuid ()">gvir_network_get_uuid</a> <span class="c_punctuation">()</span>
55 </td>
56 </tr>
57 <tr>
58 <td class="function_type">
59 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigNetwork.html"><span class="returnvalue">GVirConfigNetwork</span></a> *
60 </td>
61 <td class="function_name">
62 <a class="link" href="GVirNetwork.html#gvir-network-get-config" title="gvir_network_get_config ()">gvir_network_get_config</a> <span class="c_punctuation">()</span>
63 </td>
64 </tr>
65 </tbody>
66 </table></div>
67 </div>
68 <div class="refsect1">
69 <a name="GVirNetwork.properties"></a><h2>Properties</h2>
70 <div class="informaltable"><table border="0">
71 <colgroup>
72 <col width="150px" class="properties_type">
73 <col width="300px" class="properties_name">
74 <col width="200px" class="properties_flags">
75 </colgroup>
76 <tbody><tr>
77 <td class="property_type">
78 <span class="type">GVirNetworkHandle</span> *</td>
79 <td class="property_name"><a class="link" href="GVirNetwork.html#GVirNetwork--handle" title="The “handle” property">handle</a></td>
80 <td class="property_flags">Read / Write / Construct Only</td>
81 </tr></tbody>
82 </table></div>
5183 </div>
5284 <div class="refsect1">
5385 <a name="GVirNetwork.object-hierarchy"></a><h2>Object Hierarchy</h2>
54 <pre class="synopsis">
55 GObject
56 +----GVirNetwork
57 </pre>
58 </div>
59 <div class="refsect1">
60 <a name="GVirNetwork.properties"></a><h2>Properties</h2>
61 <pre class="synopsis">
62 "<a class="link" href="GVirNetwork.html#GVirNetwork--handle" title='The "handle" property'>handle</a>" <span class="type">GVirNetworkHandle</span>* : Read / Write / Construct Only
86 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
87 <span class="lineart">╰──</span> GVirNetwork
6388 </pre>
6489 </div>
6590 <div class="refsect1">
6691 <a name="GVirNetwork.description"></a><h2>Description</h2>
6792 </div>
6893 <div class="refsect1">
69 <a name="GVirNetwork.details"></a><h2>Details</h2>
94 <a name="GVirNetwork.functions_details"></a><h2>Functions</h2>
7095 <div class="refsect2">
71 <a name="GVirNetwork-struct"></a><h3>struct GVirNetwork</h3>
72 <pre class="programlisting">struct GVirNetwork;</pre>
96 <a name="gvir-network-get-name"></a><h3>gvir_network_get_name ()</h3>
97 <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
98 gvir_network_get_name (<em class="parameter"><code><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="type">GVirNetwork</span></a> *network</code></em>);</pre>
7399 </div>
74100 <hr>
75101 <div class="refsect2">
76 <a name="GVirNetworkClass"></a><h3>struct GVirNetworkClass</h3>
77 <pre class="programlisting">struct GVirNetworkClass {
78 GObjectClass parent_class;
79
80 void (*started)(GVirNetwork *net);
81 void (*stopped)(GVirNetwork *net);
82
83 gpointer padding[20];
84 };
85 </pre>
102 <a name="gvir-network-get-uuid"></a><h3>gvir_network_get_uuid ()</h3>
103 <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
104 gvir_network_get_uuid (<em class="parameter"><code><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="type">GVirNetwork</span></a> *network</code></em>);</pre>
86105 </div>
87106 <hr>
88107 <div class="refsect2">
89 <a name="gvir-network-get-name"></a><h3>gvir_network_get_name ()</h3>
90 <pre class="programlisting">const <span class="returnvalue">gchar</span> * gvir_network_get_name (<em class="parameter"><code><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="type">GVirNetwork</span></a> *network</code></em>);</pre>
91 </div>
92 <hr>
93 <div class="refsect2">
94 <a name="gvir-network-get-uuid"></a><h3>gvir_network_get_uuid ()</h3>
95 <pre class="programlisting">const <span class="returnvalue">gchar</span> * gvir_network_get_uuid (<em class="parameter"><code><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="type">GVirNetwork</span></a> *network</code></em>);</pre>
96 </div>
97 <hr>
98 <div class="refsect2">
99 <a name="gvir-network-get-config"></a><h3>gvir_network_get_config ()</h3>
100 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigNetwork.html"><span class="returnvalue">GVirConfigNetwork</span></a> * gvir_network_get_config (<em class="parameter"><code><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="type">GVirNetwork</span></a> *network</code></em>,
101 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
102 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
103 <div class="variablelist"><table border="0" class="variablelist">
108 <a name="gvir-network-get-config"></a><h3>gvir_network_get_config ()</h3>
109 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigNetwork.html"><span class="returnvalue">GVirConfigNetwork</span></a> *
110 gvir_network_get_config (<em class="parameter"><code><a class="link" href="GVirNetwork.html" title="GVirNetwork"><span class="type">GVirNetwork</span></a> *network</code></em>,
111 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
112 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
113 <div class="refsect3">
114 <a name="id-1.2.8.7.4.4"></a><h4>Parameters</h4>
115 <div class="informaltable"><table width="100%" border="0">
104116 <colgroup>
105 <col align="left" valign="top">
106 <col>
117 <col width="150px" class="parameters_name">
118 <col class="parameters_description">
119 <col width="200px" class="parameters_annotations">
107120 </colgroup>
108121 <tbody>
109122 <tr>
110 <td><p><span class="term"><em class="parameter"><code>network</code></em> :</span></p></td>
111 <td>the network</td>
123 <td class="parameter_name"><p>network</p></td>
124 <td class="parameter_description"><p>the network</p></td>
125 <td class="parameter_annotations"> </td>
112126 </tr>
113127 <tr>
114 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
115 <td>the flags</td>
128 <td class="parameter_name"><p>flags</p></td>
129 <td class="parameter_description"><p>the flags</p></td>
130 <td class="parameter_annotations"> </td>
116131 </tr>
117132 <tr>
118 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
119 <td>Place-holder for possible errors</td>
120 </tr>
121 <tr>
122 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
123 <td>the config. The returned object should be
124 unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
125 </td>
133 <td class="parameter_name"><p>err</p></td>
134 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
135 <td class="parameter_annotations"> </td>
126136 </tr>
127137 </tbody>
128138 </table></div>
129139 </div>
140 <div class="refsect3">
141 <a name="id-1.2.8.7.4.5"></a><h4>Returns</h4>
142 <p> the config. The returned object should be
143 unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
144 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
145 </div>
146 </div>
147 </div>
148 <div class="refsect1">
149 <a name="GVirNetwork.other_details"></a><h2>Types and Values</h2>
130150 </div>
131151 <div class="refsect1">
132152 <a name="GVirNetwork.property-details"></a><h2>Property Details</h2>
133153 <div class="refsect2">
134 <a name="GVirNetwork--handle"></a><h3>The <code class="literal">"handle"</code> property</h3>
135 <pre class="programlisting"> "handle" <span class="type">GVirNetworkHandle</span>* : Read / Write / Construct Only</pre>
154 <a name="GVirNetwork--handle"></a><h3>The <code class="literal">“handle”</code> property</h3>
155 <pre class="programlisting"> “handle” <span class="type">GVirNetworkHandle</span> *</pre>
136156 <p>The network handle.</p>
157 <p>Flags: Read / Write / Construct Only</p>
137158 </div>
138159 </div>
139160 </div>
140161 <div class="footer">
141162 <hr>
142 Generated by GTK-Doc V1.19</div>
163 Generated by GTK-Doc V1.21</div>
143164 </body>
144165 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirNetworkFilter</title>
4 <title>Libvirt-gobject Reference Manual: GVirNetworkFilter</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirManager.html" title="GVirManager">
99 <link rel="next" href="GVirNetwork.html" title="GVirNetwork">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirManager.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gobject Reference Manual</th>
20 <td><a accesskey="n" href="GVirNetwork.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirNetworkFilter.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirNetworkFilter.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirNetworkFilter.object-hierarchy" class="shortcut">Object Hierarchy</a>
28  | 
29 <a href="#GVirNetworkFilter.properties" class="shortcut">Properties</a>
30 </td></tr>
31 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirNetworkFilter.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirNetworkFilter.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
19 <a href="#GVirNetworkFilter.properties" class="shortcut">Properties</a></span>
20 </td>
21 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23 <td><a accesskey="p" href="GVirManager.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24 <td><a accesskey="n" href="GVirNetwork.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25 </tr></table>
3226 <div class="refentry">
3327 <a name="GVirNetworkFilter"></a><div class="titlepage"></div>
3428 <div class="refnamediv"><table width="100%"><tr>
3630 <h2><span class="refentrytitle"><a name="GVirNetworkFilter.top_of_page"></a>GVirNetworkFilter</span></h2>
3731 <p>GVirNetworkFilter</p>
3832 </td>
39 <td valign="top" align="right"></td>
33 <td class="gallery_image" valign="top" align="right"></td>
4034 </tr></table></div>
41 <div class="refsynopsisdiv">
42 <a name="GVirNetworkFilter.synopsis"></a><h2>Synopsis</h2>
43 <pre class="synopsis">struct <a class="link" href="GVirNetworkFilter.html#GVirNetworkFilter-struct" title="struct GVirNetworkFilter">GVirNetworkFilter</a>;
44 struct <a class="link" href="GVirNetworkFilter.html#GVirNetworkFilterClass" title="struct GVirNetworkFilterClass">GVirNetworkFilterClass</a>;
45 const <span class="returnvalue">gchar</span> * <a class="link" href="GVirNetworkFilter.html#gvir-network-filter-get-name" title="gvir_network_filter_get_name ()">gvir_network_filter_get_name</a> (<em class="parameter"><code><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="type">GVirNetworkFilter</span></a> *filter</code></em>);
46 const <span class="returnvalue">gchar</span> * <a class="link" href="GVirNetworkFilter.html#gvir-network-filter-get-uuid" title="gvir_network_filter_get_uuid ()">gvir_network_filter_get_uuid</a> (<em class="parameter"><code><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="type">GVirNetworkFilter</span></a> *filter</code></em>);
47 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigNetworkFilter.html"><span class="returnvalue">GVirConfigNetworkFilter</span></a> * <a class="link" href="GVirNetworkFilter.html#gvir-network-filter-get-config" title="gvir_network_filter_get_config ()">gvir_network_filter_get_config</a>
48 (<em class="parameter"><code><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="type">GVirNetworkFilter</span></a> *filter</code></em>,
49 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
50 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
51 </pre>
35 <div class="refsect1">
36 <a name="GVirNetworkFilter.functions"></a><h2>Functions</h2>
37 <div class="informaltable"><table width="100%" border="0">
38 <colgroup>
39 <col width="150px" class="functions_return">
40 <col class="functions_name">
41 </colgroup>
42 <tbody>
43 <tr>
44 <td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
45 </td>
46 <td class="function_name">
47 <a class="link" href="GVirNetworkFilter.html#gvir-network-filter-get-name" title="gvir_network_filter_get_name ()">gvir_network_filter_get_name</a> <span class="c_punctuation">()</span>
48 </td>
49 </tr>
50 <tr>
51 <td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
52 </td>
53 <td class="function_name">
54 <a class="link" href="GVirNetworkFilter.html#gvir-network-filter-get-uuid" title="gvir_network_filter_get_uuid ()">gvir_network_filter_get_uuid</a> <span class="c_punctuation">()</span>
55 </td>
56 </tr>
57 <tr>
58 <td class="function_type">
59 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigNetworkFilter.html"><span class="returnvalue">GVirConfigNetworkFilter</span></a> *
60 </td>
61 <td class="function_name">
62 <a class="link" href="GVirNetworkFilter.html#gvir-network-filter-get-config" title="gvir_network_filter_get_config ()">gvir_network_filter_get_config</a> <span class="c_punctuation">()</span>
63 </td>
64 </tr>
65 </tbody>
66 </table></div>
67 </div>
68 <div class="refsect1">
69 <a name="GVirNetworkFilter.properties"></a><h2>Properties</h2>
70 <div class="informaltable"><table border="0">
71 <colgroup>
72 <col width="150px" class="properties_type">
73 <col width="300px" class="properties_name">
74 <col width="200px" class="properties_flags">
75 </colgroup>
76 <tbody><tr>
77 <td class="property_type">
78 <span class="type">GVirNetworkFilterHandle</span> *</td>
79 <td class="property_name"><a class="link" href="GVirNetworkFilter.html#GVirNetworkFilter--handle" title="The “handle” property">handle</a></td>
80 <td class="property_flags">Read / Write / Construct Only</td>
81 </tr></tbody>
82 </table></div>
5283 </div>
5384 <div class="refsect1">
5485 <a name="GVirNetworkFilter.object-hierarchy"></a><h2>Object Hierarchy</h2>
55 <pre class="synopsis">
56 GObject
57 +----GVirNetworkFilter
58 </pre>
59 </div>
60 <div class="refsect1">
61 <a name="GVirNetworkFilter.properties"></a><h2>Properties</h2>
62 <pre class="synopsis">
63 "<a class="link" href="GVirNetworkFilter.html#GVirNetworkFilter--handle" title='The "handle" property'>handle</a>" <span class="type">GVirNetworkFilterHandle</span>* : Read / Write / Construct Only
86 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
87 <span class="lineart">╰──</span> GVirNetworkFilter
6488 </pre>
6589 </div>
6690 <div class="refsect1">
6791 <a name="GVirNetworkFilter.description"></a><h2>Description</h2>
6892 </div>
6993 <div class="refsect1">
70 <a name="GVirNetworkFilter.details"></a><h2>Details</h2>
94 <a name="GVirNetworkFilter.functions_details"></a><h2>Functions</h2>
7195 <div class="refsect2">
72 <a name="GVirNetworkFilter-struct"></a><h3>struct GVirNetworkFilter</h3>
73 <pre class="programlisting">struct GVirNetworkFilter;</pre>
96 <a name="gvir-network-filter-get-name"></a><h3>gvir_network_filter_get_name ()</h3>
97 <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
98 gvir_network_filter_get_name (<em class="parameter"><code><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="type">GVirNetworkFilter</span></a> *filter</code></em>);</pre>
7499 </div>
75100 <hr>
76101 <div class="refsect2">
77 <a name="GVirNetworkFilterClass"></a><h3>struct GVirNetworkFilterClass</h3>
78 <pre class="programlisting">struct GVirNetworkFilterClass {
79 GObjectClass parent_class;
80
81 gpointer padding[20];
82 };
83 </pre>
102 <a name="gvir-network-filter-get-uuid"></a><h3>gvir_network_filter_get_uuid ()</h3>
103 <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
104 gvir_network_filter_get_uuid (<em class="parameter"><code><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="type">GVirNetworkFilter</span></a> *filter</code></em>);</pre>
84105 </div>
85106 <hr>
86107 <div class="refsect2">
87 <a name="gvir-network-filter-get-name"></a><h3>gvir_network_filter_get_name ()</h3>
88 <pre class="programlisting">const <span class="returnvalue">gchar</span> * gvir_network_filter_get_name (<em class="parameter"><code><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="type">GVirNetworkFilter</span></a> *filter</code></em>);</pre>
89 </div>
90 <hr>
91 <div class="refsect2">
92 <a name="gvir-network-filter-get-uuid"></a><h3>gvir_network_filter_get_uuid ()</h3>
93 <pre class="programlisting">const <span class="returnvalue">gchar</span> * gvir_network_filter_get_uuid (<em class="parameter"><code><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="type">GVirNetworkFilter</span></a> *filter</code></em>);</pre>
94 </div>
95 <hr>
96 <div class="refsect2">
97 <a name="gvir-network-filter-get-config"></a><h3>gvir_network_filter_get_config ()</h3>
98 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigNetworkFilter.html"><span class="returnvalue">GVirConfigNetworkFilter</span></a> * gvir_network_filter_get_config
99 (<em class="parameter"><code><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="type">GVirNetworkFilter</span></a> *filter</code></em>,
100 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
101 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
102 <div class="variablelist"><table border="0" class="variablelist">
108 <a name="gvir-network-filter-get-config"></a><h3>gvir_network_filter_get_config ()</h3>
109 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigNetworkFilter.html"><span class="returnvalue">GVirConfigNetworkFilter</span></a> *
110 gvir_network_filter_get_config (<em class="parameter"><code><a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter"><span class="type">GVirNetworkFilter</span></a> *filter</code></em>,
111 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
112 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
113 <div class="refsect3">
114 <a name="id-1.2.7.7.4.4"></a><h4>Parameters</h4>
115 <div class="informaltable"><table width="100%" border="0">
103116 <colgroup>
104 <col align="left" valign="top">
105 <col>
117 <col width="150px" class="parameters_name">
118 <col class="parameters_description">
119 <col width="200px" class="parameters_annotations">
106120 </colgroup>
107121 <tbody>
108122 <tr>
109 <td><p><span class="term"><em class="parameter"><code>filter</code></em> :</span></p></td>
110 <td>the network_filter</td>
123 <td class="parameter_name"><p>filter</p></td>
124 <td class="parameter_description"><p>the network_filter</p></td>
125 <td class="parameter_annotations"> </td>
111126 </tr>
112127 <tr>
113 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
114 <td>the flags</td>
128 <td class="parameter_name"><p>flags</p></td>
129 <td class="parameter_description"><p>the flags</p></td>
130 <td class="parameter_annotations"> </td>
115131 </tr>
116132 <tr>
117 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
118 <td>Place-holder for possible errors</td>
119 </tr>
120 <tr>
121 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
122 <td>the config. The returned object should be
123 unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
124 </td>
133 <td class="parameter_name"><p>err</p></td>
134 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
135 <td class="parameter_annotations"> </td>
125136 </tr>
126137 </tbody>
127138 </table></div>
128139 </div>
140 <div class="refsect3">
141 <a name="id-1.2.7.7.4.5"></a><h4>Returns</h4>
142 <p> the config. The returned object should be
143 unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
144 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
145 </div>
146 </div>
147 </div>
148 <div class="refsect1">
149 <a name="GVirNetworkFilter.other_details"></a><h2>Types and Values</h2>
129150 </div>
130151 <div class="refsect1">
131152 <a name="GVirNetworkFilter.property-details"></a><h2>Property Details</h2>
132153 <div class="refsect2">
133 <a name="GVirNetworkFilter--handle"></a><h3>The <code class="literal">"handle"</code> property</h3>
134 <pre class="programlisting"> "handle" <span class="type">GVirNetworkFilterHandle</span>* : Read / Write / Construct Only</pre>
154 <a name="GVirNetworkFilter--handle"></a><h3>The <code class="literal">“handle”</code> property</h3>
155 <pre class="programlisting"> “handle” <span class="type">GVirNetworkFilterHandle</span> *</pre>
135156 <p>The network_filter handle.</p>
157 <p>Flags: Read / Write / Construct Only</p>
136158 </div>
137159 </div>
138160 </div>
139161 <div class="footer">
140162 <hr>
141 Generated by GTK-Doc V1.19</div>
163 Generated by GTK-Doc V1.21</div>
142164 </body>
143165 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirNodeDevice</title>
4 <title>Libvirt-gobject Reference Manual: GVirNodeDevice</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirNetwork.html" title="GVirNetwork">
99 <link rel="next" href="GVirSecret.html" title="GVirSecret">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirNetwork.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gobject Reference Manual</th>
20 <td><a accesskey="n" href="GVirSecret.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirNodeDevice.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirNodeDevice.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirNodeDevice.object-hierarchy" class="shortcut">Object Hierarchy</a>
28  | 
29 <a href="#GVirNodeDevice.properties" class="shortcut">Properties</a>
30 </td></tr>
31 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirNodeDevice.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirNodeDevice.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
19 <a href="#GVirNodeDevice.properties" class="shortcut">Properties</a></span>
20 </td>
21 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23 <td><a accesskey="p" href="GVirNetwork.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24 <td><a accesskey="n" href="GVirSecret.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25 </tr></table>
3226 <div class="refentry">
3327 <a name="GVirNodeDevice"></a><div class="titlepage"></div>
3428 <div class="refnamediv"><table width="100%"><tr>
3630 <h2><span class="refentrytitle"><a name="GVirNodeDevice.top_of_page"></a>GVirNodeDevice</span></h2>
3731 <p>GVirNodeDevice</p>
3832 </td>
39 <td valign="top" align="right"></td>
33 <td class="gallery_image" valign="top" align="right"></td>
4034 </tr></table></div>
41 <div class="refsynopsisdiv">
42 <a name="GVirNodeDevice.synopsis"></a><h2>Synopsis</h2>
43 <pre class="synopsis">struct <a class="link" href="GVirNodeDevice.html#GVirNodeDevice-struct" title="struct GVirNodeDevice">GVirNodeDevice</a>;
44 struct <a class="link" href="GVirNodeDevice.html#GVirNodeDeviceClass" title="struct GVirNodeDeviceClass">GVirNodeDeviceClass</a>;
45 const <span class="returnvalue">gchar</span> * <a class="link" href="GVirNodeDevice.html#gvir-node-device-get-name" title="gvir_node_device_get_name ()">gvir_node_device_get_name</a> (<em class="parameter"><code><a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice"><span class="type">GVirNodeDevice</span></a> *device</code></em>);
46 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigNodeDevice.html"><span class="returnvalue">GVirConfigNodeDevice</span></a> * <a class="link" href="GVirNodeDevice.html#gvir-node-device-get-config" title="gvir_node_device_get_config ()">gvir_node_device_get_config</a> (<em class="parameter"><code><a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice"><span class="type">GVirNodeDevice</span></a> *device</code></em>,
47 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
48 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
49 </pre>
35 <div class="refsect1">
36 <a name="GVirNodeDevice.functions"></a><h2>Functions</h2>
37 <div class="informaltable"><table width="100%" border="0">
38 <colgroup>
39 <col width="150px" class="functions_return">
40 <col class="functions_name">
41 </colgroup>
42 <tbody>
43 <tr>
44 <td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
45 </td>
46 <td class="function_name">
47 <a class="link" href="GVirNodeDevice.html#gvir-node-device-get-name" title="gvir_node_device_get_name ()">gvir_node_device_get_name</a> <span class="c_punctuation">()</span>
48 </td>
49 </tr>
50 <tr>
51 <td class="function_type">
52 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigNodeDevice.html"><span class="returnvalue">GVirConfigNodeDevice</span></a> *
53 </td>
54 <td class="function_name">
55 <a class="link" href="GVirNodeDevice.html#gvir-node-device-get-config" title="gvir_node_device_get_config ()">gvir_node_device_get_config</a> <span class="c_punctuation">()</span>
56 </td>
57 </tr>
58 </tbody>
59 </table></div>
60 </div>
61 <div class="refsect1">
62 <a name="GVirNodeDevice.properties"></a><h2>Properties</h2>
63 <div class="informaltable"><table border="0">
64 <colgroup>
65 <col width="150px" class="properties_type">
66 <col width="300px" class="properties_name">
67 <col width="200px" class="properties_flags">
68 </colgroup>
69 <tbody><tr>
70 <td class="property_type">
71 <span class="type">GVirNodeDeviceHandle</span> *</td>
72 <td class="property_name"><a class="link" href="GVirNodeDevice.html#GVirNodeDevice--handle" title="The “handle” property">handle</a></td>
73 <td class="property_flags">Read / Write / Construct Only</td>
74 </tr></tbody>
75 </table></div>
5076 </div>
5177 <div class="refsect1">
5278 <a name="GVirNodeDevice.object-hierarchy"></a><h2>Object Hierarchy</h2>
53 <pre class="synopsis">
54 GObject
55 +----GVirNodeDevice
56 </pre>
57 </div>
58 <div class="refsect1">
59 <a name="GVirNodeDevice.properties"></a><h2>Properties</h2>
60 <pre class="synopsis">
61 "<a class="link" href="GVirNodeDevice.html#GVirNodeDevice--handle" title='The "handle" property'>handle</a>" <span class="type">GVirNodeDeviceHandle</span>* : Read / Write / Construct Only
79 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
80 <span class="lineart">╰──</span> GVirNodeDevice
6281 </pre>
6382 </div>
6483 <div class="refsect1">
6584 <a name="GVirNodeDevice.description"></a><h2>Description</h2>
6685 </div>
6786 <div class="refsect1">
68 <a name="GVirNodeDevice.details"></a><h2>Details</h2>
87 <a name="GVirNodeDevice.functions_details"></a><h2>Functions</h2>
6988 <div class="refsect2">
70 <a name="GVirNodeDevice-struct"></a><h3>struct GVirNodeDevice</h3>
71 <pre class="programlisting">struct GVirNodeDevice;</pre>
89 <a name="gvir-node-device-get-name"></a><h3>gvir_node_device_get_name ()</h3>
90 <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
91 gvir_node_device_get_name (<em class="parameter"><code><a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice"><span class="type">GVirNodeDevice</span></a> *device</code></em>);</pre>
7292 </div>
7393 <hr>
7494 <div class="refsect2">
75 <a name="GVirNodeDeviceClass"></a><h3>struct GVirNodeDeviceClass</h3>
76 <pre class="programlisting">struct GVirNodeDeviceClass {
77 GObjectClass parent_class;
78
79 gpointer padding[20];
80 };
81 </pre>
82 </div>
83 <hr>
84 <div class="refsect2">
85 <a name="gvir-node-device-get-name"></a><h3>gvir_node_device_get_name ()</h3>
86 <pre class="programlisting">const <span class="returnvalue">gchar</span> * gvir_node_device_get_name (<em class="parameter"><code><a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice"><span class="type">GVirNodeDevice</span></a> *device</code></em>);</pre>
87 </div>
88 <hr>
89 <div class="refsect2">
90 <a name="gvir-node-device-get-config"></a><h3>gvir_node_device_get_config ()</h3>
91 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigNodeDevice.html"><span class="returnvalue">GVirConfigNodeDevice</span></a> * gvir_node_device_get_config (<em class="parameter"><code><a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice"><span class="type">GVirNodeDevice</span></a> *device</code></em>,
92 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
93 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
94 <div class="variablelist"><table border="0" class="variablelist">
95 <a name="gvir-node-device-get-config"></a><h3>gvir_node_device_get_config ()</h3>
96 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigNodeDevice.html"><span class="returnvalue">GVirConfigNodeDevice</span></a> *
97 gvir_node_device_get_config (<em class="parameter"><code><a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice"><span class="type">GVirNodeDevice</span></a> *device</code></em>,
98 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
99 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
100 <div class="refsect3">
101 <a name="id-1.2.9.7.3.4"></a><h4>Parameters</h4>
102 <div class="informaltable"><table width="100%" border="0">
95103 <colgroup>
96 <col align="left" valign="top">
97 <col>
104 <col width="150px" class="parameters_name">
105 <col class="parameters_description">
106 <col width="200px" class="parameters_annotations">
98107 </colgroup>
99108 <tbody>
100109 <tr>
101 <td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
102 <td>the node_device</td>
110 <td class="parameter_name"><p>device</p></td>
111 <td class="parameter_description"><p>the node_device</p></td>
112 <td class="parameter_annotations"> </td>
103113 </tr>
104114 <tr>
105 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
106 <td>the flags</td>
115 <td class="parameter_name"><p>flags</p></td>
116 <td class="parameter_description"><p>the flags</p></td>
117 <td class="parameter_annotations"> </td>
107118 </tr>
108119 <tr>
109 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
110 <td>Place-holder for possible errors</td>
111 </tr>
112 <tr>
113 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
114 <td>the config. The returned object should be
115 unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
116 </td>
120 <td class="parameter_name"><p>err</p></td>
121 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
122 <td class="parameter_annotations"> </td>
117123 </tr>
118124 </tbody>
119125 </table></div>
120126 </div>
127 <div class="refsect3">
128 <a name="id-1.2.9.7.3.5"></a><h4>Returns</h4>
129 <p> the config. The returned object should be
130 unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
131 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
132 </div>
133 </div>
134 </div>
135 <div class="refsect1">
136 <a name="GVirNodeDevice.other_details"></a><h2>Types and Values</h2>
121137 </div>
122138 <div class="refsect1">
123139 <a name="GVirNodeDevice.property-details"></a><h2>Property Details</h2>
124140 <div class="refsect2">
125 <a name="GVirNodeDevice--handle"></a><h3>The <code class="literal">"handle"</code> property</h3>
126 <pre class="programlisting"> "handle" <span class="type">GVirNodeDeviceHandle</span>* : Read / Write / Construct Only</pre>
141 <a name="GVirNodeDevice--handle"></a><h3>The <code class="literal">“handle”</code> property</h3>
142 <pre class="programlisting"> “handle” <span class="type">GVirNodeDeviceHandle</span> *</pre>
127143 <p>The node_device handle.</p>
144 <p>Flags: Read / Write / Construct Only</p>
128145 </div>
129146 </div>
130147 </div>
131148 <div class="footer">
132149 <hr>
133 Generated by GTK-Doc V1.19</div>
150 Generated by GTK-Doc V1.21</div>
134151 </body>
135152 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirSecret</title>
4 <title>Libvirt-gobject Reference Manual: GVirSecret</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirNodeDevice.html" title="GVirNodeDevice">
99 <link rel="next" href="GVirStoragePool.html" title="GVirStoragePool">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirNodeDevice.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gobject Reference Manual</th>
20 <td><a accesskey="n" href="GVirStoragePool.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirSecret.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirSecret.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirSecret.object-hierarchy" class="shortcut">Object Hierarchy</a>
28  | 
29 <a href="#GVirSecret.properties" class="shortcut">Properties</a>
30 </td></tr>
31 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirSecret.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirSecret.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
19 <a href="#GVirSecret.properties" class="shortcut">Properties</a></span>
20 </td>
21 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23 <td><a accesskey="p" href="GVirNodeDevice.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24 <td><a accesskey="n" href="GVirStoragePool.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25 </tr></table>
3226 <div class="refentry">
3327 <a name="GVirSecret"></a><div class="titlepage"></div>
3428 <div class="refnamediv"><table width="100%"><tr>
3630 <h2><span class="refentrytitle"><a name="GVirSecret.top_of_page"></a>GVirSecret</span></h2>
3731 <p>GVirSecret</p>
3832 </td>
39 <td valign="top" align="right"></td>
33 <td class="gallery_image" valign="top" align="right"></td>
4034 </tr></table></div>
41 <div class="refsynopsisdiv">
42 <a name="GVirSecret.synopsis"></a><h2>Synopsis</h2>
43 <pre class="synopsis">struct <a class="link" href="GVirSecret.html#GVirSecret-struct" title="struct GVirSecret">GVirSecret</a>;
44 struct <a class="link" href="GVirSecret.html#GVirSecretClass" title="struct GVirSecretClass">GVirSecretClass</a>;
45 const <span class="returnvalue">gchar</span> * <a class="link" href="GVirSecret.html#gvir-secret-get-name" title="gvir_secret_get_name ()">gvir_secret_get_name</a> (<em class="parameter"><code><a class="link" href="GVirSecret.html" title="GVirSecret"><span class="type">GVirSecret</span></a> *secret</code></em>);
46 const <span class="returnvalue">gchar</span> * <a class="link" href="GVirSecret.html#gvir-secret-get-uuid" title="gvir_secret_get_uuid ()">gvir_secret_get_uuid</a> (<em class="parameter"><code><a class="link" href="GVirSecret.html" title="GVirSecret"><span class="type">GVirSecret</span></a> *secret</code></em>);
47 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigSecret.html"><span class="returnvalue">GVirConfigSecret</span></a> * <a class="link" href="GVirSecret.html#gvir-secret-get-config" title="gvir_secret_get_config ()">gvir_secret_get_config</a> (<em class="parameter"><code><a class="link" href="GVirSecret.html" title="GVirSecret"><span class="type">GVirSecret</span></a> *secret</code></em>,
48 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
49 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
50 </pre>
35 <div class="refsect1">
36 <a name="GVirSecret.functions"></a><h2>Functions</h2>
37 <div class="informaltable"><table width="100%" border="0">
38 <colgroup>
39 <col width="150px" class="functions_return">
40 <col class="functions_name">
41 </colgroup>
42 <tbody>
43 <tr>
44 <td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
45 </td>
46 <td class="function_name">
47 <a class="link" href="GVirSecret.html#gvir-secret-get-name" title="gvir_secret_get_name ()">gvir_secret_get_name</a> <span class="c_punctuation">()</span>
48 </td>
49 </tr>
50 <tr>
51 <td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
52 </td>
53 <td class="function_name">
54 <a class="link" href="GVirSecret.html#gvir-secret-get-uuid" title="gvir_secret_get_uuid ()">gvir_secret_get_uuid</a> <span class="c_punctuation">()</span>
55 </td>
56 </tr>
57 <tr>
58 <td class="function_type">
59 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigSecret.html"><span class="returnvalue">GVirConfigSecret</span></a> *
60 </td>
61 <td class="function_name">
62 <a class="link" href="GVirSecret.html#gvir-secret-get-config" title="gvir_secret_get_config ()">gvir_secret_get_config</a> <span class="c_punctuation">()</span>
63 </td>
64 </tr>
65 </tbody>
66 </table></div>
67 </div>
68 <div class="refsect1">
69 <a name="GVirSecret.properties"></a><h2>Properties</h2>
70 <div class="informaltable"><table border="0">
71 <colgroup>
72 <col width="150px" class="properties_type">
73 <col width="300px" class="properties_name">
74 <col width="200px" class="properties_flags">
75 </colgroup>
76 <tbody><tr>
77 <td class="property_type">
78 <span class="type">GVirSecretHandle</span> *</td>
79 <td class="property_name"><a class="link" href="GVirSecret.html#GVirSecret--handle" title="The “handle” property">handle</a></td>
80 <td class="property_flags">Read / Write / Construct Only</td>
81 </tr></tbody>
82 </table></div>
5183 </div>
5284 <div class="refsect1">
5385 <a name="GVirSecret.object-hierarchy"></a><h2>Object Hierarchy</h2>
54 <pre class="synopsis">
55 GObject
56 +----GVirSecret
57 </pre>
58 </div>
59 <div class="refsect1">
60 <a name="GVirSecret.properties"></a><h2>Properties</h2>
61 <pre class="synopsis">
62 "<a class="link" href="GVirSecret.html#GVirSecret--handle" title='The "handle" property'>handle</a>" <span class="type">GVirSecretHandle</span>* : Read / Write / Construct Only
86 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
87 <span class="lineart">╰──</span> GVirSecret
6388 </pre>
6489 </div>
6590 <div class="refsect1">
6691 <a name="GVirSecret.description"></a><h2>Description</h2>
6792 </div>
6893 <div class="refsect1">
69 <a name="GVirSecret.details"></a><h2>Details</h2>
94 <a name="GVirSecret.functions_details"></a><h2>Functions</h2>
7095 <div class="refsect2">
71 <a name="GVirSecret-struct"></a><h3>struct GVirSecret</h3>
72 <pre class="programlisting">struct GVirSecret;</pre>
96 <a name="gvir-secret-get-name"></a><h3>gvir_secret_get_name ()</h3>
97 <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
98 gvir_secret_get_name (<em class="parameter"><code><a class="link" href="GVirSecret.html" title="GVirSecret"><span class="type">GVirSecret</span></a> *secret</code></em>);</pre>
7399 </div>
74100 <hr>
75101 <div class="refsect2">
76 <a name="GVirSecretClass"></a><h3>struct GVirSecretClass</h3>
77 <pre class="programlisting">struct GVirSecretClass {
78 GObjectClass parent_class;
79
80 gpointer padding[20];
81 };
82 </pre>
102 <a name="gvir-secret-get-uuid"></a><h3>gvir_secret_get_uuid ()</h3>
103 <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
104 gvir_secret_get_uuid (<em class="parameter"><code><a class="link" href="GVirSecret.html" title="GVirSecret"><span class="type">GVirSecret</span></a> *secret</code></em>);</pre>
83105 </div>
84106 <hr>
85107 <div class="refsect2">
86 <a name="gvir-secret-get-name"></a><h3>gvir_secret_get_name ()</h3>
87 <pre class="programlisting">const <span class="returnvalue">gchar</span> * gvir_secret_get_name (<em class="parameter"><code><a class="link" href="GVirSecret.html" title="GVirSecret"><span class="type">GVirSecret</span></a> *secret</code></em>);</pre>
88 </div>
89 <hr>
90 <div class="refsect2">
91 <a name="gvir-secret-get-uuid"></a><h3>gvir_secret_get_uuid ()</h3>
92 <pre class="programlisting">const <span class="returnvalue">gchar</span> * gvir_secret_get_uuid (<em class="parameter"><code><a class="link" href="GVirSecret.html" title="GVirSecret"><span class="type">GVirSecret</span></a> *secret</code></em>);</pre>
93 </div>
94 <hr>
95 <div class="refsect2">
96 <a name="gvir-secret-get-config"></a><h3>gvir_secret_get_config ()</h3>
97 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigSecret.html"><span class="returnvalue">GVirConfigSecret</span></a> * gvir_secret_get_config (<em class="parameter"><code><a class="link" href="GVirSecret.html" title="GVirSecret"><span class="type">GVirSecret</span></a> *secret</code></em>,
98 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
99 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
100 <div class="variablelist"><table border="0" class="variablelist">
108 <a name="gvir-secret-get-config"></a><h3>gvir_secret_get_config ()</h3>
109 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigSecret.html"><span class="returnvalue">GVirConfigSecret</span></a> *
110 gvir_secret_get_config (<em class="parameter"><code><a class="link" href="GVirSecret.html" title="GVirSecret"><span class="type">GVirSecret</span></a> *secret</code></em>,
111 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
112 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
113 <div class="refsect3">
114 <a name="id-1.2.10.7.4.4"></a><h4>Parameters</h4>
115 <div class="informaltable"><table width="100%" border="0">
101116 <colgroup>
102 <col align="left" valign="top">
103 <col>
117 <col width="150px" class="parameters_name">
118 <col class="parameters_description">
119 <col width="200px" class="parameters_annotations">
104120 </colgroup>
105121 <tbody>
106122 <tr>
107 <td><p><span class="term"><em class="parameter"><code>secret</code></em> :</span></p></td>
108 <td>the secret</td>
123 <td class="parameter_name"><p>secret</p></td>
124 <td class="parameter_description"><p>the secret</p></td>
125 <td class="parameter_annotations"> </td>
109126 </tr>
110127 <tr>
111 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
112 <td>the flags</td>
128 <td class="parameter_name"><p>flags</p></td>
129 <td class="parameter_description"><p>the flags</p></td>
130 <td class="parameter_annotations"> </td>
113131 </tr>
114132 <tr>
115 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
116 <td>Place-holder for possible errors</td>
117 </tr>
118 <tr>
119 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
120 <td>the config. The returned object should be
121 unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
122 </td>
133 <td class="parameter_name"><p>err</p></td>
134 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
135 <td class="parameter_annotations"> </td>
123136 </tr>
124137 </tbody>
125138 </table></div>
126139 </div>
140 <div class="refsect3">
141 <a name="id-1.2.10.7.4.5"></a><h4>Returns</h4>
142 <p> the config. The returned object should be
143 unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
144 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
145 </div>
146 </div>
147 </div>
148 <div class="refsect1">
149 <a name="GVirSecret.other_details"></a><h2>Types and Values</h2>
127150 </div>
128151 <div class="refsect1">
129152 <a name="GVirSecret.property-details"></a><h2>Property Details</h2>
130153 <div class="refsect2">
131 <a name="GVirSecret--handle"></a><h3>The <code class="literal">"handle"</code> property</h3>
132 <pre class="programlisting"> "handle" <span class="type">GVirSecretHandle</span>* : Read / Write / Construct Only</pre>
154 <a name="GVirSecret--handle"></a><h3>The <code class="literal">“handle”</code> property</h3>
155 <pre class="programlisting"> “handle” <span class="type">GVirSecretHandle</span> *</pre>
133156 <p>The secret handle.</p>
157 <p>Flags: Read / Write / Construct Only</p>
134158 </div>
135159 </div>
136160 </div>
137161 <div class="footer">
138162 <hr>
139 Generated by GTK-Doc V1.19</div>
163 Generated by GTK-Doc V1.21</div>
140164 </body>
141165 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirStoragePool</title>
4 <title>Libvirt-gobject Reference Manual: GVirStoragePool</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirSecret.html" title="GVirSecret">
99 <link rel="next" href="GVirStorageVol.html" title="GVirStorageVol">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirSecret.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gobject Reference Manual</th>
20 <td><a accesskey="n" href="GVirStorageVol.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirStoragePool.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirStoragePool.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirStoragePool.object-hierarchy" class="shortcut">Object Hierarchy</a>
28  | 
29 <a href="#GVirStoragePool.properties" class="shortcut">Properties</a>
30 </td></tr>
31 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirStoragePool.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirStoragePool.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
19 <a href="#GVirStoragePool.properties" class="shortcut">Properties</a></span>
20 </td>
21 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23 <td><a accesskey="p" href="GVirSecret.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24 <td><a accesskey="n" href="GVirStorageVol.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25 </tr></table>
3226 <div class="refentry">
3327 <a name="GVirStoragePool"></a><div class="titlepage"></div>
3428 <div class="refnamediv"><table width="100%"><tr>
3630 <h2><span class="refentrytitle"><a name="GVirStoragePool.top_of_page"></a>GVirStoragePool</span></h2>
3731 <p>GVirStoragePool</p>
3832 </td>
39 <td valign="top" align="right"></td>
33 <td class="gallery_image" valign="top" align="right"></td>
4034 </tr></table></div>
41 <div class="refsynopsisdiv">
42 <a name="GVirStoragePool.synopsis"></a><h2>Synopsis</h2>
43 <a name="GVirStoragePoolInfo"></a><pre class="synopsis">struct <a class="link" href="GVirStoragePool.html#GVirStoragePool-struct" title="struct GVirStoragePool">GVirStoragePool</a>;
44 struct <a class="link" href="GVirStoragePool.html#GVirStoragePoolClass" title="struct GVirStoragePoolClass">GVirStoragePoolClass</a>;
45 enum <a class="link" href="GVirStoragePool.html#GVirStoragePoolState" title="enum GVirStoragePoolState">GVirStoragePoolState</a>;
46 struct <a class="link" href="GVirStoragePool.html#GVirStoragePoolInfo-struct" title="struct GVirStoragePoolInfo">GVirStoragePoolInfo</a>;
47 const <span class="returnvalue">gchar</span> * <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-name" title="gvir_storage_pool_get_name ()">gvir_storage_pool_get_name</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);
48 const <span class="returnvalue">gchar</span> * <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-uuid" title="gvir_storage_pool_get_uuid ()">gvir_storage_pool_get_uuid</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);
49 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-active" title="gvir_storage_pool_get_active ()">gvir_storage_pool_get_active</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);
50 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-persistent" title="gvir_storage_pool_get_persistent ()">gvir_storage_pool_get_persistent</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);
51 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStoragePool.html"><span class="returnvalue">GVirConfigStoragePool</span></a> * <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-config" title="gvir_storage_pool_get_config ()">gvir_storage_pool_get_config</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
52 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
53 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
54 <a class="link" href="GVirStoragePool.html#GVirStoragePoolInfo"><span class="returnvalue">GVirStoragePoolInfo</span></a> * <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-info" title="gvir_storage_pool_get_info ()">gvir_storage_pool_get_info</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
55 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
56 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-refresh" title="gvir_storage_pool_refresh ()">gvir_storage_pool_refresh</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
57 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
58 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
59 <span class="returnvalue">void</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-refresh-async" title="gvir_storage_pool_refresh_async ()">gvir_storage_pool_refresh_async</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
60 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
61 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
62 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
63 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-refresh-finish" title="gvir_storage_pool_refresh_finish ()">gvir_storage_pool_refresh_finish</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
64 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
65 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
66 <span class="returnvalue">GList</span> * <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-volumes" title="gvir_storage_pool_get_volumes ()">gvir_storage_pool_get_volumes</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);
67 <a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="returnvalue">GVirStorageVol</span></a> * <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-volume" title="gvir_storage_pool_get_volume ()">gvir_storage_pool_get_volume</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
68 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);
69 <a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="returnvalue">GVirStorageVol</span></a> * <a class="link" href="GVirStoragePool.html#gvir-storage-pool-create-volume" title="gvir_storage_pool_create_volume ()">gvir_storage_pool_create_volume</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
70 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStorageVol.html"><span class="type">GVirConfigStorageVol</span></a> *conf</code></em>,
71 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
72 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-build" title="gvir_storage_pool_build ()">gvir_storage_pool_build</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
73 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
74 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
75 <span class="returnvalue">void</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-build-async" title="gvir_storage_pool_build_async ()">gvir_storage_pool_build_async</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
76 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
77 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
78 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
79 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
80 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-build-finish" title="gvir_storage_pool_build_finish ()">gvir_storage_pool_build_finish</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
81 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
82 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
83 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-undefine" title="gvir_storage_pool_undefine ()">gvir_storage_pool_undefine</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
84 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
85 <span class="returnvalue">void</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-undefine-async" title="gvir_storage_pool_undefine_async ()">gvir_storage_pool_undefine_async</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
86 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
87 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
88 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
89 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-undefine-finish" title="gvir_storage_pool_undefine_finish ()">gvir_storage_pool_undefine_finish</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
90 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
91 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
92 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-start" title="gvir_storage_pool_start ()">gvir_storage_pool_start</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
93 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
94 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
95 <span class="returnvalue">void</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-start-async" title="gvir_storage_pool_start_async ()">gvir_storage_pool_start_async</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
96 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
97 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
98 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
99 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
100 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-start-finish" title="gvir_storage_pool_start_finish ()">gvir_storage_pool_start_finish</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
101 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
102 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
103 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-stop" title="gvir_storage_pool_stop ()">gvir_storage_pool_stop</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
104 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
105 <span class="returnvalue">void</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-stop-async" title="gvir_storage_pool_stop_async ()">gvir_storage_pool_stop_async</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
106 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
107 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
108 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
109 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-stop-finish" title="gvir_storage_pool_stop_finish ()">gvir_storage_pool_stop_finish</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
110 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
111 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
112 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-delete" title="gvir_storage_pool_delete ()">gvir_storage_pool_delete</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
113 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
114 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
115 <span class="returnvalue">void</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-delete-async" title="gvir_storage_pool_delete_async ()">gvir_storage_pool_delete_async</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
116 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
117 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
118 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
119 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
120 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStoragePool.html#gvir-storage-pool-delete-finish" title="gvir_storage_pool_delete_finish ()">gvir_storage_pool_delete_finish</a> (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
121 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
122 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
123 </pre>
35 <div class="refsect1">
36 <a name="GVirStoragePool.functions"></a><h2>Functions</h2>
37 <div class="informaltable"><table width="100%" border="0">
38 <colgroup>
39 <col width="150px" class="functions_return">
40 <col class="functions_name">
41 </colgroup>
42 <tbody>
43 <tr>
44 <td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
45 </td>
46 <td class="function_name">
47 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-name" title="gvir_storage_pool_get_name ()">gvir_storage_pool_get_name</a> <span class="c_punctuation">()</span>
48 </td>
49 </tr>
50 <tr>
51 <td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
52 </td>
53 <td class="function_name">
54 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-uuid" title="gvir_storage_pool_get_uuid ()">gvir_storage_pool_get_uuid</a> <span class="c_punctuation">()</span>
55 </td>
56 </tr>
57 <tr>
58 <td class="function_type">
59 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
60 </td>
61 <td class="function_name">
62 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-active" title="gvir_storage_pool_get_active ()">gvir_storage_pool_get_active</a> <span class="c_punctuation">()</span>
63 </td>
64 </tr>
65 <tr>
66 <td class="function_type">
67 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
68 </td>
69 <td class="function_name">
70 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-persistent" title="gvir_storage_pool_get_persistent ()">gvir_storage_pool_get_persistent</a> <span class="c_punctuation">()</span>
71 </td>
72 </tr>
73 <tr>
74 <td class="function_type">
75 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStoragePool.html"><span class="returnvalue">GVirConfigStoragePool</span></a> *
76 </td>
77 <td class="function_name">
78 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-config" title="gvir_storage_pool_get_config ()">gvir_storage_pool_get_config</a> <span class="c_punctuation">()</span>
79 </td>
80 </tr>
81 <tr>
82 <td class="function_type">
83 <a class="link" href="GVirStoragePool.html#GVirStoragePoolInfo"><span class="returnvalue">GVirStoragePoolInfo</span></a> *
84 </td>
85 <td class="function_name">
86 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-info" title="gvir_storage_pool_get_info ()">gvir_storage_pool_get_info</a> <span class="c_punctuation">()</span>
87 </td>
88 </tr>
89 <tr>
90 <td class="function_type">
91 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
92 </td>
93 <td class="function_name">
94 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-refresh" title="gvir_storage_pool_refresh ()">gvir_storage_pool_refresh</a> <span class="c_punctuation">()</span>
95 </td>
96 </tr>
97 <tr>
98 <td class="function_type">
99 <span class="returnvalue">void</span>
100 </td>
101 <td class="function_name">
102 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-refresh-async" title="gvir_storage_pool_refresh_async ()">gvir_storage_pool_refresh_async</a> <span class="c_punctuation">()</span>
103 </td>
104 </tr>
105 <tr>
106 <td class="function_type">
107 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
108 </td>
109 <td class="function_name">
110 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-refresh-finish" title="gvir_storage_pool_refresh_finish ()">gvir_storage_pool_refresh_finish</a> <span class="c_punctuation">()</span>
111 </td>
112 </tr>
113 <tr>
114 <td class="function_type">
115 <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
116 </td>
117 <td class="function_name">
118 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-volumes" title="gvir_storage_pool_get_volumes ()">gvir_storage_pool_get_volumes</a> <span class="c_punctuation">()</span>
119 </td>
120 </tr>
121 <tr>
122 <td class="function_type">
123 <a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="returnvalue">GVirStorageVol</span></a> *
124 </td>
125 <td class="function_name">
126 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-volume" title="gvir_storage_pool_get_volume ()">gvir_storage_pool_get_volume</a> <span class="c_punctuation">()</span>
127 </td>
128 </tr>
129 <tr>
130 <td class="function_type">
131 <a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="returnvalue">GVirStorageVol</span></a> *
132 </td>
133 <td class="function_name">
134 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-create-volume" title="gvir_storage_pool_create_volume ()">gvir_storage_pool_create_volume</a> <span class="c_punctuation">()</span>
135 </td>
136 </tr>
137 <tr>
138 <td class="function_type">
139 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
140 </td>
141 <td class="function_name">
142 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-build" title="gvir_storage_pool_build ()">gvir_storage_pool_build</a> <span class="c_punctuation">()</span>
143 </td>
144 </tr>
145 <tr>
146 <td class="function_type">
147 <span class="returnvalue">void</span>
148 </td>
149 <td class="function_name">
150 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-build-async" title="gvir_storage_pool_build_async ()">gvir_storage_pool_build_async</a> <span class="c_punctuation">()</span>
151 </td>
152 </tr>
153 <tr>
154 <td class="function_type">
155 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
156 </td>
157 <td class="function_name">
158 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-build-finish" title="gvir_storage_pool_build_finish ()">gvir_storage_pool_build_finish</a> <span class="c_punctuation">()</span>
159 </td>
160 </tr>
161 <tr>
162 <td class="function_type">
163 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
164 </td>
165 <td class="function_name">
166 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-undefine" title="gvir_storage_pool_undefine ()">gvir_storage_pool_undefine</a> <span class="c_punctuation">()</span>
167 </td>
168 </tr>
169 <tr>
170 <td class="function_type">
171 <span class="returnvalue">void</span>
172 </td>
173 <td class="function_name">
174 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-undefine-async" title="gvir_storage_pool_undefine_async ()">gvir_storage_pool_undefine_async</a> <span class="c_punctuation">()</span>
175 </td>
176 </tr>
177 <tr>
178 <td class="function_type">
179 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
180 </td>
181 <td class="function_name">
182 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-undefine-finish" title="gvir_storage_pool_undefine_finish ()">gvir_storage_pool_undefine_finish</a> <span class="c_punctuation">()</span>
183 </td>
184 </tr>
185 <tr>
186 <td class="function_type">
187 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
188 </td>
189 <td class="function_name">
190 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-start" title="gvir_storage_pool_start ()">gvir_storage_pool_start</a> <span class="c_punctuation">()</span>
191 </td>
192 </tr>
193 <tr>
194 <td class="function_type">
195 <span class="returnvalue">void</span>
196 </td>
197 <td class="function_name">
198 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-start-async" title="gvir_storage_pool_start_async ()">gvir_storage_pool_start_async</a> <span class="c_punctuation">()</span>
199 </td>
200 </tr>
201 <tr>
202 <td class="function_type">
203 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
204 </td>
205 <td class="function_name">
206 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-start-finish" title="gvir_storage_pool_start_finish ()">gvir_storage_pool_start_finish</a> <span class="c_punctuation">()</span>
207 </td>
208 </tr>
209 <tr>
210 <td class="function_type">
211 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
212 </td>
213 <td class="function_name">
214 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-stop" title="gvir_storage_pool_stop ()">gvir_storage_pool_stop</a> <span class="c_punctuation">()</span>
215 </td>
216 </tr>
217 <tr>
218 <td class="function_type">
219 <span class="returnvalue">void</span>
220 </td>
221 <td class="function_name">
222 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-stop-async" title="gvir_storage_pool_stop_async ()">gvir_storage_pool_stop_async</a> <span class="c_punctuation">()</span>
223 </td>
224 </tr>
225 <tr>
226 <td class="function_type">
227 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
228 </td>
229 <td class="function_name">
230 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-stop-finish" title="gvir_storage_pool_stop_finish ()">gvir_storage_pool_stop_finish</a> <span class="c_punctuation">()</span>
231 </td>
232 </tr>
233 <tr>
234 <td class="function_type">
235 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
236 </td>
237 <td class="function_name">
238 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-delete" title="gvir_storage_pool_delete ()">gvir_storage_pool_delete</a> <span class="c_punctuation">()</span>
239 </td>
240 </tr>
241 <tr>
242 <td class="function_type">
243 <span class="returnvalue">void</span>
244 </td>
245 <td class="function_name">
246 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-delete-async" title="gvir_storage_pool_delete_async ()">gvir_storage_pool_delete_async</a> <span class="c_punctuation">()</span>
247 </td>
248 </tr>
249 <tr>
250 <td class="function_type">
251 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
252 </td>
253 <td class="function_name">
254 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-delete-finish" title="gvir_storage_pool_delete_finish ()">gvir_storage_pool_delete_finish</a> <span class="c_punctuation">()</span>
255 </td>
256 </tr>
257 </tbody>
258 </table></div>
259 </div>
260 <div class="refsect1">
261 <a name="GVirStoragePool.properties"></a><h2>Properties</h2>
262 <div class="informaltable"><table border="0">
263 <colgroup>
264 <col width="150px" class="properties_type">
265 <col width="300px" class="properties_name">
266 <col width="200px" class="properties_flags">
267 </colgroup>
268 <tbody><tr>
269 <td class="property_type">
270 <span class="type">GVirStoragePoolHandle</span> *</td>
271 <td class="property_name"><a class="link" href="GVirStoragePool.html#GVirStoragePool--handle" title="The “handle” property">handle</a></td>
272 <td class="property_flags">Read / Write / Construct Only</td>
273 </tr></tbody>
274 </table></div>
275 </div>
276 <a name="GVirStoragePoolInfo"></a><div class="refsect1">
277 <a name="GVirStoragePool.other"></a><h2>Types and Values</h2>
278 <div class="informaltable"><table width="100%" border="0">
279 <colgroup>
280 <col width="150px" class="name">
281 <col class="description">
282 </colgroup>
283 <tbody><tr>
284 <td class="datatype_keyword">enum</td>
285 <td class="function_name"><a class="link" href="GVirStoragePool.html#GVirStoragePoolState" title="enum GVirStoragePoolState">GVirStoragePoolState</a></td>
286 </tr></tbody>
287 </table></div>
124288 </div>
125289 <div class="refsect1">
126290 <a name="GVirStoragePool.object-hierarchy"></a><h2>Object Hierarchy</h2>
127 <pre class="synopsis">
128 GObject
129 +----GVirStoragePool
130 </pre>
131 <pre class="synopsis">
132 GBoxed
133 +----GVirStoragePoolInfo
134 </pre>
135 </div>
136 <div class="refsect1">
137 <a name="GVirStoragePool.properties"></a><h2>Properties</h2>
138 <pre class="synopsis">
139 "<a class="link" href="GVirStoragePool.html#GVirStoragePool--handle" title='The "handle" property'>handle</a>" <span class="type">GVirStoragePoolHandle</span>* : Read / Write / Construct Only
291 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html">GBoxed</a>
292 <span class="lineart">╰──</span> GVirStoragePoolInfo
293 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
294 <span class="lineart">╰──</span> GVirStoragePool
140295 </pre>
141296 </div>
142297 <div class="refsect1">
143298 <a name="GVirStoragePool.description"></a><h2>Description</h2>
144299 </div>
145300 <div class="refsect1">
146 <a name="GVirStoragePool.details"></a><h2>Details</h2>
147 <div class="refsect2">
148 <a name="GVirStoragePool-struct"></a><h3>struct GVirStoragePool</h3>
149 <pre class="programlisting">struct GVirStoragePool;</pre>
150 </div>
151 <hr>
152 <div class="refsect2">
153 <a name="GVirStoragePoolClass"></a><h3>struct GVirStoragePoolClass</h3>
154 <pre class="programlisting">struct GVirStoragePoolClass {
155 GObjectClass parent_class;
156
157 gpointer padding[20];
158 };
159 </pre>
160 </div>
161 <hr>
301 <a name="GVirStoragePool.functions_details"></a><h2>Functions</h2>
302 <div class="refsect2">
303 <a name="gvir-storage-pool-get-name"></a><h3>gvir_storage_pool_get_name ()</h3>
304 <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
305 gvir_storage_pool_get_name (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);</pre>
306 </div>
307 <hr>
308 <div class="refsect2">
309 <a name="gvir-storage-pool-get-uuid"></a><h3>gvir_storage_pool_get_uuid ()</h3>
310 <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
311 gvir_storage_pool_get_uuid (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);</pre>
312 </div>
313 <hr>
314 <div class="refsect2">
315 <a name="gvir-storage-pool-get-active"></a><h3>gvir_storage_pool_get_active ()</h3>
316 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
317 gvir_storage_pool_get_active (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);</pre>
318 </div>
319 <hr>
320 <div class="refsect2">
321 <a name="gvir-storage-pool-get-persistent"></a><h3>gvir_storage_pool_get_persistent ()</h3>
322 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
323 gvir_storage_pool_get_persistent (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);</pre>
324 </div>
325 <hr>
326 <div class="refsect2">
327 <a name="gvir-storage-pool-get-config"></a><h3>gvir_storage_pool_get_config ()</h3>
328 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStoragePool.html"><span class="returnvalue">GVirConfigStoragePool</span></a> *
329 gvir_storage_pool_get_config (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
330 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
331 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
332 <div class="refsect3">
333 <a name="id-1.2.11.9.6.4"></a><h4>Parameters</h4>
334 <div class="informaltable"><table width="100%" border="0">
335 <colgroup>
336 <col width="150px" class="parameters_name">
337 <col class="parameters_description">
338 <col width="200px" class="parameters_annotations">
339 </colgroup>
340 <tbody>
341 <tr>
342 <td class="parameter_name"><p>pool</p></td>
343 <td class="parameter_description"><p>the storage_pool</p></td>
344 <td class="parameter_annotations"> </td>
345 </tr>
346 <tr>
347 <td class="parameter_name"><p>flags</p></td>
348 <td class="parameter_description"><p>the flags</p></td>
349 <td class="parameter_annotations"> </td>
350 </tr>
351 <tr>
352 <td class="parameter_name"><p>err</p></td>
353 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
354 <td class="parameter_annotations"> </td>
355 </tr>
356 </tbody>
357 </table></div>
358 </div>
359 <div class="refsect3">
360 <a name="id-1.2.11.9.6.5"></a><h4>Returns</h4>
361 <p> the config. The returned object should be
362 unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
363 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
364 </div>
365 </div>
366 <hr>
367 <div class="refsect2">
368 <a name="gvir-storage-pool-get-info"></a><h3>gvir_storage_pool_get_info ()</h3>
369 <pre class="programlisting"><a class="link" href="GVirStoragePool.html#GVirStoragePoolInfo"><span class="returnvalue">GVirStoragePoolInfo</span></a> *
370 gvir_storage_pool_get_info (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
371 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
372 <div class="refsect3">
373 <a name="id-1.2.11.9.7.4"></a><h4>Parameters</h4>
374 <div class="informaltable"><table width="100%" border="0">
375 <colgroup>
376 <col width="150px" class="parameters_name">
377 <col class="parameters_description">
378 <col width="200px" class="parameters_annotations">
379 </colgroup>
380 <tbody>
381 <tr>
382 <td class="parameter_name"><p>pool</p></td>
383 <td class="parameter_description"><p>the storage_pool</p></td>
384 <td class="parameter_annotations"> </td>
385 </tr>
386 <tr>
387 <td class="parameter_name"><p>err</p></td>
388 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
389 <td class="parameter_annotations"> </td>
390 </tr>
391 </tbody>
392 </table></div>
393 </div>
394 <div class="refsect3">
395 <a name="id-1.2.11.9.7.5"></a><h4>Returns</h4>
396 <p> the info. The returned object should be
397 unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
398 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
399 </div>
400 </div>
401 <hr>
402 <div class="refsect2">
403 <a name="gvir-storage-pool-refresh"></a><h3>gvir_storage_pool_refresh ()</h3>
404 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
405 gvir_storage_pool_refresh (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
406 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
407 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
408 <div class="refsect3">
409 <a name="id-1.2.11.9.8.4"></a><h4>Parameters</h4>
410 <div class="informaltable"><table width="100%" border="0">
411 <colgroup>
412 <col width="150px" class="parameters_name">
413 <col class="parameters_description">
414 <col width="200px" class="parameters_annotations">
415 </colgroup>
416 <tbody>
417 <tr>
418 <td class="parameter_name"><p>pool</p></td>
419 <td class="parameter_description"><p>the storage pool</p></td>
420 <td class="parameter_annotations"> </td>
421 </tr>
422 <tr>
423 <td class="parameter_name"><p>cancellable</p></td>
424 <td class="parameter_description"><p> cancellation object. </p></td>
425 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
426 </tr>
427 </tbody>
428 </table></div>
429 </div>
430 </div>
431 <hr>
432 <div class="refsect2">
433 <a name="gvir-storage-pool-refresh-async"></a><h3>gvir_storage_pool_refresh_async ()</h3>
434 <pre class="programlisting"><span class="returnvalue">void</span>
435 gvir_storage_pool_refresh_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
436 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
437 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
438 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
439 <div class="refsect3">
440 <a name="id-1.2.11.9.9.4"></a><h4>Parameters</h4>
441 <div class="informaltable"><table width="100%" border="0">
442 <colgroup>
443 <col width="150px" class="parameters_name">
444 <col class="parameters_description">
445 <col width="200px" class="parameters_annotations">
446 </colgroup>
447 <tbody>
448 <tr>
449 <td class="parameter_name"><p>pool</p></td>
450 <td class="parameter_description"><p>the storage pool</p></td>
451 <td class="parameter_annotations"> </td>
452 </tr>
453 <tr>
454 <td class="parameter_name"><p>cancellable</p></td>
455 <td class="parameter_description"><p> cancellation object. </p></td>
456 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
457 </tr>
458 <tr>
459 <td class="parameter_name"><p>callback</p></td>
460 <td class="parameter_description"><p> completion callback. </p></td>
461 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
462 </tr>
463 <tr>
464 <td class="parameter_name"><p>user_data</p></td>
465 <td class="parameter_description"><p> opaque data for callback. </p></td>
466 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
467 </tr>
468 </tbody>
469 </table></div>
470 </div>
471 </div>
472 <hr>
473 <div class="refsect2">
474 <a name="gvir-storage-pool-refresh-finish"></a><h3>gvir_storage_pool_refresh_finish ()</h3>
475 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
476 gvir_storage_pool_refresh_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
477 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
478 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
479 <div class="refsect3">
480 <a name="id-1.2.11.9.10.4"></a><h4>Parameters</h4>
481 <div class="informaltable"><table width="100%" border="0">
482 <colgroup>
483 <col width="150px" class="parameters_name">
484 <col class="parameters_description">
485 <col width="200px" class="parameters_annotations">
486 </colgroup>
487 <tbody>
488 <tr>
489 <td class="parameter_name"><p>pool</p></td>
490 <td class="parameter_description"><p>the storage pool</p></td>
491 <td class="parameter_annotations"> </td>
492 </tr>
493 <tr>
494 <td class="parameter_name"><p>result</p></td>
495 <td class="parameter_description"><p> async method result. </p></td>
496 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
497 </tr>
498 </tbody>
499 </table></div>
500 </div>
501 </div>
502 <hr>
503 <div class="refsect2">
504 <a name="gvir-storage-pool-get-volumes"></a><h3>gvir_storage_pool_get_volumes ()</h3>
505 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
506 gvir_storage_pool_get_volumes (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);</pre>
507 <div class="refsect3">
508 <a name="id-1.2.11.9.11.4"></a><h4>Parameters</h4>
509 <div class="informaltable"><table width="100%" border="0">
510 <colgroup>
511 <col width="150px" class="parameters_name">
512 <col class="parameters_description">
513 <col width="200px" class="parameters_annotations">
514 </colgroup>
515 <tbody><tr>
516 <td class="parameter_name"><p>pool</p></td>
517 <td class="parameter_description"><p>the storage pool</p></td>
518 <td class="parameter_annotations"> </td>
519 </tr></tbody>
520 </table></div>
521 </div>
522 <div class="refsect3">
523 <a name="id-1.2.11.9.11.5"></a><h4>Returns</h4>
524 <p>List of <a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a>. The returned list should be freed with
525 <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>, after its elements have been unreffed with
526 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. </p>
527 <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGObject.StorageVol][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
528 </div>
529 </div>
530 <hr>
531 <div class="refsect2">
532 <a name="gvir-storage-pool-get-volume"></a><h3>gvir_storage_pool_get_volume ()</h3>
533 <pre class="programlisting"><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="returnvalue">GVirStorageVol</span></a> *
534 gvir_storage_pool_get_volume (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
535 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
536 <div class="refsect3">
537 <a name="id-1.2.11.9.12.4"></a><h4>Parameters</h4>
538 <div class="informaltable"><table width="100%" border="0">
539 <colgroup>
540 <col width="150px" class="parameters_name">
541 <col class="parameters_description">
542 <col width="200px" class="parameters_annotations">
543 </colgroup>
544 <tbody>
545 <tr>
546 <td class="parameter_name"><p>pool</p></td>
547 <td class="parameter_description"><p>the storage pool</p></td>
548 <td class="parameter_annotations"> </td>
549 </tr>
550 <tr>
551 <td class="parameter_name"><p>name</p></td>
552 <td class="parameter_description"><p>Name of the requested storage volume</p></td>
553 <td class="parameter_annotations"> </td>
554 </tr>
555 </tbody>
556 </table></div>
557 </div>
558 <div class="refsect3">
559 <a name="id-1.2.11.9.12.5"></a><h4>Returns</h4>
560 <p> the <a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a>, or NULL. The
561 returned object should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer
562 needed. </p>
563 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
564 </div>
565 </div>
566 <hr>
567 <div class="refsect2">
568 <a name="gvir-storage-pool-create-volume"></a><h3>gvir_storage_pool_create_volume ()</h3>
569 <pre class="programlisting"><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="returnvalue">GVirStorageVol</span></a> *
570 gvir_storage_pool_create_volume (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
571 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStorageVol.html"><span class="type">GVirConfigStorageVol</span></a> *conf</code></em>,
572 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
573 <div class="refsect3">
574 <a name="id-1.2.11.9.13.4"></a><h4>Parameters</h4>
575 <div class="informaltable"><table width="100%" border="0">
576 <colgroup>
577 <col width="150px" class="parameters_name">
578 <col class="parameters_description">
579 <col width="200px" class="parameters_annotations">
580 </colgroup>
581 <tbody>
582 <tr>
583 <td class="parameter_name"><p>pool</p></td>
584 <td class="parameter_description"><p>the storage pool in which to create the volume</p></td>
585 <td class="parameter_annotations"> </td>
586 </tr>
587 <tr>
588 <td class="parameter_name"><p>conf</p></td>
589 <td class="parameter_description"><p>the configuration for the new volume</p></td>
590 <td class="parameter_annotations"> </td>
591 </tr>
592 <tr>
593 <td class="parameter_name"><p>err</p></td>
594 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
595 <td class="parameter_annotations"> </td>
596 </tr>
597 </tbody>
598 </table></div>
599 </div>
600 <div class="refsect3">
601 <a name="id-1.2.11.9.13.5"></a><h4>Returns</h4>
602 <p> the newly created volume. The returned object
603 should be unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
604 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
605 </div>
606 </div>
607 <hr>
608 <div class="refsect2">
609 <a name="gvir-storage-pool-build"></a><h3>gvir_storage_pool_build ()</h3>
610 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
611 gvir_storage_pool_build (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
612 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
613 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
614 <div class="refsect3">
615 <a name="id-1.2.11.9.14.4"></a><h4>Parameters</h4>
616 <div class="informaltable"><table width="100%" border="0">
617 <colgroup>
618 <col width="150px" class="parameters_name">
619 <col class="parameters_description">
620 <col width="200px" class="parameters_annotations">
621 </colgroup>
622 <tbody>
623 <tr>
624 <td class="parameter_name"><p>pool</p></td>
625 <td class="parameter_description"><p>the storage pool to build</p></td>
626 <td class="parameter_annotations"> </td>
627 </tr>
628 <tr>
629 <td class="parameter_name"><p>flags</p></td>
630 <td class="parameter_description"><p>the flags</p></td>
631 <td class="parameter_annotations"> </td>
632 </tr>
633 <tr>
634 <td class="parameter_name"><p>err</p></td>
635 <td class="parameter_description"><p>return location for any <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
636 <td class="parameter_annotations"> </td>
637 </tr>
638 </tbody>
639 </table></div>
640 </div>
641 <div class="refsect3">
642 <a name="id-1.2.11.9.14.5"></a><h4>Returns</h4>
643 <p> <span class="type">True</span> on success, <span class="type">False</span> otherwise.</p>
644 <p></p>
645 </div>
646 </div>
647 <hr>
648 <div class="refsect2">
649 <a name="gvir-storage-pool-build-async"></a><h3>gvir_storage_pool_build_async ()</h3>
650 <pre class="programlisting"><span class="returnvalue">void</span>
651 gvir_storage_pool_build_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
652 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
653 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
654 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
655 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
656 <div class="refsect3">
657 <a name="id-1.2.11.9.15.4"></a><h4>Parameters</h4>
658 <div class="informaltable"><table width="100%" border="0">
659 <colgroup>
660 <col width="150px" class="parameters_name">
661 <col class="parameters_description">
662 <col width="200px" class="parameters_annotations">
663 </colgroup>
664 <tbody>
665 <tr>
666 <td class="parameter_name"><p>pool</p></td>
667 <td class="parameter_description"><p>the storage pool to build</p></td>
668 <td class="parameter_annotations"> </td>
669 </tr>
670 <tr>
671 <td class="parameter_name"><p>flags</p></td>
672 <td class="parameter_description"><p>the flags</p></td>
673 <td class="parameter_annotations"> </td>
674 </tr>
675 <tr>
676 <td class="parameter_name"><p>cancellable</p></td>
677 <td class="parameter_description"><p> cancellation object. </p></td>
678 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
679 </tr>
680 <tr>
681 <td class="parameter_name"><p>callback</p></td>
682 <td class="parameter_description"><p> completion callback. </p></td>
683 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
684 </tr>
685 <tr>
686 <td class="parameter_name"><p>user_data</p></td>
687 <td class="parameter_description"><p> opaque data for callback. </p></td>
688 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
689 </tr>
690 </tbody>
691 </table></div>
692 </div>
693 </div>
694 <hr>
695 <div class="refsect2">
696 <a name="gvir-storage-pool-build-finish"></a><h3>gvir_storage_pool_build_finish ()</h3>
697 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
698 gvir_storage_pool_build_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
699 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
700 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
701 <div class="refsect3">
702 <a name="id-1.2.11.9.16.4"></a><h4>Parameters</h4>
703 <div class="informaltable"><table width="100%" border="0">
704 <colgroup>
705 <col width="150px" class="parameters_name">
706 <col class="parameters_description">
707 <col width="200px" class="parameters_annotations">
708 </colgroup>
709 <tbody>
710 <tr>
711 <td class="parameter_name"><p>pool</p></td>
712 <td class="parameter_description"><p>the storage pool to build</p></td>
713 <td class="parameter_annotations"> </td>
714 </tr>
715 <tr>
716 <td class="parameter_name"><p>result</p></td>
717 <td class="parameter_description"><p> async method result. </p></td>
718 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
719 </tr>
720 <tr>
721 <td class="parameter_name"><p>err</p></td>
722 <td class="parameter_description"><p>return location for any <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
723 <td class="parameter_annotations"> </td>
724 </tr>
725 </tbody>
726 </table></div>
727 </div>
728 <div class="refsect3">
729 <a name="id-1.2.11.9.16.5"></a><h4>Returns</h4>
730 <p> <span class="type">True</span> on success, <span class="type">False</span> otherwise.</p>
731 <p></p>
732 </div>
733 </div>
734 <hr>
735 <div class="refsect2">
736 <a name="gvir-storage-pool-undefine"></a><h3>gvir_storage_pool_undefine ()</h3>
737 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
738 gvir_storage_pool_undefine (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
739 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
740 <div class="refsect3">
741 <a name="id-1.2.11.9.17.4"></a><h4>Parameters</h4>
742 <div class="informaltable"><table width="100%" border="0">
743 <colgroup>
744 <col width="150px" class="parameters_name">
745 <col class="parameters_description">
746 <col width="200px" class="parameters_annotations">
747 </colgroup>
748 <tbody>
749 <tr>
750 <td class="parameter_name"><p>pool</p></td>
751 <td class="parameter_description"><p>the storage pool to undefine</p></td>
752 <td class="parameter_annotations"> </td>
753 </tr>
754 <tr>
755 <td class="parameter_name"><p>err</p></td>
756 <td class="parameter_description"><p>return location for any <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
757 <td class="parameter_annotations"> </td>
758 </tr>
759 </tbody>
760 </table></div>
761 </div>
762 <div class="refsect3">
763 <a name="id-1.2.11.9.17.5"></a><h4>Returns</h4>
764 <p> <span class="type">True</span> on success, <span class="type">False</span> otherwise.</p>
765 <p></p>
766 </div>
767 </div>
768 <hr>
769 <div class="refsect2">
770 <a name="gvir-storage-pool-undefine-async"></a><h3>gvir_storage_pool_undefine_async ()</h3>
771 <pre class="programlisting"><span class="returnvalue">void</span>
772 gvir_storage_pool_undefine_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
773 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
774 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
775 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
776 <div class="refsect3">
777 <a name="id-1.2.11.9.18.4"></a><h4>Parameters</h4>
778 <div class="informaltable"><table width="100%" border="0">
779 <colgroup>
780 <col width="150px" class="parameters_name">
781 <col class="parameters_description">
782 <col width="200px" class="parameters_annotations">
783 </colgroup>
784 <tbody>
785 <tr>
786 <td class="parameter_name"><p>pool</p></td>
787 <td class="parameter_description"><p>the storage pool to undefine</p></td>
788 <td class="parameter_annotations"> </td>
789 </tr>
790 <tr>
791 <td class="parameter_name"><p>cancellable</p></td>
792 <td class="parameter_description"><p> cancellation object. </p></td>
793 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
794 </tr>
795 <tr>
796 <td class="parameter_name"><p>callback</p></td>
797 <td class="parameter_description"><p> completion callback. </p></td>
798 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
799 </tr>
800 <tr>
801 <td class="parameter_name"><p>user_data</p></td>
802 <td class="parameter_description"><p> opaque data for callback. </p></td>
803 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
804 </tr>
805 </tbody>
806 </table></div>
807 </div>
808 </div>
809 <hr>
810 <div class="refsect2">
811 <a name="gvir-storage-pool-undefine-finish"></a><h3>gvir_storage_pool_undefine_finish ()</h3>
812 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
813 gvir_storage_pool_undefine_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
814 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
815 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
816 <div class="refsect3">
817 <a name="id-1.2.11.9.19.4"></a><h4>Parameters</h4>
818 <div class="informaltable"><table width="100%" border="0">
819 <colgroup>
820 <col width="150px" class="parameters_name">
821 <col class="parameters_description">
822 <col width="200px" class="parameters_annotations">
823 </colgroup>
824 <tbody>
825 <tr>
826 <td class="parameter_name"><p>pool</p></td>
827 <td class="parameter_description"><p>the storage pool to undefine</p></td>
828 <td class="parameter_annotations"> </td>
829 </tr>
830 <tr>
831 <td class="parameter_name"><p>result</p></td>
832 <td class="parameter_description"><p> async method result. </p></td>
833 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
834 </tr>
835 <tr>
836 <td class="parameter_name"><p>err</p></td>
837 <td class="parameter_description"><p>return location for any <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
838 <td class="parameter_annotations"> </td>
839 </tr>
840 </tbody>
841 </table></div>
842 </div>
843 <div class="refsect3">
844 <a name="id-1.2.11.9.19.5"></a><h4>Returns</h4>
845 <p> <span class="type">True</span> on success, <span class="type">False</span> otherwise.</p>
846 <p></p>
847 </div>
848 </div>
849 <hr>
850 <div class="refsect2">
851 <a name="gvir-storage-pool-start"></a><h3>gvir_storage_pool_start ()</h3>
852 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
853 gvir_storage_pool_start (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
854 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
855 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
856 <div class="refsect3">
857 <a name="id-1.2.11.9.20.4"></a><h4>Parameters</h4>
858 <div class="informaltable"><table width="100%" border="0">
859 <colgroup>
860 <col width="150px" class="parameters_name">
861 <col class="parameters_description">
862 <col width="200px" class="parameters_annotations">
863 </colgroup>
864 <tbody>
865 <tr>
866 <td class="parameter_name"><p>pool</p></td>
867 <td class="parameter_description"><p>the storage pool to start</p></td>
868 <td class="parameter_annotations"> </td>
869 </tr>
870 <tr>
871 <td class="parameter_name"><p>flags</p></td>
872 <td class="parameter_description"><p>the flags</p></td>
873 <td class="parameter_annotations"> </td>
874 </tr>
875 <tr>
876 <td class="parameter_name"><p>err</p></td>
877 <td class="parameter_description"><p>return location for any <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
878 <td class="parameter_annotations"> </td>
879 </tr>
880 </tbody>
881 </table></div>
882 </div>
883 <div class="refsect3">
884 <a name="id-1.2.11.9.20.5"></a><h4>Returns</h4>
885 <p> <span class="type">True</span> on success, <span class="type">False</span> otherwise.</p>
886 <p></p>
887 </div>
888 </div>
889 <hr>
890 <div class="refsect2">
891 <a name="gvir-storage-pool-start-async"></a><h3>gvir_storage_pool_start_async ()</h3>
892 <pre class="programlisting"><span class="returnvalue">void</span>
893 gvir_storage_pool_start_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
894 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
895 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
896 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
897 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
898 <div class="refsect3">
899 <a name="id-1.2.11.9.21.4"></a><h4>Parameters</h4>
900 <div class="informaltable"><table width="100%" border="0">
901 <colgroup>
902 <col width="150px" class="parameters_name">
903 <col class="parameters_description">
904 <col width="200px" class="parameters_annotations">
905 </colgroup>
906 <tbody>
907 <tr>
908 <td class="parameter_name"><p>pool</p></td>
909 <td class="parameter_description"><p>the storage pool to start</p></td>
910 <td class="parameter_annotations"> </td>
911 </tr>
912 <tr>
913 <td class="parameter_name"><p>flags</p></td>
914 <td class="parameter_description"><p>the flags</p></td>
915 <td class="parameter_annotations"> </td>
916 </tr>
917 <tr>
918 <td class="parameter_name"><p>cancellable</p></td>
919 <td class="parameter_description"><p> cancellation object. </p></td>
920 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
921 </tr>
922 <tr>
923 <td class="parameter_name"><p>callback</p></td>
924 <td class="parameter_description"><p> completion callback. </p></td>
925 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
926 </tr>
927 <tr>
928 <td class="parameter_name"><p>user_data</p></td>
929 <td class="parameter_description"><p> opaque data for callback. </p></td>
930 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
931 </tr>
932 </tbody>
933 </table></div>
934 </div>
935 </div>
936 <hr>
937 <div class="refsect2">
938 <a name="gvir-storage-pool-start-finish"></a><h3>gvir_storage_pool_start_finish ()</h3>
939 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
940 gvir_storage_pool_start_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
941 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
942 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
943 <div class="refsect3">
944 <a name="id-1.2.11.9.22.4"></a><h4>Parameters</h4>
945 <div class="informaltable"><table width="100%" border="0">
946 <colgroup>
947 <col width="150px" class="parameters_name">
948 <col class="parameters_description">
949 <col width="200px" class="parameters_annotations">
950 </colgroup>
951 <tbody>
952 <tr>
953 <td class="parameter_name"><p>pool</p></td>
954 <td class="parameter_description"><p>the storage pool to start</p></td>
955 <td class="parameter_annotations"> </td>
956 </tr>
957 <tr>
958 <td class="parameter_name"><p>result</p></td>
959 <td class="parameter_description"><p> async method result. </p></td>
960 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
961 </tr>
962 <tr>
963 <td class="parameter_name"><p>err</p></td>
964 <td class="parameter_description"><p>return location for any <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
965 <td class="parameter_annotations"> </td>
966 </tr>
967 </tbody>
968 </table></div>
969 </div>
970 <div class="refsect3">
971 <a name="id-1.2.11.9.22.5"></a><h4>Returns</h4>
972 <p> <span class="type">True</span> on success, <span class="type">False</span> otherwise.</p>
973 <p></p>
974 </div>
975 </div>
976 <hr>
977 <div class="refsect2">
978 <a name="gvir-storage-pool-stop"></a><h3>gvir_storage_pool_stop ()</h3>
979 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
980 gvir_storage_pool_stop (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
981 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
982 <div class="refsect3">
983 <a name="id-1.2.11.9.23.4"></a><h4>Parameters</h4>
984 <div class="informaltable"><table width="100%" border="0">
985 <colgroup>
986 <col width="150px" class="parameters_name">
987 <col class="parameters_description">
988 <col width="200px" class="parameters_annotations">
989 </colgroup>
990 <tbody>
991 <tr>
992 <td class="parameter_name"><p>pool</p></td>
993 <td class="parameter_description"><p>the storage pool to stop</p></td>
994 <td class="parameter_annotations"> </td>
995 </tr>
996 <tr>
997 <td class="parameter_name"><p>err</p></td>
998 <td class="parameter_description"><p>return location for any <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
999 <td class="parameter_annotations"> </td>
1000 </tr>
1001 </tbody>
1002 </table></div>
1003 </div>
1004 <div class="refsect3">
1005 <a name="id-1.2.11.9.23.5"></a><h4>Returns</h4>
1006 <p> <span class="type">True</span> on success, <span class="type">False</span> otherwise.</p>
1007 <p></p>
1008 </div>
1009 </div>
1010 <hr>
1011 <div class="refsect2">
1012 <a name="gvir-storage-pool-stop-async"></a><h3>gvir_storage_pool_stop_async ()</h3>
1013 <pre class="programlisting"><span class="returnvalue">void</span>
1014 gvir_storage_pool_stop_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
1015 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1016 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1017 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
1018 <div class="refsect3">
1019 <a name="id-1.2.11.9.24.4"></a><h4>Parameters</h4>
1020 <div class="informaltable"><table width="100%" border="0">
1021 <colgroup>
1022 <col width="150px" class="parameters_name">
1023 <col class="parameters_description">
1024 <col width="200px" class="parameters_annotations">
1025 </colgroup>
1026 <tbody>
1027 <tr>
1028 <td class="parameter_name"><p>pool</p></td>
1029 <td class="parameter_description"><p>the storage pool to stop</p></td>
1030 <td class="parameter_annotations"> </td>
1031 </tr>
1032 <tr>
1033 <td class="parameter_name"><p>cancellable</p></td>
1034 <td class="parameter_description"><p> cancellation object. </p></td>
1035 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1036 </tr>
1037 <tr>
1038 <td class="parameter_name"><p>callback</p></td>
1039 <td class="parameter_description"><p> completion callback. </p></td>
1040 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
1041 </tr>
1042 <tr>
1043 <td class="parameter_name"><p>user_data</p></td>
1044 <td class="parameter_description"><p> opaque data for callback. </p></td>
1045 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
1046 </tr>
1047 </tbody>
1048 </table></div>
1049 </div>
1050 </div>
1051 <hr>
1052 <div class="refsect2">
1053 <a name="gvir-storage-pool-stop-finish"></a><h3>gvir_storage_pool_stop_finish ()</h3>
1054 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1055 gvir_storage_pool_stop_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
1056 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
1057 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1058 <div class="refsect3">
1059 <a name="id-1.2.11.9.25.4"></a><h4>Parameters</h4>
1060 <div class="informaltable"><table width="100%" border="0">
1061 <colgroup>
1062 <col width="150px" class="parameters_name">
1063 <col class="parameters_description">
1064 <col width="200px" class="parameters_annotations">
1065 </colgroup>
1066 <tbody>
1067 <tr>
1068 <td class="parameter_name"><p>pool</p></td>
1069 <td class="parameter_description"><p>the storage pool to stop</p></td>
1070 <td class="parameter_annotations"> </td>
1071 </tr>
1072 <tr>
1073 <td class="parameter_name"><p>result</p></td>
1074 <td class="parameter_description"><p> async method result. </p></td>
1075 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1076 </tr>
1077 <tr>
1078 <td class="parameter_name"><p>err</p></td>
1079 <td class="parameter_description"><p>return location for any <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
1080 <td class="parameter_annotations"> </td>
1081 </tr>
1082 </tbody>
1083 </table></div>
1084 </div>
1085 <div class="refsect3">
1086 <a name="id-1.2.11.9.25.5"></a><h4>Returns</h4>
1087 <p> <span class="type">True</span> on success, <span class="type">False</span> otherwise.</p>
1088 <p></p>
1089 </div>
1090 </div>
1091 <hr>
1092 <div class="refsect2">
1093 <a name="gvir-storage-pool-delete"></a><h3>gvir_storage_pool_delete ()</h3>
1094 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1095 gvir_storage_pool_delete (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
1096 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1097 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1098 <div class="refsect3">
1099 <a name="id-1.2.11.9.26.4"></a><h4>Parameters</h4>
1100 <div class="informaltable"><table width="100%" border="0">
1101 <colgroup>
1102 <col width="150px" class="parameters_name">
1103 <col class="parameters_description">
1104 <col width="200px" class="parameters_annotations">
1105 </colgroup>
1106 <tbody>
1107 <tr>
1108 <td class="parameter_name"><p>pool</p></td>
1109 <td class="parameter_description"><p>the storage pool to delete</p></td>
1110 <td class="parameter_annotations"> </td>
1111 </tr>
1112 <tr>
1113 <td class="parameter_name"><p>flags</p></td>
1114 <td class="parameter_description"><p>the flags</p></td>
1115 <td class="parameter_annotations"> </td>
1116 </tr>
1117 <tr>
1118 <td class="parameter_name"><p>err</p></td>
1119 <td class="parameter_description"><p>return location for any <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
1120 <td class="parameter_annotations"> </td>
1121 </tr>
1122 </tbody>
1123 </table></div>
1124 </div>
1125 <div class="refsect3">
1126 <a name="id-1.2.11.9.26.5"></a><h4>Returns</h4>
1127 <p> <span class="type">True</span> on success, <span class="type">False</span> otherwise.</p>
1128 <p></p>
1129 </div>
1130 </div>
1131 <hr>
1132 <div class="refsect2">
1133 <a name="gvir-storage-pool-delete-async"></a><h3>gvir_storage_pool_delete_async ()</h3>
1134 <pre class="programlisting"><span class="returnvalue">void</span>
1135 gvir_storage_pool_delete_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
1136 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
1137 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
1138 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>,
1139 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
1140 <div class="refsect3">
1141 <a name="id-1.2.11.9.27.4"></a><h4>Parameters</h4>
1142 <div class="informaltable"><table width="100%" border="0">
1143 <colgroup>
1144 <col width="150px" class="parameters_name">
1145 <col class="parameters_description">
1146 <col width="200px" class="parameters_annotations">
1147 </colgroup>
1148 <tbody>
1149 <tr>
1150 <td class="parameter_name"><p>pool</p></td>
1151 <td class="parameter_description"><p>the storage pool to delete</p></td>
1152 <td class="parameter_annotations"> </td>
1153 </tr>
1154 <tr>
1155 <td class="parameter_name"><p>flags</p></td>
1156 <td class="parameter_description"><p>the flags</p></td>
1157 <td class="parameter_annotations"> </td>
1158 </tr>
1159 <tr>
1160 <td class="parameter_name"><p>cancellable</p></td>
1161 <td class="parameter_description"><p> cancellation object. </p></td>
1162 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1163 </tr>
1164 <tr>
1165 <td class="parameter_name"><p>callback</p></td>
1166 <td class="parameter_description"><p> completion callback. </p></td>
1167 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
1168 </tr>
1169 <tr>
1170 <td class="parameter_name"><p>user_data</p></td>
1171 <td class="parameter_description"><p> opaque data for callback. </p></td>
1172 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
1173 </tr>
1174 </tbody>
1175 </table></div>
1176 </div>
1177 </div>
1178 <hr>
1179 <div class="refsect2">
1180 <a name="gvir-storage-pool-delete-finish"></a><h3>gvir_storage_pool_delete_finish ()</h3>
1181 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1182 gvir_storage_pool_delete_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
1183 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GAsyncResult.html"><span class="type">GAsyncResult</span></a> *result</code></em>,
1184 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
1185 <div class="refsect3">
1186 <a name="id-1.2.11.9.28.4"></a><h4>Parameters</h4>
1187 <div class="informaltable"><table width="100%" border="0">
1188 <colgroup>
1189 <col width="150px" class="parameters_name">
1190 <col class="parameters_description">
1191 <col width="200px" class="parameters_annotations">
1192 </colgroup>
1193 <tbody>
1194 <tr>
1195 <td class="parameter_name"><p>pool</p></td>
1196 <td class="parameter_description"><p>the storage pool to delete</p></td>
1197 <td class="parameter_annotations"> </td>
1198 </tr>
1199 <tr>
1200 <td class="parameter_name"><p>result</p></td>
1201 <td class="parameter_description"><p> async method result. </p></td>
1202 <td class="parameter_annotations"><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
1203 </tr>
1204 <tr>
1205 <td class="parameter_name"><p>err</p></td>
1206 <td class="parameter_description"><p>return location for any <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a></p></td>
1207 <td class="parameter_annotations"> </td>
1208 </tr>
1209 </tbody>
1210 </table></div>
1211 </div>
1212 <div class="refsect3">
1213 <a name="id-1.2.11.9.28.5"></a><h4>Returns</h4>
1214 <p> <span class="type">True</span> on success, <span class="type">False</span> otherwise.</p>
1215 <p></p>
1216 </div>
1217 </div>
1218 </div>
1219 <div class="refsect1">
1220 <a name="GVirStoragePool.other_details"></a><h2>Types and Values</h2>
1621221 <div class="refsect2">
1631222 <a name="GVirStoragePoolState"></a><h3>enum GVirStoragePoolState</h3>
164 <pre class="programlisting">typedef enum {
165 GVIR_STORAGE_POOL_STATE_INACTIVE = 0, /* Not running */
166 GVIR_STORAGE_POOL_STATE_BUILDING = 1, /* Initializing pool, not available */
167 GVIR_STORAGE_POOL_STATE_RUNNING = 2, /* Running normally */
168 GVIR_STORAGE_POOL_STATE_DEGRADED = 3, /* Running degraded */
169 GVIR_STORAGE_POOL_STATE_INACCESSIBLE = 4, /* Running, but not accessible */
170 } GVirStoragePoolState;
171 </pre>
172 <div class="variablelist"><table border="0" class="variablelist">
173 <colgroup>
174 <col align="left" valign="top">
175 <col>
176 </colgroup>
177 <tbody>
178 <tr>
179 <td><p><a name="GVIR-STORAGE-POOL-STATE-INACTIVE:CAPS"></a><span class="term"><code class="literal">GVIR_STORAGE_POOL_STATE_INACTIVE</code></span></p></td>
180 <td></td>
181 </tr>
182 <tr>
183 <td><p><a name="GVIR-STORAGE-POOL-STATE-BUILDING:CAPS"></a><span class="term"><code class="literal">GVIR_STORAGE_POOL_STATE_BUILDING</code></span></p></td>
184 <td></td>
185 </tr>
186 <tr>
187 <td><p><a name="GVIR-STORAGE-POOL-STATE-RUNNING:CAPS"></a><span class="term"><code class="literal">GVIR_STORAGE_POOL_STATE_RUNNING</code></span></p></td>
188 <td></td>
189 </tr>
190 <tr>
191 <td><p><a name="GVIR-STORAGE-POOL-STATE-DEGRADED:CAPS"></a><span class="term"><code class="literal">GVIR_STORAGE_POOL_STATE_DEGRADED</code></span></p></td>
192 <td></td>
193 </tr>
194 <tr>
195 <td><p><a name="GVIR-STORAGE-POOL-STATE-INACCESSIBLE:CAPS"></a><span class="term"><code class="literal">GVIR_STORAGE_POOL_STATE_INACCESSIBLE</code></span></p></td>
196 <td></td>
197 </tr>
198 </tbody>
199 </table></div>
200 </div>
201 <hr>
202 <div class="refsect2">
203 <a name="GVirStoragePoolInfo-struct"></a><h3>struct GVirStoragePoolInfo</h3>
204 <pre class="programlisting">struct GVirStoragePoolInfo {
205 GVirStoragePoolState state; /* the state */
206 guint64 capacity; /* Logical size bytes */
207 guint64 allocation; /* Current allocation bytes */
208 guint64 available; /* Remaining free space bytes */
209 };
210 </pre>
211 </div>
212 <hr>
213 <div class="refsect2">
214 <a name="gvir-storage-pool-get-name"></a><h3>gvir_storage_pool_get_name ()</h3>
215 <pre class="programlisting">const <span class="returnvalue">gchar</span> * gvir_storage_pool_get_name (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);</pre>
216 </div>
217 <hr>
218 <div class="refsect2">
219 <a name="gvir-storage-pool-get-uuid"></a><h3>gvir_storage_pool_get_uuid ()</h3>
220 <pre class="programlisting">const <span class="returnvalue">gchar</span> * gvir_storage_pool_get_uuid (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);</pre>
221 </div>
222 <hr>
223 <div class="refsect2">
224 <a name="gvir-storage-pool-get-active"></a><h3>gvir_storage_pool_get_active ()</h3>
225 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_pool_get_active (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);</pre>
226 </div>
227 <hr>
228 <div class="refsect2">
229 <a name="gvir-storage-pool-get-persistent"></a><h3>gvir_storage_pool_get_persistent ()</h3>
230 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_pool_get_persistent (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);</pre>
231 </div>
232 <hr>
233 <div class="refsect2">
234 <a name="gvir-storage-pool-get-config"></a><h3>gvir_storage_pool_get_config ()</h3>
235 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStoragePool.html"><span class="returnvalue">GVirConfigStoragePool</span></a> * gvir_storage_pool_get_config (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
236 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
237 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
238 <div class="variablelist"><table border="0" class="variablelist">
239 <colgroup>
240 <col align="left" valign="top">
241 <col>
242 </colgroup>
243 <tbody>
244 <tr>
245 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
246 <td>the storage_pool</td>
247 </tr>
248 <tr>
249 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
250 <td>the flags</td>
251 </tr>
252 <tr>
253 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
254 <td>Place-holder for possible errors</td>
255 </tr>
256 <tr>
257 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
258 <td>the config. The returned object should be
259 unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
260 </td>
261 </tr>
262 </tbody>
263 </table></div>
264 </div>
265 <hr>
266 <div class="refsect2">
267 <a name="gvir-storage-pool-get-info"></a><h3>gvir_storage_pool_get_info ()</h3>
268 <pre class="programlisting"><a class="link" href="GVirStoragePool.html#GVirStoragePoolInfo"><span class="returnvalue">GVirStoragePoolInfo</span></a> * gvir_storage_pool_get_info (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
269 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
270 <div class="variablelist"><table border="0" class="variablelist">
271 <colgroup>
272 <col align="left" valign="top">
273 <col>
274 </colgroup>
275 <tbody>
276 <tr>
277 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
278 <td>the storage_pool</td>
279 </tr>
280 <tr>
281 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
282 <td>Place-holder for possible errors</td>
283 </tr>
284 <tr>
285 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
286 <td>the info. The returned object should be
287 unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
288 </td>
289 </tr>
290 </tbody>
291 </table></div>
292 </div>
293 <hr>
294 <div class="refsect2">
295 <a name="gvir-storage-pool-refresh"></a><h3>gvir_storage_pool_refresh ()</h3>
296 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_pool_refresh (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
297 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
298 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
299 <div class="variablelist"><table border="0" class="variablelist">
300 <colgroup>
301 <col align="left" valign="top">
302 <col>
303 </colgroup>
304 <tbody>
305 <tr>
306 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
307 <td>the storage pool</td>
308 </tr>
309 <tr>
310 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
311 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
312 </td>
313 </tr>
314 </tbody>
315 </table></div>
316 </div>
317 <hr>
318 <div class="refsect2">
319 <a name="gvir-storage-pool-refresh-async"></a><h3>gvir_storage_pool_refresh_async ()</h3>
320 <pre class="programlisting"><span class="returnvalue">void</span> gvir_storage_pool_refresh_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
321 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
322 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
323 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
324 <div class="variablelist"><table border="0" class="variablelist">
325 <colgroup>
326 <col align="left" valign="top">
327 <col>
328 </colgroup>
329 <tbody>
330 <tr>
331 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
332 <td>the storage pool</td>
333 </tr>
334 <tr>
335 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
336 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
337 </td>
338 </tr>
339 <tr>
340 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
341 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
342 </td>
343 </tr>
344 <tr>
345 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
346 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
347 </td>
348 </tr>
349 </tbody>
350 </table></div>
351 </div>
352 <hr>
353 <div class="refsect2">
354 <a name="gvir-storage-pool-refresh-finish"></a><h3>gvir_storage_pool_refresh_finish ()</h3>
355 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_pool_refresh_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
356 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
357 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
358 <div class="variablelist"><table border="0" class="variablelist">
359 <colgroup>
360 <col align="left" valign="top">
361 <col>
362 </colgroup>
363 <tbody>
364 <tr>
365 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
366 <td>the storage pool</td>
367 </tr>
368 <tr>
369 <td><p><span class="term"><em class="parameter"><code>result</code></em> :</span></p></td>
370 <td>async method result. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
371 </td>
372 </tr>
373 </tbody>
374 </table></div>
375 </div>
376 <hr>
377 <div class="refsect2">
378 <a name="gvir-storage-pool-get-volumes"></a><h3>gvir_storage_pool_get_volumes ()</h3>
379 <pre class="programlisting"><span class="returnvalue">GList</span> * gvir_storage_pool_get_volumes (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>);</pre>
380 <div class="variablelist"><table border="0" class="variablelist">
381 <colgroup>
382 <col align="left" valign="top">
383 <col>
384 </colgroup>
385 <tbody>
386 <tr>
387 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
388 <td>the storage pool</td>
389 </tr>
390 <tr>
391 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
392 <td>List of <a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a>. The returned list should be freed with
393 <code class="function">g_list_free()</code>, after its elements have been unreffed with
394 <code class="function">g_object_unref()</code>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> LibvirtGObject.StorageVol][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
395 </td>
396 </tr>
397 </tbody>
398 </table></div>
399 </div>
400 <hr>
401 <div class="refsect2">
402 <a name="gvir-storage-pool-get-volume"></a><h3>gvir_storage_pool_get_volume ()</h3>
403 <pre class="programlisting"><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="returnvalue">GVirStorageVol</span></a> * gvir_storage_pool_get_volume (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
404 <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
405 <div class="variablelist"><table border="0" class="variablelist">
406 <colgroup>
407 <col align="left" valign="top">
408 <col>
409 </colgroup>
410 <tbody>
411 <tr>
412 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
413 <td>the storage pool</td>
414 </tr>
415 <tr>
416 <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
417 <td>Name of the requested storage volume</td>
418 </tr>
419 <tr>
420 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
421 <td>the <a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a>, or NULL. The
422 returned object should be unreffed with <code class="function">g_object_unref()</code> when no longer
423 needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
424 </td>
425 </tr>
426 </tbody>
427 </table></div>
428 </div>
429 <hr>
430 <div class="refsect2">
431 <a name="gvir-storage-pool-create-volume"></a><h3>gvir_storage_pool_create_volume ()</h3>
432 <pre class="programlisting"><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="returnvalue">GVirStorageVol</span></a> * gvir_storage_pool_create_volume (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
433 <em class="parameter"><code><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStorageVol.html"><span class="type">GVirConfigStorageVol</span></a> *conf</code></em>,
434 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
435 <div class="variablelist"><table border="0" class="variablelist">
436 <colgroup>
437 <col align="left" valign="top">
438 <col>
439 </colgroup>
440 <tbody>
441 <tr>
442 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
443 <td>the storage pool in which to create the volume</td>
444 </tr>
445 <tr>
446 <td><p><span class="term"><em class="parameter"><code>conf</code></em> :</span></p></td>
447 <td>the configuration for the new volume</td>
448 </tr>
449 <tr>
450 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
451 <td>Place-holder for possible errors</td>
452 </tr>
453 <tr>
454 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
455 <td>the newly created volume. The returned object
456 should be unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
457 </td>
458 </tr>
459 </tbody>
460 </table></div>
461 </div>
462 <hr>
463 <div class="refsect2">
464 <a name="gvir-storage-pool-build"></a><h3>gvir_storage_pool_build ()</h3>
465 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_pool_build (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
466 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
467 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
468 <div class="variablelist"><table border="0" class="variablelist">
469 <colgroup>
470 <col align="left" valign="top">
471 <col>
472 </colgroup>
473 <tbody>
474 <tr>
475 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
476 <td>the storage pool to build</td>
477 </tr>
478 <tr>
479 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
480 <td>the flags</td>
481 </tr>
482 <tr>
483 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
484 <td>return location for any <span class="type">GError</span>
485 </td>
486 </tr>
487 <tr>
488 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
489 <td>
490 <span class="type">True</span> on success, <span class="type">False</span> otherwise.</td>
491 </tr>
492 </tbody>
493 </table></div>
494 </div>
495 <hr>
496 <div class="refsect2">
497 <a name="gvir-storage-pool-build-async"></a><h3>gvir_storage_pool_build_async ()</h3>
498 <pre class="programlisting"><span class="returnvalue">void</span> gvir_storage_pool_build_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
499 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
500 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
501 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
502 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
503 <div class="variablelist"><table border="0" class="variablelist">
504 <colgroup>
505 <col align="left" valign="top">
506 <col>
507 </colgroup>
508 <tbody>
509 <tr>
510 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
511 <td>the storage pool to build</td>
512 </tr>
513 <tr>
514 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
515 <td>the flags</td>
516 </tr>
517 <tr>
518 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
519 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
520 </td>
521 </tr>
522 <tr>
523 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
524 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
525 </td>
526 </tr>
527 <tr>
528 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
529 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
530 </td>
531 </tr>
532 </tbody>
533 </table></div>
534 </div>
535 <hr>
536 <div class="refsect2">
537 <a name="gvir-storage-pool-build-finish"></a><h3>gvir_storage_pool_build_finish ()</h3>
538 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_pool_build_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
539 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
540 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
541 <div class="variablelist"><table border="0" class="variablelist">
542 <colgroup>
543 <col align="left" valign="top">
544 <col>
545 </colgroup>
546 <tbody>
547 <tr>
548 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
549 <td>the storage pool to build</td>
550 </tr>
551 <tr>
552 <td><p><span class="term"><em class="parameter"><code>result</code></em> :</span></p></td>
553 <td>async method result. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
554 </td>
555 </tr>
556 <tr>
557 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
558 <td>return location for any <span class="type">GError</span>
559 </td>
560 </tr>
561 <tr>
562 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
563 <td>
564 <span class="type">True</span> on success, <span class="type">False</span> otherwise.</td>
565 </tr>
566 </tbody>
567 </table></div>
568 </div>
569 <hr>
570 <div class="refsect2">
571 <a name="gvir-storage-pool-undefine"></a><h3>gvir_storage_pool_undefine ()</h3>
572 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_pool_undefine (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
573 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
574 <div class="variablelist"><table border="0" class="variablelist">
575 <colgroup>
576 <col align="left" valign="top">
577 <col>
578 </colgroup>
579 <tbody>
580 <tr>
581 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
582 <td>the storage pool to undefine</td>
583 </tr>
584 <tr>
585 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
586 <td>return location for any <span class="type">GError</span>
587 </td>
588 </tr>
589 <tr>
590 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
591 <td>
592 <span class="type">True</span> on success, <span class="type">False</span> otherwise.</td>
593 </tr>
594 </tbody>
595 </table></div>
596 </div>
597 <hr>
598 <div class="refsect2">
599 <a name="gvir-storage-pool-undefine-async"></a><h3>gvir_storage_pool_undefine_async ()</h3>
600 <pre class="programlisting"><span class="returnvalue">void</span> gvir_storage_pool_undefine_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
601 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
602 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
603 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
604 <div class="variablelist"><table border="0" class="variablelist">
605 <colgroup>
606 <col align="left" valign="top">
607 <col>
608 </colgroup>
609 <tbody>
610 <tr>
611 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
612 <td>the storage pool to undefine</td>
613 </tr>
614 <tr>
615 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
616 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
617 </td>
618 </tr>
619 <tr>
620 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
621 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
622 </td>
623 </tr>
624 <tr>
625 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
626 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
627 </td>
628 </tr>
629 </tbody>
630 </table></div>
631 </div>
632 <hr>
633 <div class="refsect2">
634 <a name="gvir-storage-pool-undefine-finish"></a><h3>gvir_storage_pool_undefine_finish ()</h3>
635 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_pool_undefine_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
636 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
637 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
638 <div class="variablelist"><table border="0" class="variablelist">
639 <colgroup>
640 <col align="left" valign="top">
641 <col>
642 </colgroup>
643 <tbody>
644 <tr>
645 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
646 <td>the storage pool to undefine</td>
647 </tr>
648 <tr>
649 <td><p><span class="term"><em class="parameter"><code>result</code></em> :</span></p></td>
650 <td>async method result. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
651 </td>
652 </tr>
653 <tr>
654 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
655 <td>return location for any <span class="type">GError</span>
656 </td>
657 </tr>
658 <tr>
659 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
660 <td>
661 <span class="type">True</span> on success, <span class="type">False</span> otherwise.</td>
662 </tr>
663 </tbody>
664 </table></div>
665 </div>
666 <hr>
667 <div class="refsect2">
668 <a name="gvir-storage-pool-start"></a><h3>gvir_storage_pool_start ()</h3>
669 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_pool_start (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
670 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
671 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
672 <div class="variablelist"><table border="0" class="variablelist">
673 <colgroup>
674 <col align="left" valign="top">
675 <col>
676 </colgroup>
677 <tbody>
678 <tr>
679 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
680 <td>the storage pool to start</td>
681 </tr>
682 <tr>
683 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
684 <td>the flags</td>
685 </tr>
686 <tr>
687 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
688 <td>return location for any <span class="type">GError</span>
689 </td>
690 </tr>
691 <tr>
692 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
693 <td>
694 <span class="type">True</span> on success, <span class="type">False</span> otherwise.</td>
695 </tr>
696 </tbody>
697 </table></div>
698 </div>
699 <hr>
700 <div class="refsect2">
701 <a name="gvir-storage-pool-start-async"></a><h3>gvir_storage_pool_start_async ()</h3>
702 <pre class="programlisting"><span class="returnvalue">void</span> gvir_storage_pool_start_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
703 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
704 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
705 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
706 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
707 <div class="variablelist"><table border="0" class="variablelist">
708 <colgroup>
709 <col align="left" valign="top">
710 <col>
711 </colgroup>
712 <tbody>
713 <tr>
714 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
715 <td>the storage pool to start</td>
716 </tr>
717 <tr>
718 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
719 <td>the flags</td>
720 </tr>
721 <tr>
722 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
723 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
724 </td>
725 </tr>
726 <tr>
727 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
728 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
729 </td>
730 </tr>
731 <tr>
732 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
733 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
734 </td>
735 </tr>
736 </tbody>
737 </table></div>
738 </div>
739 <hr>
740 <div class="refsect2">
741 <a name="gvir-storage-pool-start-finish"></a><h3>gvir_storage_pool_start_finish ()</h3>
742 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_pool_start_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
743 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
744 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
745 <div class="variablelist"><table border="0" class="variablelist">
746 <colgroup>
747 <col align="left" valign="top">
748 <col>
749 </colgroup>
750 <tbody>
751 <tr>
752 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
753 <td>the storage pool to start</td>
754 </tr>
755 <tr>
756 <td><p><span class="term"><em class="parameter"><code>result</code></em> :</span></p></td>
757 <td>async method result. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
758 </td>
759 </tr>
760 <tr>
761 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
762 <td>return location for any <span class="type">GError</span>
763 </td>
764 </tr>
765 <tr>
766 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
767 <td>
768 <span class="type">True</span> on success, <span class="type">False</span> otherwise.</td>
769 </tr>
770 </tbody>
771 </table></div>
772 </div>
773 <hr>
774 <div class="refsect2">
775 <a name="gvir-storage-pool-stop"></a><h3>gvir_storage_pool_stop ()</h3>
776 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_pool_stop (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
777 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
778 <div class="variablelist"><table border="0" class="variablelist">
779 <colgroup>
780 <col align="left" valign="top">
781 <col>
782 </colgroup>
783 <tbody>
784 <tr>
785 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
786 <td>the storage pool to stop</td>
787 </tr>
788 <tr>
789 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
790 <td>return location for any <span class="type">GError</span>
791 </td>
792 </tr>
793 <tr>
794 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
795 <td>
796 <span class="type">True</span> on success, <span class="type">False</span> otherwise.</td>
797 </tr>
798 </tbody>
799 </table></div>
800 </div>
801 <hr>
802 <div class="refsect2">
803 <a name="gvir-storage-pool-stop-async"></a><h3>gvir_storage_pool_stop_async ()</h3>
804 <pre class="programlisting"><span class="returnvalue">void</span> gvir_storage_pool_stop_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
805 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
806 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
807 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
808 <div class="variablelist"><table border="0" class="variablelist">
809 <colgroup>
810 <col align="left" valign="top">
811 <col>
812 </colgroup>
813 <tbody>
814 <tr>
815 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
816 <td>the storage pool to stop</td>
817 </tr>
818 <tr>
819 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
820 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
821 </td>
822 </tr>
823 <tr>
824 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
825 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
826 </td>
827 </tr>
828 <tr>
829 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
830 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
831 </td>
832 </tr>
833 </tbody>
834 </table></div>
835 </div>
836 <hr>
837 <div class="refsect2">
838 <a name="gvir-storage-pool-stop-finish"></a><h3>gvir_storage_pool_stop_finish ()</h3>
839 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_pool_stop_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
840 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
841 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
842 <div class="variablelist"><table border="0" class="variablelist">
843 <colgroup>
844 <col align="left" valign="top">
845 <col>
846 </colgroup>
847 <tbody>
848 <tr>
849 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
850 <td>the storage pool to stop</td>
851 </tr>
852 <tr>
853 <td><p><span class="term"><em class="parameter"><code>result</code></em> :</span></p></td>
854 <td>async method result. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
855 </td>
856 </tr>
857 <tr>
858 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
859 <td>return location for any <span class="type">GError</span>
860 </td>
861 </tr>
862 <tr>
863 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
864 <td>
865 <span class="type">True</span> on success, <span class="type">False</span> otherwise.</td>
866 </tr>
867 </tbody>
868 </table></div>
869 </div>
870 <hr>
871 <div class="refsect2">
872 <a name="gvir-storage-pool-delete"></a><h3>gvir_storage_pool_delete ()</h3>
873 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_pool_delete (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
874 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
875 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
876 <div class="variablelist"><table border="0" class="variablelist">
877 <colgroup>
878 <col align="left" valign="top">
879 <col>
880 </colgroup>
881 <tbody>
882 <tr>
883 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
884 <td>the storage pool to delete</td>
885 </tr>
886 <tr>
887 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
888 <td>the flags</td>
889 </tr>
890 <tr>
891 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
892 <td>return location for any <span class="type">GError</span>
893 </td>
894 </tr>
895 <tr>
896 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
897 <td>
898 <span class="type">True</span> on success, <span class="type">False</span> otherwise.</td>
899 </tr>
900 </tbody>
901 </table></div>
902 </div>
903 <hr>
904 <div class="refsect2">
905 <a name="gvir-storage-pool-delete-async"></a><h3>gvir_storage_pool_delete_async ()</h3>
906 <pre class="programlisting"><span class="returnvalue">void</span> gvir_storage_pool_delete_async (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
907 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
908 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
909 <em class="parameter"><code><span class="type">GAsyncReadyCallback</span> callback</code></em>,
910 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
911 <div class="variablelist"><table border="0" class="variablelist">
912 <colgroup>
913 <col align="left" valign="top">
914 <col>
915 </colgroup>
916 <tbody>
917 <tr>
918 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
919 <td>the storage pool to delete</td>
920 </tr>
921 <tr>
922 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
923 <td>the flags</td>
924 </tr>
925 <tr>
926 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
927 <td>cancellation object. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
928 </td>
929 </tr>
930 <tr>
931 <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
932 <td>completion callback. <span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span>
933 </td>
934 </tr>
935 <tr>
936 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
937 <td>opaque data for callback. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
938 </td>
939 </tr>
940 </tbody>
941 </table></div>
942 </div>
943 <hr>
944 <div class="refsect2">
945 <a name="gvir-storage-pool-delete-finish"></a><h3>gvir_storage_pool_delete_finish ()</h3>
946 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_pool_delete_finish (<em class="parameter"><code><a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *pool</code></em>,
947 <em class="parameter"><code><span class="type">GAsyncResult</span> *result</code></em>,
948 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
949 <div class="variablelist"><table border="0" class="variablelist">
950 <colgroup>
951 <col align="left" valign="top">
952 <col>
953 </colgroup>
954 <tbody>
955 <tr>
956 <td><p><span class="term"><em class="parameter"><code>pool</code></em> :</span></p></td>
957 <td>the storage pool to delete</td>
958 </tr>
959 <tr>
960 <td><p><span class="term"><em class="parameter"><code>result</code></em> :</span></p></td>
961 <td>async method result. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
962 </td>
963 </tr>
964 <tr>
965 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
966 <td>return location for any <span class="type">GError</span>
967 </td>
968 </tr>
969 <tr>
970 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
971 <td>
972 <span class="type">True</span> on success, <span class="type">False</span> otherwise.</td>
973 </tr>
974 </tbody>
975 </table></div>
1223 <div class="refsect3">
1224 <a name="id-1.2.11.10.2.3"></a><h4>Members</h4>
1225 <div class="informaltable"><table width="100%" border="0">
1226 <colgroup>
1227 <col width="300px" class="enum_members_name">
1228 <col class="enum_members_description">
1229 <col width="200px" class="enum_members_annotations">
1230 </colgroup>
1231 <tbody>
1232 <tr>
1233 <td class="enum_member_name"><p><a name="GVIR-STORAGE-POOL-STATE-INACTIVE:CAPS"></a>GVIR_STORAGE_POOL_STATE_INACTIVE</p></td>
1234 <td> </td>
1235 <td> </td>
1236 </tr>
1237 <tr>
1238 <td class="enum_member_name"><p><a name="GVIR-STORAGE-POOL-STATE-BUILDING:CAPS"></a>GVIR_STORAGE_POOL_STATE_BUILDING</p></td>
1239 <td> </td>
1240 <td> </td>
1241 </tr>
1242 <tr>
1243 <td class="enum_member_name"><p><a name="GVIR-STORAGE-POOL-STATE-RUNNING:CAPS"></a>GVIR_STORAGE_POOL_STATE_RUNNING</p></td>
1244 <td> </td>
1245 <td> </td>
1246 </tr>
1247 <tr>
1248 <td class="enum_member_name"><p><a name="GVIR-STORAGE-POOL-STATE-DEGRADED:CAPS"></a>GVIR_STORAGE_POOL_STATE_DEGRADED</p></td>
1249 <td> </td>
1250 <td> </td>
1251 </tr>
1252 <tr>
1253 <td class="enum_member_name"><p><a name="GVIR-STORAGE-POOL-STATE-INACCESSIBLE:CAPS"></a>GVIR_STORAGE_POOL_STATE_INACCESSIBLE</p></td>
1254 <td> </td>
1255 <td> </td>
1256 </tr>
1257 </tbody>
1258 </table></div>
1259 </div>
9761260 </div>
9771261 </div>
9781262 <div class="refsect1">
9791263 <a name="GVirStoragePool.property-details"></a><h2>Property Details</h2>
9801264 <div class="refsect2">
981 <a name="GVirStoragePool--handle"></a><h3>The <code class="literal">"handle"</code> property</h3>
982 <pre class="programlisting"> "handle" <span class="type">GVirStoragePoolHandle</span>* : Read / Write / Construct Only</pre>
1265 <a name="GVirStoragePool--handle"></a><h3>The <code class="literal">“handle”</code> property</h3>
1266 <pre class="programlisting"> “handle” <span class="type">GVirStoragePoolHandle</span> *</pre>
9831267 <p>The storage_pool handle.</p>
1268 <p>Flags: Read / Write / Construct Only</p>
9841269 </div>
9851270 </div>
9861271 </div>
9871272 <div class="footer">
9881273 <hr>
989 Generated by GTK-Doc V1.19</div>
1274 Generated by GTK-Doc V1.21</div>
9901275 </body>
9911276 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirStorageVol</title>
4 <title>Libvirt-gobject Reference Manual: GVirStorageVol</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirStoragePool.html" title="GVirStoragePool">
99 <link rel="next" href="GVirStream.html" title="GVirStream">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirStoragePool.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gobject Reference Manual</th>
20 <td><a accesskey="n" href="GVirStream.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirStorageVol.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirStorageVol.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirStorageVol.object-hierarchy" class="shortcut">Object Hierarchy</a>
28  | 
29 <a href="#GVirStorageVol.properties" class="shortcut">Properties</a>
30 </td></tr>
31 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirStorageVol.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirStorageVol.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
19 <a href="#GVirStorageVol.properties" class="shortcut">Properties</a></span>
20 </td>
21 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23 <td><a accesskey="p" href="GVirStoragePool.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24 <td><a accesskey="n" href="GVirStream.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25 </tr></table>
3226 <div class="refentry">
3327 <a name="GVirStorageVol"></a><div class="titlepage"></div>
3428 <div class="refnamediv"><table width="100%"><tr>
3630 <h2><span class="refentrytitle"><a name="GVirStorageVol.top_of_page"></a>GVirStorageVol</span></h2>
3731 <p>GVirStorageVol</p>
3832 </td>
39 <td valign="top" align="right"></td>
33 <td class="gallery_image" valign="top" align="right"></td>
4034 </tr></table></div>
41 <div class="refsynopsisdiv">
42 <a name="GVirStorageVol.synopsis"></a><h2>Synopsis</h2>
43 <a name="GVirStorageVolInfo"></a><pre class="synopsis">struct <a class="link" href="GVirStorageVol.html#GVirStorageVol-struct" title="struct GVirStorageVol">GVirStorageVol</a>;
44 struct <a class="link" href="GVirStorageVol.html#GVirStorageVolClass" title="struct GVirStorageVolClass">GVirStorageVolClass</a>;
45 enum <a class="link" href="GVirStorageVol.html#GVirStorageVolType" title="enum GVirStorageVolType">GVirStorageVolType</a>;
46 enum <a class="link" href="GVirStorageVol.html#GVirStorageVolResizeFlags" title="enum GVirStorageVolResizeFlags">GVirStorageVolResizeFlags</a>;
47 struct <a class="link" href="GVirStorageVol.html#GVirStorageVolInfo-struct" title="struct GVirStorageVolInfo">GVirStorageVolInfo</a>;
48 const <span class="returnvalue">gchar</span> * <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-name" title="gvir_storage_vol_get_name ()">gvir_storage_vol_get_name</a> (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>);
49 const <span class="returnvalue">gchar</span> * <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-path" title="gvir_storage_vol_get_path ()">gvir_storage_vol_get_path</a> (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
50 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
51 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStorageVol.html#gvir-storage-vol-delete" title="gvir_storage_vol_delete ()">gvir_storage_vol_delete</a> (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
52 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
53 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
54 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStorageVol.html"><span class="returnvalue">GVirConfigStorageVol</span></a> * <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-config" title="gvir_storage_vol_get_config ()">gvir_storage_vol_get_config</a> (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
55 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
56 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
57 <a class="link" href="GVirStorageVol.html#GVirStorageVolInfo"><span class="returnvalue">GVirStorageVolInfo</span></a> * <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-info" title="gvir_storage_vol_get_info ()">gvir_storage_vol_get_info</a> (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
58 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
59 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStorageVol.html#gvir-storage-vol-resize" title="gvir_storage_vol_resize ()">gvir_storage_vol_resize</a> (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
60 <em class="parameter"><code><span class="type">guint64</span> capacity</code></em>,
61 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
62 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
63 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStorageVol.html#gvir-storage-vol-download" title="gvir_storage_vol_download ()">gvir_storage_vol_download</a> (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
64 <em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
65 <em class="parameter"><code><span class="type">guint64</span> offset</code></em>,
66 <em class="parameter"><code><span class="type">guint64</span> length</code></em>,
67 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
68 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
69 <span class="returnvalue">gboolean</span> <a class="link" href="GVirStorageVol.html#gvir-storage-vol-upload" title="gvir_storage_vol_upload ()">gvir_storage_vol_upload</a> (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
70 <em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
71 <em class="parameter"><code><span class="type">guint64</span> offset</code></em>,
72 <em class="parameter"><code><span class="type">guint64</span> length</code></em>,
73 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
74 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
35 <div class="refsect1">
36 <a name="GVirStorageVol.functions"></a><h2>Functions</h2>
37 <div class="informaltable"><table width="100%" border="0">
38 <colgroup>
39 <col width="150px" class="functions_return">
40 <col class="functions_name">
41 </colgroup>
42 <tbody>
43 <tr>
44 <td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
45 </td>
46 <td class="function_name">
47 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-name" title="gvir_storage_vol_get_name ()">gvir_storage_vol_get_name</a> <span class="c_punctuation">()</span>
48 </td>
49 </tr>
50 <tr>
51 <td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
52 </td>
53 <td class="function_name">
54 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-path" title="gvir_storage_vol_get_path ()">gvir_storage_vol_get_path</a> <span class="c_punctuation">()</span>
55 </td>
56 </tr>
57 <tr>
58 <td class="function_type">
59 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
60 </td>
61 <td class="function_name">
62 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-delete" title="gvir_storage_vol_delete ()">gvir_storage_vol_delete</a> <span class="c_punctuation">()</span>
63 </td>
64 </tr>
65 <tr>
66 <td class="function_type">
67 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStorageVol.html"><span class="returnvalue">GVirConfigStorageVol</span></a> *
68 </td>
69 <td class="function_name">
70 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-config" title="gvir_storage_vol_get_config ()">gvir_storage_vol_get_config</a> <span class="c_punctuation">()</span>
71 </td>
72 </tr>
73 <tr>
74 <td class="function_type">
75 <a class="link" href="GVirStorageVol.html#GVirStorageVolInfo"><span class="returnvalue">GVirStorageVolInfo</span></a> *
76 </td>
77 <td class="function_name">
78 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-info" title="gvir_storage_vol_get_info ()">gvir_storage_vol_get_info</a> <span class="c_punctuation">()</span>
79 </td>
80 </tr>
81 <tr>
82 <td class="function_type">
83 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
84 </td>
85 <td class="function_name">
86 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-resize" title="gvir_storage_vol_resize ()">gvir_storage_vol_resize</a> <span class="c_punctuation">()</span>
87 </td>
88 </tr>
89 <tr>
90 <td class="function_type">
91 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
92 </td>
93 <td class="function_name">
94 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-download" title="gvir_storage_vol_download ()">gvir_storage_vol_download</a> <span class="c_punctuation">()</span>
95 </td>
96 </tr>
97 <tr>
98 <td class="function_type">
99 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
100 </td>
101 <td class="function_name">
102 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-upload" title="gvir_storage_vol_upload ()">gvir_storage_vol_upload</a> <span class="c_punctuation">()</span>
103 </td>
104 </tr>
105 </tbody>
106 </table></div>
107 </div>
108 <div class="refsect1">
109 <a name="GVirStorageVol.properties"></a><h2>Properties</h2>
110 <div class="informaltable"><table border="0">
111 <colgroup>
112 <col width="150px" class="properties_type">
113 <col width="300px" class="properties_name">
114 <col width="200px" class="properties_flags">
115 </colgroup>
116 <tbody>
117 <tr>
118 <td class="property_type">
119 <span class="type">GVirStorageVolHandle</span> *</td>
120 <td class="property_name"><a class="link" href="GVirStorageVol.html#GVirStorageVol--handle" title="The “handle” property">handle</a></td>
121 <td class="property_flags">Read / Write / Construct Only</td>
122 </tr>
123 <tr>
124 <td class="property_type">
125 <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *</td>
126 <td class="property_name"><a class="link" href="GVirStorageVol.html#GVirStorageVol--pool" title="The “pool” property">pool</a></td>
127 <td class="property_flags">Read / Write / Construct Only</td>
128 </tr>
129 </tbody>
130 </table></div>
131 </div>
132 <a name="GVirStorageVolInfo"></a><div class="refsect1">
133 <a name="GVirStorageVol.other"></a><h2>Types and Values</h2>
134 <div class="informaltable"><table width="100%" border="0">
135 <colgroup>
136 <col width="150px" class="name">
137 <col class="description">
138 </colgroup>
139 <tbody>
140 <tr>
141 <td class="datatype_keyword">enum</td>
142 <td class="function_name"><a class="link" href="GVirStorageVol.html#GVirStorageVolType" title="enum GVirStorageVolType">GVirStorageVolType</a></td>
143 </tr>
144 <tr>
145 <td class="datatype_keyword">enum</td>
146 <td class="function_name"><a class="link" href="GVirStorageVol.html#GVirStorageVolResizeFlags" title="enum GVirStorageVolResizeFlags">GVirStorageVolResizeFlags</a></td>
147 </tr>
148 </tbody>
149 </table></div>
150 </div>
151 <div class="refsect1">
152 <a name="GVirStorageVol.object-hierarchy"></a><h2>Object Hierarchy</h2>
153 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html">GBoxed</a>
154 <span class="lineart">╰──</span> GVirStorageVolInfo
155 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
156 <span class="lineart">╰──</span> GVirStorageVol
75157 </pre>
76158 </div>
77159 <div class="refsect1">
78 <a name="GVirStorageVol.object-hierarchy"></a><h2>Object Hierarchy</h2>
79 <pre class="synopsis">
80 GObject
81 +----GVirStorageVol
82 </pre>
83 <pre class="synopsis">
84 GBoxed
85 +----GVirStorageVolInfo
86 </pre>
87 </div>
88 <div class="refsect1">
89 <a name="GVirStorageVol.properties"></a><h2>Properties</h2>
90 <pre class="synopsis">
91 "<a class="link" href="GVirStorageVol.html#GVirStorageVol--handle" title='The "handle" property'>handle</a>" <span class="type">GVirStorageVolHandle</span>* : Read / Write / Construct Only
92 "<a class="link" href="GVirStorageVol.html#GVirStorageVol--pool" title='The "pool" property'>pool</a>" <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a>* : Read / Write / Construct Only
93 </pre>
94 </div>
95 <div class="refsect1">
96160 <a name="GVirStorageVol.description"></a><h2>Description</h2>
97161 </div>
98162 <div class="refsect1">
99 <a name="GVirStorageVol.details"></a><h2>Details</h2>
100 <div class="refsect2">
101 <a name="GVirStorageVol-struct"></a><h3>struct GVirStorageVol</h3>
102 <pre class="programlisting">struct GVirStorageVol;</pre>
103 </div>
104 <hr>
105 <div class="refsect2">
106 <a name="GVirStorageVolClass"></a><h3>struct GVirStorageVolClass</h3>
107 <pre class="programlisting">struct GVirStorageVolClass {
108 GObjectClass parent_class;
109
110 gpointer padding[20];
111 };
112 </pre>
113 </div>
114 <hr>
163 <a name="GVirStorageVol.functions_details"></a><h2>Functions</h2>
164 <div class="refsect2">
165 <a name="gvir-storage-vol-get-name"></a><h3>gvir_storage_vol_get_name ()</h3>
166 <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
167 gvir_storage_vol_get_name (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>);</pre>
168 </div>
169 <hr>
170 <div class="refsect2">
171 <a name="gvir-storage-vol-get-path"></a><h3>gvir_storage_vol_get_path ()</h3>
172 <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
173 gvir_storage_vol_get_path (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
174 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
175 </div>
176 <hr>
177 <div class="refsect2">
178 <a name="gvir-storage-vol-delete"></a><h3>gvir_storage_vol_delete ()</h3>
179 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
180 gvir_storage_vol_delete (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
181 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
182 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
183 <p>Deletes the storage volume <em class="parameter"><code>vol</code></em>
184 .</p>
185 <div class="refsect3">
186 <a name="id-1.2.12.9.4.5"></a><h4>Parameters</h4>
187 <div class="informaltable"><table width="100%" border="0">
188 <colgroup>
189 <col width="150px" class="parameters_name">
190 <col class="parameters_description">
191 <col width="200px" class="parameters_annotations">
192 </colgroup>
193 <tbody>
194 <tr>
195 <td class="parameter_name"><p>vol</p></td>
196 <td class="parameter_description"><p>the storage volume to delete</p></td>
197 <td class="parameter_annotations"> </td>
198 </tr>
199 <tr>
200 <td class="parameter_name"><p>flags</p></td>
201 <td class="parameter_description"><p>the flags</p></td>
202 <td class="parameter_annotations"> </td>
203 </tr>
204 <tr>
205 <td class="parameter_name"><p>err</p></td>
206 <td class="parameter_description"><p>Return location for errors, or NULL</p></td>
207 <td class="parameter_annotations"> </td>
208 </tr>
209 </tbody>
210 </table></div>
211 </div>
212 <div class="refsect3">
213 <a name="id-1.2.12.9.4.6"></a><h4>Returns</h4>
214 <p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
215 <p></p>
216 </div>
217 </div>
218 <hr>
219 <div class="refsect2">
220 <a name="gvir-storage-vol-get-config"></a><h3>gvir_storage_vol_get_config ()</h3>
221 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStorageVol.html"><span class="returnvalue">GVirConfigStorageVol</span></a> *
222 gvir_storage_vol_get_config (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
223 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
224 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
225 <div class="refsect3">
226 <a name="id-1.2.12.9.5.4"></a><h4>Parameters</h4>
227 <div class="informaltable"><table width="100%" border="0">
228 <colgroup>
229 <col width="150px" class="parameters_name">
230 <col class="parameters_description">
231 <col width="200px" class="parameters_annotations">
232 </colgroup>
233 <tbody>
234 <tr>
235 <td class="parameter_name"><p>vol</p></td>
236 <td class="parameter_description"><p>the storage_vol</p></td>
237 <td class="parameter_annotations"> </td>
238 </tr>
239 <tr>
240 <td class="parameter_name"><p>flags</p></td>
241 <td class="parameter_description"><p>the flags</p></td>
242 <td class="parameter_annotations"> </td>
243 </tr>
244 <tr>
245 <td class="parameter_name"><p>err</p></td>
246 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
247 <td class="parameter_annotations"> </td>
248 </tr>
249 </tbody>
250 </table></div>
251 </div>
252 <div class="refsect3">
253 <a name="id-1.2.12.9.5.5"></a><h4>Returns</h4>
254 <p> the config. The returned object should be
255 unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
256 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
257 </div>
258 </div>
259 <hr>
260 <div class="refsect2">
261 <a name="gvir-storage-vol-get-info"></a><h3>gvir_storage_vol_get_info ()</h3>
262 <pre class="programlisting"><a class="link" href="GVirStorageVol.html#GVirStorageVolInfo"><span class="returnvalue">GVirStorageVolInfo</span></a> *
263 gvir_storage_vol_get_info (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
264 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
265 <div class="refsect3">
266 <a name="id-1.2.12.9.6.4"></a><h4>Parameters</h4>
267 <div class="informaltable"><table width="100%" border="0">
268 <colgroup>
269 <col width="150px" class="parameters_name">
270 <col class="parameters_description">
271 <col width="200px" class="parameters_annotations">
272 </colgroup>
273 <tbody>
274 <tr>
275 <td class="parameter_name"><p>vol</p></td>
276 <td class="parameter_description"><p>the storage_vol</p></td>
277 <td class="parameter_annotations"> </td>
278 </tr>
279 <tr>
280 <td class="parameter_name"><p>err</p></td>
281 <td class="parameter_description"><p>Place-holder for possible errors</p></td>
282 <td class="parameter_annotations"> </td>
283 </tr>
284 </tbody>
285 </table></div>
286 </div>
287 <div class="refsect3">
288 <a name="id-1.2.12.9.6.5"></a><h4>Returns</h4>
289 <p> the info. The returned object should be
290 unreffed with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> when no longer needed. </p>
291 <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
292 </div>
293 </div>
294 <hr>
295 <div class="refsect2">
296 <a name="gvir-storage-vol-resize"></a><h3>gvir_storage_vol_resize ()</h3>
297 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
298 gvir_storage_vol_resize (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
299 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> capacity</code></em>,
300 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
301 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
302 <p>Changes the capacity of the storage volume <em class="parameter"><code>vol</code></em>
303 to <em class="parameter"><code>capacity</code></em>
304 .</p>
305 <div class="refsect3">
306 <a name="id-1.2.12.9.7.5"></a><h4>Parameters</h4>
307 <div class="informaltable"><table width="100%" border="0">
308 <colgroup>
309 <col width="150px" class="parameters_name">
310 <col class="parameters_description">
311 <col width="200px" class="parameters_annotations">
312 </colgroup>
313 <tbody>
314 <tr>
315 <td class="parameter_name"><p>vol</p></td>
316 <td class="parameter_description"><p>the storage volume to resize</p></td>
317 <td class="parameter_annotations"> </td>
318 </tr>
319 <tr>
320 <td class="parameter_name"><p>capacity</p></td>
321 <td class="parameter_description"><p>the new capacity of the volume</p></td>
322 <td class="parameter_annotations"> </td>
323 </tr>
324 <tr>
325 <td class="parameter_name"><p>flags</p></td>
326 <td class="parameter_description"><p> the flags. </p></td>
327 <td class="parameter_annotations"><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GVirStorageVolResizeFlags]</span></td>
328 </tr>
329 <tr>
330 <td class="parameter_name"><p>err</p></td>
331 <td class="parameter_description"><p>Return location for errors, or NULL</p></td>
332 <td class="parameter_annotations"> </td>
333 </tr>
334 </tbody>
335 </table></div>
336 </div>
337 <div class="refsect3">
338 <a name="id-1.2.12.9.7.6"></a><h4>Returns</h4>
339 <p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><span class="type">TRUE</span></a> success, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><span class="type">FALSE</span></a> otherwise</p>
340 <p></p>
341 </div>
342 </div>
343 <hr>
344 <div class="refsect2">
345 <a name="gvir-storage-vol-download"></a><h3>gvir_storage_vol_download ()</h3>
346 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
347 gvir_storage_vol_download (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
348 <em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
349 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> offset</code></em>,
350 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> length</code></em>,
351 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
352 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
353 <div class="refsect3">
354 <a name="id-1.2.12.9.8.4"></a><h4>Parameters</h4>
355 <div class="informaltable"><table width="100%" border="0">
356 <colgroup>
357 <col width="150px" class="parameters_name">
358 <col class="parameters_description">
359 <col width="200px" class="parameters_annotations">
360 </colgroup>
361 <tbody>
362 <tr>
363 <td class="parameter_name"><p>vol</p></td>
364 <td class="parameter_description"><p>the storage volume to download from</p></td>
365 <td class="parameter_annotations"> </td>
366 </tr>
367 <tr>
368 <td class="parameter_name"><p>stream</p></td>
369 <td class="parameter_description"><p>stream to use as output</p></td>
370 <td class="parameter_annotations"> </td>
371 </tr>
372 <tr>
373 <td class="parameter_name"><p>offset</p></td>
374 <td class="parameter_description"><p>position in <em class="parameter"><code>vol</code></em>
375 to start reading from</p></td>
376 <td class="parameter_annotations"> </td>
377 </tr>
378 <tr>
379 <td class="parameter_name"><p>length</p></td>
380 <td class="parameter_description"><p>limit on amount of data to download, or 0 for downloading all data</p></td>
381 <td class="parameter_annotations"> </td>
382 </tr>
383 <tr>
384 <td class="parameter_name"><p>flags</p></td>
385 <td class="parameter_description"><p>extra flags, not used yet, pass 0</p></td>
386 <td class="parameter_annotations"> </td>
387 </tr>
388 </tbody>
389 </table></div>
390 </div>
391 <div class="refsect3">
392 <a name="id-1.2.12.9.8.5"></a><h4>Returns</h4>
393 <p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><span class="type">TRUE</span></a> of success, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><span class="type">FALSE</span></a> otherwise</p>
394 <p></p>
395 </div>
396 </div>
397 <hr>
398 <div class="refsect2">
399 <a name="gvir-storage-vol-upload"></a><h3>gvir_storage_vol_upload ()</h3>
400 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
401 gvir_storage_vol_upload (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
402 <em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
403 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> offset</code></em>,
404 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a> length</code></em>,
405 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> flags</code></em>,
406 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **err</code></em>);</pre>
407 <div class="refsect3">
408 <a name="id-1.2.12.9.9.4"></a><h4>Parameters</h4>
409 <div class="informaltable"><table width="100%" border="0">
410 <colgroup>
411 <col width="150px" class="parameters_name">
412 <col class="parameters_description">
413 <col width="200px" class="parameters_annotations">
414 </colgroup>
415 <tbody>
416 <tr>
417 <td class="parameter_name"><p>vol</p></td>
418 <td class="parameter_description"><p>the storage volume to upload</p></td>
419 <td class="parameter_annotations"> </td>
420 </tr>
421 <tr>
422 <td class="parameter_name"><p>stream</p></td>
423 <td class="parameter_description"><p>stream to use as input</p></td>
424 <td class="parameter_annotations"> </td>
425 </tr>
426 <tr>
427 <td class="parameter_name"><p>offset</p></td>
428 <td class="parameter_description"><p>position in <em class="parameter"><code>vol</code></em>
429 to start to write to</p></td>
430 <td class="parameter_annotations"> </td>
431 </tr>
432 <tr>
433 <td class="parameter_name"><p>length</p></td>
434 <td class="parameter_description"><p>limit on amount of data to upload, or 0 for uploading all data</p></td>
435 <td class="parameter_annotations"> </td>
436 </tr>
437 <tr>
438 <td class="parameter_name"><p>flags</p></td>
439 <td class="parameter_description"><p>the flags, not set yet, pass 0</p></td>
440 <td class="parameter_annotations"> </td>
441 </tr>
442 </tbody>
443 </table></div>
444 </div>
445 <div class="refsect3">
446 <a name="id-1.2.12.9.9.5"></a><h4>Returns</h4>
447 <p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><span class="type">TRUE</span></a> of success, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><span class="type">FALSE</span></a> otherwise</p>
448 <p></p>
449 </div>
450 </div>
451 </div>
452 <div class="refsect1">
453 <a name="GVirStorageVol.other_details"></a><h2>Types and Values</h2>
115454 <div class="refsect2">
116455 <a name="GVirStorageVolType"></a><h3>enum GVirStorageVolType</h3>
117 <pre class="programlisting">typedef enum {
118 GVIR_STORAGE_VOL_STATE_FILE = 0, /* Regular file based volume */
119 GVIR_STORAGE_VOL_STATE_BLOCK = 1, /* Block based volume */
120 GVIR_STORAGE_VOL_STATE_DIR = 2, /* Directory-passthrough based volume */
121 } GVirStorageVolType;
122 </pre>
123 <div class="variablelist"><table border="0" class="variablelist">
124 <colgroup>
125 <col align="left" valign="top">
126 <col>
127 </colgroup>
128 <tbody>
129 <tr>
130 <td><p><a name="GVIR-STORAGE-VOL-STATE-FILE:CAPS"></a><span class="term"><code class="literal">GVIR_STORAGE_VOL_STATE_FILE</code></span></p></td>
131 <td></td>
132 </tr>
133 <tr>
134 <td><p><a name="GVIR-STORAGE-VOL-STATE-BLOCK:CAPS"></a><span class="term"><code class="literal">GVIR_STORAGE_VOL_STATE_BLOCK</code></span></p></td>
135 <td></td>
136 </tr>
137 <tr>
138 <td><p><a name="GVIR-STORAGE-VOL-STATE-DIR:CAPS"></a><span class="term"><code class="literal">GVIR_STORAGE_VOL_STATE_DIR</code></span></p></td>
139 <td></td>
140 </tr>
141 </tbody>
142 </table></div>
456 <div class="refsect3">
457 <a name="id-1.2.12.10.2.3"></a><h4>Members</h4>
458 <div class="informaltable"><table width="100%" border="0">
459 <colgroup>
460 <col width="300px" class="enum_members_name">
461 <col class="enum_members_description">
462 <col width="200px" class="enum_members_annotations">
463 </colgroup>
464 <tbody>
465 <tr>
466 <td class="enum_member_name"><p><a name="GVIR-STORAGE-VOL-STATE-FILE:CAPS"></a>GVIR_STORAGE_VOL_STATE_FILE</p></td>
467 <td> </td>
468 <td> </td>
469 </tr>
470 <tr>
471 <td class="enum_member_name"><p><a name="GVIR-STORAGE-VOL-STATE-BLOCK:CAPS"></a>GVIR_STORAGE_VOL_STATE_BLOCK</p></td>
472 <td> </td>
473 <td> </td>
474 </tr>
475 <tr>
476 <td class="enum_member_name"><p><a name="GVIR-STORAGE-VOL-STATE-DIR:CAPS"></a>GVIR_STORAGE_VOL_STATE_DIR</p></td>
477 <td> </td>
478 <td> </td>
479 </tr>
480 </tbody>
481 </table></div>
482 </div>
143483 </div>
144484 <hr>
145485 <div class="refsect2">
146486 <a name="GVirStorageVolResizeFlags"></a><h3>enum GVirStorageVolResizeFlags</h3>
147 <pre class="programlisting">typedef enum {
148 GVIR_STORAGE_VOL_RESIZE_NONE = 0,
149 GVIR_STORAGE_VOL_RESIZE_ALLOCATE = VIR_STORAGE_VOL_RESIZE_ALLOCATE,
150 GVIR_STORAGE_VOL_RESIZE_DELTA = VIR_STORAGE_VOL_RESIZE_DELTA,
151 GVIR_STORAGE_VOL_RESIZE_SHRINK = VIR_STORAGE_VOL_RESIZE_SHRINK,
152 } GVirStorageVolResizeFlags;
153 </pre>
154 <div class="variablelist"><table border="0" class="variablelist">
155 <colgroup>
156 <col align="left" valign="top">
157 <col>
158 </colgroup>
159 <tbody>
160 <tr>
161 <td><p><a name="GVIR-STORAGE-VOL-RESIZE-NONE:CAPS"></a><span class="term"><code class="literal">GVIR_STORAGE_VOL_RESIZE_NONE</code></span></p></td>
162 <td>No flags
163 </td>
164 </tr>
165 <tr>
166 <td><p><a name="GVIR-STORAGE-VOL-RESIZE-ALLOCATE:CAPS"></a><span class="term"><code class="literal">GVIR_STORAGE_VOL_RESIZE_ALLOCATE</code></span></p></td>
167 <td>force allocation of new size
168 </td>
169 </tr>
170 <tr>
171 <td><p><a name="GVIR-STORAGE-VOL-RESIZE-DELTA:CAPS"></a><span class="term"><code class="literal">GVIR_STORAGE_VOL_RESIZE_DELTA</code></span></p></td>
172 <td>size is relative to current
173 </td>
174 </tr>
175 <tr>
176 <td><p><a name="GVIR-STORAGE-VOL-RESIZE-SHRINK:CAPS"></a><span class="term"><code class="literal">GVIR_STORAGE_VOL_RESIZE_SHRINK</code></span></p></td>
177 <td>allow decrease in capacity. This combined
178 with <a class="link" href="GVirStorageVol.html#GVIR-STORAGE-VOL-RESIZE-DELTA:CAPS"><span class="type">GVIR_STORAGE_VOL_RESIZE_DELTA</span></a>, implies a negative delta.
179 </td>
180 </tr>
181 </tbody>
182 </table></div>
183 </div>
184 <hr>
185 <div class="refsect2">
186 <a name="GVirStorageVolInfo-struct"></a><h3>struct GVirStorageVolInfo</h3>
187 <pre class="programlisting">struct GVirStorageVolInfo {
188 GVirStorageVolType type; /* Type flags */
189 guint64 capacity; /* Logical size bytes */
190 guint64 allocation; /* Current allocation bytes */
191 };
192 </pre>
193 </div>
194 <hr>
195 <div class="refsect2">
196 <a name="gvir-storage-vol-get-name"></a><h3>gvir_storage_vol_get_name ()</h3>
197 <pre class="programlisting">const <span class="returnvalue">gchar</span> * gvir_storage_vol_get_name (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>);</pre>
198 </div>
199 <hr>
200 <div class="refsect2">
201 <a name="gvir-storage-vol-get-path"></a><h3>gvir_storage_vol_get_path ()</h3>
202 <pre class="programlisting">const <span class="returnvalue">gchar</span> * gvir_storage_vol_get_path (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
203 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
204 </div>
205 <hr>
206 <div class="refsect2">
207 <a name="gvir-storage-vol-delete"></a><h3>gvir_storage_vol_delete ()</h3>
208 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_vol_delete (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
209 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
210 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
211 <p>
212 Deletes the storage volume <em class="parameter"><code>vol</code></em>.
213 </p>
214 <div class="variablelist"><table border="0" class="variablelist">
215 <colgroup>
216 <col align="left" valign="top">
217 <col>
218 </colgroup>
219 <tbody>
220 <tr>
221 <td><p><span class="term"><em class="parameter"><code>vol</code></em> :</span></p></td>
222 <td>the storage volume to delete</td>
223 </tr>
224 <tr>
225 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
226 <td>the flags</td>
227 </tr>
228 <tr>
229 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
230 <td>Return location for errors, or NULL</td>
231 </tr>
232 <tr>
233 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
234 <td>
235 <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> otherwise</td>
236 </tr>
237 </tbody>
238 </table></div>
239 </div>
240 <hr>
241 <div class="refsect2">
242 <a name="gvir-storage-vol-get-config"></a><h3>gvir_storage_vol_get_config ()</h3>
243 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigStorageVol.html"><span class="returnvalue">GVirConfigStorageVol</span></a> * gvir_storage_vol_get_config (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
244 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
245 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
246 <div class="variablelist"><table border="0" class="variablelist">
247 <colgroup>
248 <col align="left" valign="top">
249 <col>
250 </colgroup>
251 <tbody>
252 <tr>
253 <td><p><span class="term"><em class="parameter"><code>vol</code></em> :</span></p></td>
254 <td>the storage_vol</td>
255 </tr>
256 <tr>
257 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
258 <td>the flags</td>
259 </tr>
260 <tr>
261 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
262 <td>Place-holder for possible errors</td>
263 </tr>
264 <tr>
265 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
266 <td>the config. The returned object should be
267 unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
268 </td>
269 </tr>
270 </tbody>
271 </table></div>
272 </div>
273 <hr>
274 <div class="refsect2">
275 <a name="gvir-storage-vol-get-info"></a><h3>gvir_storage_vol_get_info ()</h3>
276 <pre class="programlisting"><a class="link" href="GVirStorageVol.html#GVirStorageVolInfo"><span class="returnvalue">GVirStorageVolInfo</span></a> * gvir_storage_vol_get_info (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
277 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
278 <div class="variablelist"><table border="0" class="variablelist">
279 <colgroup>
280 <col align="left" valign="top">
281 <col>
282 </colgroup>
283 <tbody>
284 <tr>
285 <td><p><span class="term"><em class="parameter"><code>vol</code></em> :</span></p></td>
286 <td>the storage_vol</td>
287 </tr>
288 <tr>
289 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
290 <td>Place-holder for possible errors</td>
291 </tr>
292 <tr>
293 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
294 <td>the info. The returned object should be
295 unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
296 </td>
297 </tr>
298 </tbody>
299 </table></div>
300 </div>
301 <hr>
302 <div class="refsect2">
303 <a name="gvir-storage-vol-resize"></a><h3>gvir_storage_vol_resize ()</h3>
304 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_vol_resize (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
305 <em class="parameter"><code><span class="type">guint64</span> capacity</code></em>,
306 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
307 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
308 <p>
309 Changes the capacity of the storage volume <em class="parameter"><code>vol</code></em> to <em class="parameter"><code>capacity</code></em>.
310 </p>
311 <div class="variablelist"><table border="0" class="variablelist">
312 <colgroup>
313 <col align="left" valign="top">
314 <col>
315 </colgroup>
316 <tbody>
317 <tr>
318 <td><p><span class="term"><em class="parameter"><code>vol</code></em> :</span></p></td>
319 <td>the storage volume to resize</td>
320 </tr>
321 <tr>
322 <td><p><span class="term"><em class="parameter"><code>capacity</code></em> :</span></p></td>
323 <td>the new capacity of the volume</td>
324 </tr>
325 <tr>
326 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
327 <td>the flags. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GVirStorageVolResizeFlags]</span>
328 </td>
329 </tr>
330 <tr>
331 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
332 <td>Return location for errors, or NULL</td>
333 </tr>
334 <tr>
335 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
336 <td>
337 <span class="type">TRUE</span> success, <span class="type">FALSE</span> otherwise</td>
338 </tr>
339 </tbody>
340 </table></div>
341 </div>
342 <hr>
343 <div class="refsect2">
344 <a name="gvir-storage-vol-download"></a><h3>gvir_storage_vol_download ()</h3>
345 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_vol_download (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
346 <em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
347 <em class="parameter"><code><span class="type">guint64</span> offset</code></em>,
348 <em class="parameter"><code><span class="type">guint64</span> length</code></em>,
349 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
350 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
351 <div class="variablelist"><table border="0" class="variablelist">
352 <colgroup>
353 <col align="left" valign="top">
354 <col>
355 </colgroup>
356 <tbody>
357 <tr>
358 <td><p><span class="term"><em class="parameter"><code>vol</code></em> :</span></p></td>
359 <td>the storage volume to download from</td>
360 </tr>
361 <tr>
362 <td><p><span class="term"><em class="parameter"><code>stream</code></em> :</span></p></td>
363 <td>stream to use as output</td>
364 </tr>
365 <tr>
366 <td><p><span class="term"><em class="parameter"><code>offset</code></em> :</span></p></td>
367 <td>position in <em class="parameter"><code>vol</code></em> to start reading from</td>
368 </tr>
369 <tr>
370 <td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
371 <td>limit on amount of data to download, or 0 for downloading all data</td>
372 </tr>
373 <tr>
374 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
375 <td>extra flags, not used yet, pass 0</td>
376 </tr>
377 <tr>
378 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
379 <td>
380 <span class="type">TRUE</span> of success, <span class="type">FALSE</span> otherwise</td>
381 </tr>
382 </tbody>
383 </table></div>
384 </div>
385 <hr>
386 <div class="refsect2">
387 <a name="gvir-storage-vol-upload"></a><h3>gvir_storage_vol_upload ()</h3>
388 <pre class="programlisting"><span class="returnvalue">gboolean</span> gvir_storage_vol_upload (<em class="parameter"><code><a class="link" href="GVirStorageVol.html" title="GVirStorageVol"><span class="type">GVirStorageVol</span></a> *vol</code></em>,
389 <em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
390 <em class="parameter"><code><span class="type">guint64</span> offset</code></em>,
391 <em class="parameter"><code><span class="type">guint64</span> length</code></em>,
392 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
393 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
394 <div class="variablelist"><table border="0" class="variablelist">
395 <colgroup>
396 <col align="left" valign="top">
397 <col>
398 </colgroup>
399 <tbody>
400 <tr>
401 <td><p><span class="term"><em class="parameter"><code>vol</code></em> :</span></p></td>
402 <td>the storage volume to upload</td>
403 </tr>
404 <tr>
405 <td><p><span class="term"><em class="parameter"><code>stream</code></em> :</span></p></td>
406 <td>stream to use as input</td>
407 </tr>
408 <tr>
409 <td><p><span class="term"><em class="parameter"><code>offset</code></em> :</span></p></td>
410 <td>position in <em class="parameter"><code>vol</code></em> to start to write to</td>
411 </tr>
412 <tr>
413 <td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
414 <td>limit on amount of data to upload, or 0 for uploading all data</td>
415 </tr>
416 <tr>
417 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
418 <td>the flags, not set yet, pass 0</td>
419 </tr>
420 <tr>
421 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
422 <td>
423 <span class="type">TRUE</span> of success, <span class="type">FALSE</span> otherwise</td>
424 </tr>
425 </tbody>
426 </table></div>
487 <div class="refsect3">
488 <a name="id-1.2.12.10.3.3"></a><h4>Members</h4>
489 <div class="informaltable"><table width="100%" border="0">
490 <colgroup>
491 <col width="300px" class="enum_members_name">
492 <col class="enum_members_description">
493 <col width="200px" class="enum_members_annotations">
494 </colgroup>
495 <tbody>
496 <tr>
497 <td class="enum_member_name"><p><a name="GVIR-STORAGE-VOL-RESIZE-NONE:CAPS"></a>GVIR_STORAGE_VOL_RESIZE_NONE</p></td>
498 <td class="enum_member_description">
499 <p>No flags</p>
500 </td>
501 <td class="enum_member_annotations"> </td>
502 </tr>
503 <tr>
504 <td class="enum_member_name"><p><a name="GVIR-STORAGE-VOL-RESIZE-ALLOCATE:CAPS"></a>GVIR_STORAGE_VOL_RESIZE_ALLOCATE</p></td>
505 <td class="enum_member_description">
506 <p>force allocation of new size</p>
507 </td>
508 <td class="enum_member_annotations"> </td>
509 </tr>
510 <tr>
511 <td class="enum_member_name"><p><a name="GVIR-STORAGE-VOL-RESIZE-DELTA:CAPS"></a>GVIR_STORAGE_VOL_RESIZE_DELTA</p></td>
512 <td class="enum_member_description">
513 <p>size is relative to current</p>
514 </td>
515 <td class="enum_member_annotations"> </td>
516 </tr>
517 <tr>
518 <td class="enum_member_name"><p><a name="GVIR-STORAGE-VOL-RESIZE-SHRINK:CAPS"></a>GVIR_STORAGE_VOL_RESIZE_SHRINK</p></td>
519 <td class="enum_member_description">
520 <p>allow decrease in capacity. This combined
521 with <a class="link" href="GVirStorageVol.html#GVIR-STORAGE-VOL-RESIZE-DELTA:CAPS"><span class="type">GVIR_STORAGE_VOL_RESIZE_DELTA</span></a>, implies a negative delta.</p>
522 </td>
523 <td class="enum_member_annotations"> </td>
524 </tr>
525 </tbody>
526 </table></div>
527 </div>
427528 </div>
428529 </div>
429530 <div class="refsect1">
430531 <a name="GVirStorageVol.property-details"></a><h2>Property Details</h2>
431532 <div class="refsect2">
432 <a name="GVirStorageVol--handle"></a><h3>The <code class="literal">"handle"</code> property</h3>
433 <pre class="programlisting"> "handle" <span class="type">GVirStorageVolHandle</span>* : Read / Write / Construct Only</pre>
533 <a name="GVirStorageVol--handle"></a><h3>The <code class="literal">“handle”</code> property</h3>
534 <pre class="programlisting"> “handle” <span class="type">GVirStorageVolHandle</span> *</pre>
434535 <p>The storage_vol handle.</p>
435 </div>
436 <hr>
437 <div class="refsect2">
438 <a name="GVirStorageVol--pool"></a><h3>The <code class="literal">"pool"</code> property</h3>
439 <pre class="programlisting"> "pool" <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a>* : Read / Write / Construct Only</pre>
536 <p>Flags: Read / Write / Construct Only</p>
537 </div>
538 <hr>
539 <div class="refsect2">
540 <a name="GVirStorageVol--pool"></a><h3>The <code class="literal">“pool”</code> property</h3>
541 <pre class="programlisting"> “pool” <a class="link" href="GVirStoragePool.html" title="GVirStoragePool"><span class="type">GVirStoragePool</span></a> *</pre>
440542 <p>The containing storage pool.</p>
543 <p>Flags: Read / Write / Construct Only</p>
441544 </div>
442545 </div>
443546 </div>
444547 <div class="footer">
445548 <hr>
446 Generated by GTK-Doc V1.19</div>
549 Generated by GTK-Doc V1.21</div>
447550 </body>
448551 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVirStream</title>
4 <title>Libvirt-gobject Reference Manual: GVirStream</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="up" href="ch01.html" title="Libvirt-gobject">
88 <link rel="prev" href="GVirStorageVol.html" title="GVirStorageVol">
99 <link rel="next" href="object-tree.html" title="Object Hierarchy">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirStorageVol.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gobject Reference Manual</th>
20 <td><a accesskey="n" href="object-tree.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#GVirStream.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#GVirStream.description" class="shortcut">Description</a>
26  | 
27 <a href="#GVirStream.object-hierarchy" class="shortcut">Object Hierarchy</a>
28  | 
29 <a href="#GVirStream.properties" class="shortcut">Properties</a>
30 </td></tr>
31 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts">
16 <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
17 <a href="#GVirStream.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
18 <a href="#GVirStream.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
19 <a href="#GVirStream.properties" class="shortcut">Properties</a></span>
20 </td>
21 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23 <td><a accesskey="p" href="GVirStorageVol.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24 <td><a accesskey="n" href="object-tree.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25 </tr></table>
3226 <div class="refentry">
3327 <a name="GVirStream"></a><div class="titlepage"></div>
3428 <div class="refnamediv"><table width="100%"><tr>
3630 <h2><span class="refentrytitle"><a name="GVirStream.top_of_page"></a>GVirStream</span></h2>
3731 <p>GVirStream</p>
3832 </td>
39 <td valign="top" align="right"></td>
33 <td class="gallery_image" valign="top" align="right"></td>
4034 </tr></table></div>
41 <div class="refsynopsisdiv">
42 <a name="GVirStream.synopsis"></a><h2>Synopsis</h2>
43 <pre class="synopsis">struct <a class="link" href="GVirStream.html#GVirStream-struct" title="struct GVirStream">GVirStream</a>;
44 struct <a class="link" href="GVirStream.html#GVirStreamClass" title="struct GVirStreamClass">GVirStreamClass</a>;
45 <span class="returnvalue">gint</span> (<a class="link" href="GVirStream.html#GVirStreamSinkFunc" title="GVirStreamSinkFunc ()">*GVirStreamSinkFunc</a>) (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
46 <em class="parameter"><code>const <span class="type">gchar</span> *buf</code></em>,
47 <em class="parameter"><code><span class="type">gsize</span> nbytes</code></em>,
48 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
49 <span class="returnvalue">gint</span> (<a class="link" href="GVirStream.html#GVirStreamSourceFunc" title="GVirStreamSourceFunc ()">*GVirStreamSourceFunc</a>) (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
50 <em class="parameter"><code><span class="type">gchar</span> *buf</code></em>,
51 <em class="parameter"><code><span class="type">gsize</span> nbytes</code></em>,
52 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
53 enum <a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition">GVirStreamIOCondition</a>;
54 <span class="returnvalue">gboolean</span> (<a class="link" href="GVirStream.html#GVirStreamIOFunc" title="GVirStreamIOFunc ()">*GVirStreamIOFunc</a>) (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
55 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition"><span class="type">GVirStreamIOCondition</span></a> cond</code></em>,
56 <em class="parameter"><code><span class="type">gpointer</span> opaque</code></em>);
57 <span class="returnvalue">guint</span> <a class="link" href="GVirStream.html#gvir-stream-add-watch" title="gvir_stream_add_watch ()">gvir_stream_add_watch</a> (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
58 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition"><span class="type">GVirStreamIOCondition</span></a> cond</code></em>,
59 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOFunc" title="GVirStreamIOFunc ()"><span class="type">GVirStreamIOFunc</span></a> func</code></em>,
60 <em class="parameter"><code><span class="type">gpointer</span> opaque</code></em>);
61 <span class="returnvalue">guint</span> <a class="link" href="GVirStream.html#gvir-stream-add-watch-full" title="gvir_stream_add_watch_full ()">gvir_stream_add_watch_full</a> (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
62 <em class="parameter"><code><span class="type">gint</span> priority</code></em>,
63 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition"><span class="type">GVirStreamIOCondition</span></a> cond</code></em>,
64 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOFunc" title="GVirStreamIOFunc ()"><span class="type">GVirStreamIOFunc</span></a> func</code></em>,
65 <em class="parameter"><code><span class="type">gpointer</span> opaque</code></em>,
66 <em class="parameter"><code><span class="type">GDestroyNotify</span> notify</code></em>);
67 <span class="returnvalue">gssize</span> <a class="link" href="GVirStream.html#gvir-stream-receive-all" title="gvir_stream_receive_all ()">gvir_stream_receive_all</a> (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
68 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
69 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamSinkFunc" title="GVirStreamSinkFunc ()"><span class="type">GVirStreamSinkFunc</span></a> func</code></em>,
70 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
71 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
72 <span class="returnvalue">gssize</span> <a class="link" href="GVirStream.html#gvir-stream-receive" title="gvir_stream_receive ()">gvir_stream_receive</a> (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
73 <em class="parameter"><code><span class="type">gchar</span> *buffer</code></em>,
74 <em class="parameter"><code><span class="type">gsize</span> size</code></em>,
75 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
76 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
77 <span class="returnvalue">gssize</span> <a class="link" href="GVirStream.html#gvir-stream-send-all" title="gvir_stream_send_all ()">gvir_stream_send_all</a> (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
78 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
79 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamSourceFunc" title="GVirStreamSourceFunc ()"><span class="type">GVirStreamSourceFunc</span></a> func</code></em>,
80 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
81 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
82 <span class="returnvalue">gssize</span> <a class="link" href="GVirStream.html#gvir-stream-send" title="gvir_stream_send ()">gvir_stream_send</a> (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
83 <em class="parameter"><code>const <span class="type">gchar</span> *buffer</code></em>,
84 <em class="parameter"><code><span class="type">gsize</span> size</code></em>,
85 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
86 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
35 <div class="refsect1">
36 <a name="GVirStream.functions"></a><h2>Functions</h2>
37 <div class="informaltable"><table width="100%" border="0">
38 <colgroup>
39 <col width="150px" class="functions_return">
40 <col class="functions_name">
41 </colgroup>
42 <tbody>
43 <tr>
44 <td class="function_type">
45 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
46 </td>
47 <td class="function_name">
48 <span class="c_punctuation">(</span><a class="link" href="GVirStream.html#GVirStreamSinkFunc" title="GVirStreamSinkFunc ()">*GVirStreamSinkFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
49 </td>
50 </tr>
51 <tr>
52 <td class="function_type">
53 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
54 </td>
55 <td class="function_name">
56 <span class="c_punctuation">(</span><a class="link" href="GVirStream.html#GVirStreamSourceFunc" title="GVirStreamSourceFunc ()">*GVirStreamSourceFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
57 </td>
58 </tr>
59 <tr>
60 <td class="function_type">
61 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
62 </td>
63 <td class="function_name">
64 <span class="c_punctuation">(</span><a class="link" href="GVirStream.html#GVirStreamIOFunc" title="GVirStreamIOFunc ()">*GVirStreamIOFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
65 </td>
66 </tr>
67 <tr>
68 <td class="function_type">
69 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
70 </td>
71 <td class="function_name">
72 <a class="link" href="GVirStream.html#gvir-stream-add-watch" title="gvir_stream_add_watch ()">gvir_stream_add_watch</a> <span class="c_punctuation">()</span>
73 </td>
74 </tr>
75 <tr>
76 <td class="function_type">
77 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
78 </td>
79 <td class="function_name">
80 <a class="link" href="GVirStream.html#gvir-stream-add-watch-full" title="gvir_stream_add_watch_full ()">gvir_stream_add_watch_full</a> <span class="c_punctuation">()</span>
81 </td>
82 </tr>
83 <tr>
84 <td class="function_type">
85 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gssize"><span class="returnvalue">gssize</span></a>
86 </td>
87 <td class="function_name">
88 <a class="link" href="GVirStream.html#gvir-stream-receive-all" title="gvir_stream_receive_all ()">gvir_stream_receive_all</a> <span class="c_punctuation">()</span>
89 </td>
90 </tr>
91 <tr>
92 <td class="function_type">
93 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gssize"><span class="returnvalue">gssize</span></a>
94 </td>
95 <td class="function_name">
96 <a class="link" href="GVirStream.html#gvir-stream-receive" title="gvir_stream_receive ()">gvir_stream_receive</a> <span class="c_punctuation">()</span>
97 </td>
98 </tr>
99 <tr>
100 <td class="function_type">
101 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gssize"><span class="returnvalue">gssize</span></a>
102 </td>
103 <td class="function_name">
104 <a class="link" href="GVirStream.html#gvir-stream-send-all" title="gvir_stream_send_all ()">gvir_stream_send_all</a> <span class="c_punctuation">()</span>
105 </td>
106 </tr>
107 <tr>
108 <td class="function_type">
109 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gssize"><span class="returnvalue">gssize</span></a>
110 </td>
111 <td class="function_name">
112 <a class="link" href="GVirStream.html#gvir-stream-send" title="gvir_stream_send ()">gvir_stream_send</a> <span class="c_punctuation">()</span>
113 </td>
114 </tr>
115 </tbody>
116 </table></div>
117 </div>
118 <div class="refsect1">
119 <a name="GVirStream.properties"></a><h2>Properties</h2>
120 <div class="informaltable"><table border="0">
121 <colgroup>
122 <col width="150px" class="properties_type">
123 <col width="300px" class="properties_name">
124 <col width="200px" class="properties_flags">
125 </colgroup>
126 <tbody><tr>
127 <td class="property_type">
128 <span class="type">GVirStreamHandle</span> *</td>
129 <td class="property_name"><a class="link" href="GVirStream.html#GVirStream--handle" title="The “handle” property">handle</a></td>
130 <td class="property_flags">Read / Write / Construct Only</td>
131 </tr></tbody>
132 </table></div>
133 </div>
134 <div class="refsect1">
135 <a name="GVirStream.other"></a><h2>Types and Values</h2>
136 <div class="informaltable"><table width="100%" border="0">
137 <colgroup>
138 <col width="150px" class="name">
139 <col class="description">
140 </colgroup>
141 <tbody><tr>
142 <td class="datatype_keyword">enum</td>
143 <td class="function_name"><a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition">GVirStreamIOCondition</a></td>
144 </tr></tbody>
145 </table></div>
146 </div>
147 <div class="refsect1">
148 <a name="GVirStream.object-hierarchy"></a><h2>Object Hierarchy</h2>
149 <pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
150 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gio/unstable/GIOStream.html">GIOStream</a>
151 <span class="lineart">╰──</span> GVirStream
87152 </pre>
88153 </div>
89154 <div class="refsect1">
90 <a name="GVirStream.object-hierarchy"></a><h2>Object Hierarchy</h2>
91 <pre class="synopsis">
92 GObject
93 +----GIOStream
94 +----GVirStream
95 </pre>
96 </div>
97 <div class="refsect1">
98 <a name="GVirStream.properties"></a><h2>Properties</h2>
99 <pre class="synopsis">
100 "<a class="link" href="GVirStream.html#GVirStream--handle" title='The "handle" property'>handle</a>" <span class="type">GVirStreamHandle</span>* : Read / Write / Construct Only
101 </pre>
102 </div>
103 <div class="refsect1">
104155 <a name="GVirStream.description"></a><h2>Description</h2>
105156 </div>
106157 <div class="refsect1">
107 <a name="GVirStream.details"></a><h2>Details</h2>
108 <div class="refsect2">
109 <a name="GVirStream-struct"></a><h3>struct GVirStream</h3>
110 <pre class="programlisting">struct GVirStream;</pre>
111 </div>
112 <hr>
113 <div class="refsect2">
114 <a name="GVirStreamClass"></a><h3>struct GVirStreamClass</h3>
115 <pre class="programlisting">struct GVirStreamClass {
116 GIOStreamClass parent_class;
117
118 gpointer padding[20];
119 };
120 </pre>
121 </div>
122 <hr>
123 <div class="refsect2">
124 <a name="GVirStreamSinkFunc"></a><h3>GVirStreamSinkFunc ()</h3>
125 <pre class="programlisting"><span class="returnvalue">gint</span> (*GVirStreamSinkFunc) (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
126 <em class="parameter"><code>const <span class="type">gchar</span> *buf</code></em>,
127 <em class="parameter"><code><span class="type">gsize</span> nbytes</code></em>,
128 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
129 <div class="variablelist"><table border="0" class="variablelist">
130 <colgroup>
131 <col align="left" valign="top">
132 <col>
133 </colgroup>
134 <tbody>
135 <tr>
136 <td><p><span class="term"><em class="parameter"><code>stream</code></em> :</span></p></td>
137 <td>a <a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a>
138 </td>
139 </tr>
140 <tr>
141 <td><p><span class="term"><em class="parameter"><code>buf</code></em> :</span></p></td>
142 <td>data pointer. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=nbytes][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
143 </td>
144 </tr>
145 <tr>
146 <td><p><span class="term"><em class="parameter"><code>nbytes</code></em> :</span></p></td>
147 <td>data size</td>
148 </tr>
149 <tr>
150 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
151 <td>user data passed to the function</td>
152 </tr>
153 <tr>
154 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
155 <td>the number of bytes filled, 0 upon end
156 of file, or -1 upon error</td>
157 </tr>
158 </tbody>
159 </table></div>
160 </div>
161 <hr>
162 <div class="refsect2">
163 <a name="GVirStreamSourceFunc"></a><h3>GVirStreamSourceFunc ()</h3>
164 <pre class="programlisting"><span class="returnvalue">gint</span> (*GVirStreamSourceFunc) (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
165 <em class="parameter"><code><span class="type">gchar</span> *buf</code></em>,
166 <em class="parameter"><code><span class="type">gsize</span> nbytes</code></em>,
167 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
168 <div class="variablelist"><table border="0" class="variablelist">
169 <colgroup>
170 <col align="left" valign="top">
171 <col>
172 </colgroup>
173 <tbody>
174 <tr>
175 <td><p><span class="term"><em class="parameter"><code>stream</code></em> :</span></p></td>
176 <td>a <a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a>
177 </td>
178 </tr>
179 <tr>
180 <td><p><span class="term"><em class="parameter"><code>buf</code></em> :</span></p></td>
181 <td>data pointer. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=nbytes][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
182 </td>
183 </tr>
184 <tr>
185 <td><p><span class="term"><em class="parameter"><code>nbytes</code></em> :</span></p></td>
186 <td>data size</td>
187 </tr>
188 <tr>
189 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
190 <td>user data passed to the function</td>
191 </tr>
192 <tr>
193 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
194 <td>the number of bytes filled, 0 upon end
195 of file, or -1 upon error</td>
196 </tr>
197 </tbody>
198 </table></div>
199 </div>
200 <hr>
158 <a name="GVirStream.functions_details"></a><h2>Functions</h2>
159 <div class="refsect2">
160 <a name="GVirStreamSinkFunc"></a><h3>GVirStreamSinkFunc ()</h3>
161 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
162 <span class="c_punctuation">(</span>*GVirStreamSinkFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
163 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *buf</code></em>,
164 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> nbytes</code></em>,
165 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
166 <div class="refsect3">
167 <a name="id-1.2.13.8.2.4"></a><h4>Parameters</h4>
168 <div class="informaltable"><table width="100%" border="0">
169 <colgroup>
170 <col width="150px" class="parameters_name">
171 <col class="parameters_description">
172 <col width="200px" class="parameters_annotations">
173 </colgroup>
174 <tbody>
175 <tr>
176 <td class="parameter_name"><p>stream</p></td>
177 <td class="parameter_description"><p>a <a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a></p></td>
178 <td class="parameter_annotations"> </td>
179 </tr>
180 <tr>
181 <td class="parameter_name"><p>buf</p></td>
182 <td class="parameter_description"><p> data pointer. </p></td>
183 <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=nbytes][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
184 </tr>
185 <tr>
186 <td class="parameter_name"><p>nbytes</p></td>
187 <td class="parameter_description"><p>data size</p></td>
188 <td class="parameter_annotations"> </td>
189 </tr>
190 <tr>
191 <td class="parameter_name"><p>user_data</p></td>
192 <td class="parameter_description"><p>user data passed to the function</p></td>
193 <td class="parameter_annotations"> </td>
194 </tr>
195 </tbody>
196 </table></div>
197 </div>
198 <div class="refsect3">
199 <a name="id-1.2.13.8.2.5"></a><h4>Returns</h4>
200 <p> the number of bytes filled, 0 upon end
201 of file, or -1 upon error</p>
202 <p></p>
203 </div>
204 </div>
205 <hr>
206 <div class="refsect2">
207 <a name="GVirStreamSourceFunc"></a><h3>GVirStreamSourceFunc ()</h3>
208 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
209 <span class="c_punctuation">(</span>*GVirStreamSourceFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
210 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *buf</code></em>,
211 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> nbytes</code></em>,
212 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
213 <div class="refsect3">
214 <a name="id-1.2.13.8.3.4"></a><h4>Parameters</h4>
215 <div class="informaltable"><table width="100%" border="0">
216 <colgroup>
217 <col width="150px" class="parameters_name">
218 <col class="parameters_description">
219 <col width="200px" class="parameters_annotations">
220 </colgroup>
221 <tbody>
222 <tr>
223 <td class="parameter_name"><p>stream</p></td>
224 <td class="parameter_description"><p>a <a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a></p></td>
225 <td class="parameter_annotations"> </td>
226 </tr>
227 <tr>
228 <td class="parameter_name"><p>buf</p></td>
229 <td class="parameter_description"><p> data pointer. </p></td>
230 <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=nbytes][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td>
231 </tr>
232 <tr>
233 <td class="parameter_name"><p>nbytes</p></td>
234 <td class="parameter_description"><p>data size</p></td>
235 <td class="parameter_annotations"> </td>
236 </tr>
237 <tr>
238 <td class="parameter_name"><p>user_data</p></td>
239 <td class="parameter_description"><p>user data passed to the function</p></td>
240 <td class="parameter_annotations"> </td>
241 </tr>
242 </tbody>
243 </table></div>
244 </div>
245 <div class="refsect3">
246 <a name="id-1.2.13.8.3.5"></a><h4>Returns</h4>
247 <p> the number of bytes filled, 0 upon end
248 of file, or -1 upon error</p>
249 <p></p>
250 </div>
251 </div>
252 <hr>
253 <div class="refsect2">
254 <a name="GVirStreamIOFunc"></a><h3>GVirStreamIOFunc ()</h3>
255 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
256 <span class="c_punctuation">(</span>*GVirStreamIOFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
257 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition"><span class="type">GVirStreamIOCondition</span></a> cond</code></em>,
258 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> opaque</code></em>);</pre>
259 </div>
260 <hr>
261 <div class="refsect2">
262 <a name="gvir-stream-add-watch"></a><h3>gvir_stream_add_watch ()</h3>
263 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
264 gvir_stream_add_watch (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
265 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition"><span class="type">GVirStreamIOCondition</span></a> cond</code></em>,
266 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOFunc" title="GVirStreamIOFunc ()"><span class="type">GVirStreamIOFunc</span></a> func</code></em>,
267 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> opaque</code></em>);</pre>
268 <p>Adds a watch for <em class="parameter"><code>stream</code></em>
269 to the mainloop</p>
270 <div class="refsect3">
271 <a name="id-1.2.13.8.5.5"></a><h4>Parameters</h4>
272 <div class="informaltable"><table width="100%" border="0">
273 <colgroup>
274 <col width="150px" class="parameters_name">
275 <col class="parameters_description">
276 <col width="200px" class="parameters_annotations">
277 </colgroup>
278 <tbody>
279 <tr>
280 <td class="parameter_name"><p>stream</p></td>
281 <td class="parameter_description"><p>the stream</p></td>
282 <td class="parameter_annotations"> </td>
283 </tr>
284 <tr>
285 <td class="parameter_name"><p>cond</p></td>
286 <td class="parameter_description"><p>the conditions to watch for (bitfield of <a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition"><span class="type">GVirStreamIOCondition</span></a>)</p></td>
287 <td class="parameter_annotations"> </td>
288 </tr>
289 <tr>
290 <td class="parameter_name"><p>func</p></td>
291 <td class="parameter_description"><p> the function to call when the condition is satisfied. </p></td>
292 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym> opaque]</span></td>
293 </tr>
294 <tr>
295 <td class="parameter_name"><p>opaque</p></td>
296 <td class="parameter_description"><p> user data to pass to <em class="parameter"><code>func</code></em>
297 . </p></td>
298 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
299 </tr>
300 </tbody>
301 </table></div>
302 </div>
303 <div class="refsect3">
304 <a name="id-1.2.13.8.5.6"></a><h4>Returns</h4>
305 <p> the event source id</p>
306 <p></p>
307 </div>
308 </div>
309 <hr>
310 <div class="refsect2">
311 <a name="gvir-stream-add-watch-full"></a><h3>gvir_stream_add_watch_full ()</h3>
312 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
313 gvir_stream_add_watch_full (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
314 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> priority</code></em>,
315 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition"><span class="type">GVirStreamIOCondition</span></a> cond</code></em>,
316 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOFunc" title="GVirStreamIOFunc ()"><span class="type">GVirStreamIOFunc</span></a> func</code></em>,
317 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> opaque</code></em>,
318 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> notify</code></em>);</pre>
319 <p>Adds a watch for <em class="parameter"><code>stream</code></em>
320 to the mainloop</p>
321 <div class="refsect3">
322 <a name="id-1.2.13.8.6.5"></a><h4>Parameters</h4>
323 <div class="informaltable"><table width="100%" border="0">
324 <colgroup>
325 <col width="150px" class="parameters_name">
326 <col class="parameters_description">
327 <col width="200px" class="parameters_annotations">
328 </colgroup>
329 <tbody>
330 <tr>
331 <td class="parameter_name"><p>stream</p></td>
332 <td class="parameter_description"><p>the stream</p></td>
333 <td class="parameter_annotations"> </td>
334 </tr>
335 <tr>
336 <td class="parameter_name"><p>priority</p></td>
337 <td class="parameter_description"><p>the priority of the <a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> source</p></td>
338 <td class="parameter_annotations"> </td>
339 </tr>
340 <tr>
341 <td class="parameter_name"><p>cond</p></td>
342 <td class="parameter_description"><p>the conditions to watch for (bitfield of <a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition"><span class="type">GVirStreamIOCondition</span></a>)</p></td>
343 <td class="parameter_annotations"> </td>
344 </tr>
345 <tr>
346 <td class="parameter_name"><p>func</p></td>
347 <td class="parameter_description"><p> the function to call when the condition is satisfied. </p></td>
348 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym> opaque]</span></td>
349 </tr>
350 <tr>
351 <td class="parameter_name"><p>opaque</p></td>
352 <td class="parameter_description"><p> user data to pass to <em class="parameter"><code>func</code></em>
353 . </p></td>
354 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
355 </tr>
356 <tr>
357 <td class="parameter_name"><p>notify</p></td>
358 <td class="parameter_description"><p>the function to call when the source is removed</p></td>
359 <td class="parameter_annotations"> </td>
360 </tr>
361 </tbody>
362 </table></div>
363 </div>
364 <div class="refsect3">
365 <a name="id-1.2.13.8.6.6"></a><h4>Returns</h4>
366 <p> the event source id
367 Rename to: gvir_stream_add_watch</p>
368 <p></p>
369 </div>
370 </div>
371 <hr>
372 <div class="refsect2">
373 <a name="gvir-stream-receive-all"></a><h3>gvir_stream_receive_all ()</h3>
374 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gssize"><span class="returnvalue">gssize</span></a>
375 gvir_stream_receive_all (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
376 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
377 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamSinkFunc" title="GVirStreamSinkFunc ()"><span class="type">GVirStreamSinkFunc</span></a> func</code></em>,
378 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
379 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
380 <p>Receive the entire data stream, sending the data to the
381 requested data sink. This is simply a convenient alternative
382 to virStreamRecv, for apps that do blocking-I/o.</p>
383 <div class="refsect3">
384 <a name="id-1.2.13.8.7.5"></a><h4>Parameters</h4>
385 <div class="informaltable"><table width="100%" border="0">
386 <colgroup>
387 <col width="150px" class="parameters_name">
388 <col class="parameters_description">
389 <col width="200px" class="parameters_annotations">
390 </colgroup>
391 <tbody>
392 <tr>
393 <td class="parameter_name"><p>stream</p></td>
394 <td class="parameter_description"><p>the stream</p></td>
395 <td class="parameter_annotations"> </td>
396 </tr>
397 <tr>
398 <td class="parameter_name"><p>cancellable</p></td>
399 <td class="parameter_description"><p>cancellation notifier</p></td>
400 <td class="parameter_annotations"> </td>
401 </tr>
402 <tr>
403 <td class="parameter_name"><p>func</p></td>
404 <td class="parameter_description"><p> the callback for writing data to application. </p></td>
405 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until the GDestroyNotify argument is called."><span class="acronym">scope notified</span></acronym>]</span></td>
406 </tr>
407 <tr>
408 <td class="parameter_name"><p>user_data</p></td>
409 <td class="parameter_description"><p> data to be passed to <em class="parameter"><code>callback</code></em>
410 . </p></td>
411 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
412 </tr>
413 <tr>
414 <td class="parameter_name"><p>error</p></td>
415 <td class="parameter_description"><p><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> for error reporting, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to ignore.</p></td>
416 <td class="parameter_annotations"> </td>
417 </tr>
418 </tbody>
419 </table></div>
420 </div>
421 <div class="refsect3">
422 <a name="id-1.2.13.8.7.6"></a><h4>Returns</h4>
423 <p> the number of bytes consumed or -1 upon error</p>
424 <p></p>
425 </div>
426 </div>
427 <hr>
428 <div class="refsect2">
429 <a name="gvir-stream-receive"></a><h3>gvir_stream_receive ()</h3>
430 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gssize"><span class="returnvalue">gssize</span></a>
431 gvir_stream_receive (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
432 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *buffer</code></em>,
433 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> size</code></em>,
434 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
435 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
436 <p>Receive data (up to <em class="parameter"><code>size</code></em>
437 bytes) from a stream.
438 On error -1 is returned and <em class="parameter"><code>error</code></em>
439 is set accordingly.</p>
440 <p>gvir_stream_receive() can return any number of bytes, up to
441 <em class="parameter"><code>size</code></em>
442 . If more than <em class="parameter"><code>size</code></em>
443 bytes have been received, the additional
444 data will be returned in future calls to <a class="link" href="GVirStream.html#gvir-stream-receive" title="gvir_stream_receive ()"><code class="function">gvir_stream_receive()</code></a>.</p>
445 <p>If there is no data available, a <code class="literal">G_IO_ERROR_WOULD_BLOCK</code> error will be
446 returned.</p>
447 <div class="refsect3">
448 <a name="id-1.2.13.8.8.7"></a><h4>Parameters</h4>
449 <div class="informaltable"><table width="100%" border="0">
450 <colgroup>
451 <col width="150px" class="parameters_name">
452 <col class="parameters_description">
453 <col width="200px" class="parameters_annotations">
454 </colgroup>
455 <tbody>
456 <tr>
457 <td class="parameter_name"><p>stream</p></td>
458 <td class="parameter_description"><p>the stream</p></td>
459 <td class="parameter_annotations"> </td>
460 </tr>
461 <tr>
462 <td class="parameter_name"><p>buffer</p></td>
463 <td class="parameter_description"><p> a buffer
464 to read data into (which should be at least <em class="parameter"><code>size</code></em>
465 bytes long). </p></td>
466 <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=size][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> guint8]</span></td>
467 </tr>
468 <tr>
469 <td class="parameter_name"><p>size</p></td>
470 <td class="parameter_description"><p>the number of bytes you want to read from the stream</p></td>
471 <td class="parameter_annotations"> </td>
472 </tr>
473 <tr>
474 <td class="parameter_name"><p>cancellable</p></td>
475 <td class="parameter_description"><p> a <a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><code class="literal">GCancellable</code></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
476 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
477 </tr>
478 <tr>
479 <td class="parameter_name"><p>error</p></td>
480 <td class="parameter_description"><p><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> for error reporting, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to ignore.</p></td>
481 <td class="parameter_annotations"> </td>
482 </tr>
483 </tbody>
484 </table></div>
485 </div>
486 <div class="refsect3">
487 <a name="id-1.2.13.8.8.8"></a><h4>Returns</h4>
488 <p> Number of bytes read, or 0 if the end of stream reached,
489 or -1 on error.</p>
490 <p></p>
491 </div>
492 </div>
493 <hr>
494 <div class="refsect2">
495 <a name="gvir-stream-send-all"></a><h3>gvir_stream_send_all ()</h3>
496 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gssize"><span class="returnvalue">gssize</span></a>
497 gvir_stream_send_all (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
498 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
499 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamSourceFunc" title="GVirStreamSourceFunc ()"><span class="type">GVirStreamSourceFunc</span></a> func</code></em>,
500 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
501 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
502 <p>Send the entire data stream, sending the data to the
503 requested data source. This is simply a convenient alternative
504 to virStreamRecv, for apps that do blocking-I/o.</p>
505 <div class="refsect3">
506 <a name="id-1.2.13.8.9.5"></a><h4>Parameters</h4>
507 <div class="informaltable"><table width="100%" border="0">
508 <colgroup>
509 <col width="150px" class="parameters_name">
510 <col class="parameters_description">
511 <col width="200px" class="parameters_annotations">
512 </colgroup>
513 <tbody>
514 <tr>
515 <td class="parameter_name"><p>stream</p></td>
516 <td class="parameter_description"><p>the stream</p></td>
517 <td class="parameter_annotations"> </td>
518 </tr>
519 <tr>
520 <td class="parameter_name"><p>cancellable</p></td>
521 <td class="parameter_description"><p>cancellation notifier</p></td>
522 <td class="parameter_annotations"> </td>
523 </tr>
524 <tr>
525 <td class="parameter_name"><p>func</p></td>
526 <td class="parameter_description"><p> the callback for writing data to application. </p></td>
527 <td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until the GDestroyNotify argument is called."><span class="acronym">scope notified</span></acronym>]</span></td>
528 </tr>
529 <tr>
530 <td class="parameter_name"><p>user_data</p></td>
531 <td class="parameter_description"><p> data to be passed to <em class="parameter"><code>callback</code></em>
532 . </p></td>
533 <td class="parameter_annotations"><span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span></td>
534 </tr>
535 <tr>
536 <td class="parameter_name"><p>error</p></td>
537 <td class="parameter_description"><p><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> for error reporting, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to ignore.</p></td>
538 <td class="parameter_annotations"> </td>
539 </tr>
540 </tbody>
541 </table></div>
542 </div>
543 <div class="refsect3">
544 <a name="id-1.2.13.8.9.6"></a><h4>Returns</h4>
545 <p> the number of bytes consumed or -1 upon error</p>
546 <p></p>
547 </div>
548 </div>
549 <hr>
550 <div class="refsect2">
551 <a name="gvir-stream-send"></a><h3>gvir_stream_send ()</h3>
552 <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gssize"><span class="returnvalue">gssize</span></a>
553 gvir_stream_send (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
554 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *buffer</code></em>,
555 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> size</code></em>,
556 <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><span class="type">GCancellable</span></a> *cancellable</code></em>,
557 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
558 <p>Send data (up to <em class="parameter"><code>size</code></em>
559 bytes) from a stream.
560 On error -1 is returned and <em class="parameter"><code>error</code></em>
561 is set accordingly.</p>
562 <p>gvir_stream_send() can return any number of bytes, up to
563 <em class="parameter"><code>size</code></em>
564 . If more than <em class="parameter"><code>size</code></em>
565 bytes have been sendd, the additional
566 data will be returned in future calls to <a class="link" href="GVirStream.html#gvir-stream-send" title="gvir_stream_send ()"><code class="function">gvir_stream_send()</code></a>.</p>
567 <p>If there is no data available, a <code class="literal">G_IO_ERROR_WOULD_BLOCK</code> error will be
568 returned.</p>
569 <div class="refsect3">
570 <a name="id-1.2.13.8.10.7"></a><h4>Parameters</h4>
571 <div class="informaltable"><table width="100%" border="0">
572 <colgroup>
573 <col width="150px" class="parameters_name">
574 <col class="parameters_description">
575 <col width="200px" class="parameters_annotations">
576 </colgroup>
577 <tbody>
578 <tr>
579 <td class="parameter_name"><p>stream</p></td>
580 <td class="parameter_description"><p>the stream</p></td>
581 <td class="parameter_annotations"> </td>
582 </tr>
583 <tr>
584 <td class="parameter_name"><p>buffer</p></td>
585 <td class="parameter_description"><p>a buffer to write data from (which should be at least <em class="parameter"><code>size</code></em>
586 bytes long).</p></td>
587 <td class="parameter_annotations"> </td>
588 </tr>
589 <tr>
590 <td class="parameter_name"><p>size</p></td>
591 <td class="parameter_description"><p>the number of bytes you want to write to the stream</p></td>
592 <td class="parameter_annotations"> </td>
593 </tr>
594 <tr>
595 <td class="parameter_name"><p>cancellable</p></td>
596 <td class="parameter_description"><p> a <a href="http://library.gnome.org/devel/gio/unstable/GCancellable.html"><code class="literal">GCancellable</code></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
597 <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
598 </tr>
599 <tr>
600 <td class="parameter_name"><p>error</p></td>
601 <td class="parameter_description"><p><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> for error reporting, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to ignore.</p></td>
602 <td class="parameter_annotations"> </td>
603 </tr>
604 </tbody>
605 </table></div>
606 </div>
607 <div class="refsect3">
608 <a name="id-1.2.13.8.10.8"></a><h4>Returns</h4>
609 <p> Number of bytes written.</p>
610 <p></p>
611 </div>
612 </div>
613 </div>
614 <div class="refsect1">
615 <a name="GVirStream.other_details"></a><h2>Types and Values</h2>
201616 <div class="refsect2">
202617 <a name="GVirStreamIOCondition"></a><h3>enum GVirStreamIOCondition</h3>
203 <pre class="programlisting">typedef enum {
204 GVIR_STREAM_IO_CONDITION_READABLE = (1 &lt;&lt; 0),
205 GVIR_STREAM_IO_CONDITION_WRITABLE = (1 &lt;&lt; 1),
206 GVIR_STREAM_IO_CONDITION_HANGUP = (1 &lt;&lt; 2),
207 GVIR_STREAM_IO_CONDITION_ERROR = (1 &lt;&lt; 3),
208 } GVirStreamIOCondition;
209 </pre>
210 <div class="variablelist"><table border="0" class="variablelist">
211 <colgroup>
212 <col align="left" valign="top">
213 <col>
214 </colgroup>
215 <tbody>
216 <tr>
217 <td><p><a name="GVIR-STREAM-IO-CONDITION-READABLE:CAPS"></a><span class="term"><code class="literal">GVIR_STREAM_IO_CONDITION_READABLE</code></span></p></td>
218 <td></td>
219 </tr>
220 <tr>
221 <td><p><a name="GVIR-STREAM-IO-CONDITION-WRITABLE:CAPS"></a><span class="term"><code class="literal">GVIR_STREAM_IO_CONDITION_WRITABLE</code></span></p></td>
222 <td></td>
223 </tr>
224 <tr>
225 <td><p><a name="GVIR-STREAM-IO-CONDITION-HANGUP:CAPS"></a><span class="term"><code class="literal">GVIR_STREAM_IO_CONDITION_HANGUP</code></span></p></td>
226 <td></td>
227 </tr>
228 <tr>
229 <td><p><a name="GVIR-STREAM-IO-CONDITION-ERROR:CAPS"></a><span class="term"><code class="literal">GVIR_STREAM_IO_CONDITION_ERROR</code></span></p></td>
230 <td></td>
231 </tr>
232 </tbody>
233 </table></div>
234 </div>
235 <hr>
236 <div class="refsect2">
237 <a name="GVirStreamIOFunc"></a><h3>GVirStreamIOFunc ()</h3>
238 <pre class="programlisting"><span class="returnvalue">gboolean</span> (*GVirStreamIOFunc) (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
239 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition"><span class="type">GVirStreamIOCondition</span></a> cond</code></em>,
240 <em class="parameter"><code><span class="type">gpointer</span> opaque</code></em>);</pre>
241 </div>
242 <hr>
243 <div class="refsect2">
244 <a name="gvir-stream-add-watch"></a><h3>gvir_stream_add_watch ()</h3>
245 <pre class="programlisting"><span class="returnvalue">guint</span> gvir_stream_add_watch (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
246 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition"><span class="type">GVirStreamIOCondition</span></a> cond</code></em>,
247 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOFunc" title="GVirStreamIOFunc ()"><span class="type">GVirStreamIOFunc</span></a> func</code></em>,
248 <em class="parameter"><code><span class="type">gpointer</span> opaque</code></em>);</pre>
249 <p>
250 Adds a watch for <em class="parameter"><code>stream</code></em> to the mainloop
251 </p>
252 <div class="variablelist"><table border="0" class="variablelist">
253 <colgroup>
254 <col align="left" valign="top">
255 <col>
256 </colgroup>
257 <tbody>
258 <tr>
259 <td><p><span class="term"><em class="parameter"><code>stream</code></em> :</span></p></td>
260 <td>the stream</td>
261 </tr>
262 <tr>
263 <td><p><span class="term"><em class="parameter"><code>cond</code></em> :</span></p></td>
264 <td>the conditions to watch for (bitfield of <a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition"><span class="type">GVirStreamIOCondition</span></a>)</td>
265 </tr>
266 <tr>
267 <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
268 <td>the function to call when the condition is satisfied. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym> opaque]</span>
269 </td>
270 </tr>
271 <tr>
272 <td><p><span class="term"><em class="parameter"><code>opaque</code></em> :</span></p></td>
273 <td>user data to pass to <em class="parameter"><code>func</code></em>. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
274 </td>
275 </tr>
276 <tr>
277 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
278 <td>the event source id</td>
279 </tr>
280 </tbody>
281 </table></div>
282 </div>
283 <hr>
284 <div class="refsect2">
285 <a name="gvir-stream-add-watch-full"></a><h3>gvir_stream_add_watch_full ()</h3>
286 <pre class="programlisting"><span class="returnvalue">guint</span> gvir_stream_add_watch_full (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
287 <em class="parameter"><code><span class="type">gint</span> priority</code></em>,
288 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition"><span class="type">GVirStreamIOCondition</span></a> cond</code></em>,
289 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamIOFunc" title="GVirStreamIOFunc ()"><span class="type">GVirStreamIOFunc</span></a> func</code></em>,
290 <em class="parameter"><code><span class="type">gpointer</span> opaque</code></em>,
291 <em class="parameter"><code><span class="type">GDestroyNotify</span> notify</code></em>);</pre>
292 <p>
293 Adds a watch for <em class="parameter"><code>stream</code></em> to the mainloop
294 </p>
295 <div class="variablelist"><table border="0" class="variablelist">
296 <colgroup>
297 <col align="left" valign="top">
298 <col>
299 </colgroup>
300 <tbody>
301 <tr>
302 <td><p><span class="term"><em class="parameter"><code>stream</code></em> :</span></p></td>
303 <td>the stream</td>
304 </tr>
305 <tr>
306 <td><p><span class="term"><em class="parameter"><code>priority</code></em> :</span></p></td>
307 <td>the priority of the <a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> source</td>
308 </tr>
309 <tr>
310 <td><p><span class="term"><em class="parameter"><code>cond</code></em> :</span></p></td>
311 <td>the conditions to watch for (bitfield of <a class="link" href="GVirStream.html#GVirStreamIOCondition" title="enum GVirStreamIOCondition"><span class="type">GVirStreamIOCondition</span></a>)</td>
312 </tr>
313 <tr>
314 <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
315 <td>the function to call when the condition is satisfied. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym> opaque]</span>
316 </td>
317 </tr>
318 <tr>
319 <td><p><span class="term"><em class="parameter"><code>opaque</code></em> :</span></p></td>
320 <td>user data to pass to <em class="parameter"><code>func</code></em>. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
321 </td>
322 </tr>
323 <tr>
324 <td><p><span class="term"><em class="parameter"><code>notify</code></em> :</span></p></td>
325 <td>the function to call when the source is removed</td>
326 </tr>
327 <tr>
328 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
329 <td>the event source id
330 Rename to: gvir_stream_add_watch</td>
331 </tr>
332 </tbody>
333 </table></div>
334 </div>
335 <hr>
336 <div class="refsect2">
337 <a name="gvir-stream-receive-all"></a><h3>gvir_stream_receive_all ()</h3>
338 <pre class="programlisting"><span class="returnvalue">gssize</span> gvir_stream_receive_all (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
339 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
340 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamSinkFunc" title="GVirStreamSinkFunc ()"><span class="type">GVirStreamSinkFunc</span></a> func</code></em>,
341 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
342 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
343 <p>
344 Receive the entire data stream, sending the data to the
345 requested data sink. This is simply a convenient alternative
346 to virStreamRecv, for apps that do blocking-I/o.
347 </p>
348 <div class="variablelist"><table border="0" class="variablelist">
349 <colgroup>
350 <col align="left" valign="top">
351 <col>
352 </colgroup>
353 <tbody>
354 <tr>
355 <td><p><span class="term"><em class="parameter"><code>stream</code></em> :</span></p></td>
356 <td>the stream</td>
357 </tr>
358 <tr>
359 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
360 <td>cancellation notifier</td>
361 </tr>
362 <tr>
363 <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
364 <td>the callback for writing data to application. <span class="annotation">[<acronym title="The callback is valid until the GDestroyNotify argument is called."><span class="acronym">scope notified</span></acronym>]</span>
365 </td>
366 </tr>
367 <tr>
368 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
369 <td>data to be passed to <em class="parameter"><code>callback</code></em>. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
370 </td>
371 </tr>
372 <tr>
373 <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
374 <td>
375 <span class="type">GError</span> for error reporting, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL:CAPS"><code class="literal">NULL</code></a> to ignore.</td>
376 </tr>
377 <tr>
378 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
379 <td>the number of bytes consumed or -1 upon error</td>
380 </tr>
381 </tbody>
382 </table></div>
383 </div>
384 <hr>
385 <div class="refsect2">
386 <a name="gvir-stream-receive"></a><h3>gvir_stream_receive ()</h3>
387 <pre class="programlisting"><span class="returnvalue">gssize</span> gvir_stream_receive (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
388 <em class="parameter"><code><span class="type">gchar</span> *buffer</code></em>,
389 <em class="parameter"><code><span class="type">gsize</span> size</code></em>,
390 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
391 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
392 <p>
393 Receive data (up to <em class="parameter"><code>size</code></em> bytes) from a stream.
394 On error -1 is returned and <em class="parameter"><code>error</code></em> is set accordingly.
395 </p>
396 <p>
397 <a class="link" href="GVirStream.html#gvir-stream-receive" title="gvir_stream_receive ()"><code class="function">gvir_stream_receive()</code></a> can return any number of bytes, up to
398 <em class="parameter"><code>size</code></em>. If more than <em class="parameter"><code>size</code></em> bytes have been received, the additional
399 data will be returned in future calls to <a class="link" href="GVirStream.html#gvir-stream-receive" title="gvir_stream_receive ()"><code class="function">gvir_stream_receive()</code></a>.
400 </p>
401 <p>
402 If there is no data available, a <code class="literal">G_IO_ERROR_WOULD_BLOCK</code> error will be
403 returned.
404 </p>
405 <div class="variablelist"><table border="0" class="variablelist">
406 <colgroup>
407 <col align="left" valign="top">
408 <col>
409 </colgroup>
410 <tbody>
411 <tr>
412 <td><p><span class="term"><em class="parameter"><code>stream</code></em> :</span></p></td>
413 <td>the stream</td>
414 </tr>
415 <tr>
416 <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
417 <td>a buffer
418 to read data into (which should be at least <em class="parameter"><code>size</code></em> bytes long). <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=size][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> guint8]</span>
419 </td>
420 </tr>
421 <tr>
422 <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
423 <td>the number of bytes you want to read from the stream</td>
424 </tr>
425 <tr>
426 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
427 <td>a <code class="literal">GCancellable</code> or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
428 </td>
429 </tr>
430 <tr>
431 <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
432 <td>
433 <span class="type">GError</span> for error reporting, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL:CAPS"><code class="literal">NULL</code></a> to ignore.</td>
434 </tr>
435 <tr>
436 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
437 <td>Number of bytes read, or 0 if the end of stream reached,
438 or -1 on error.</td>
439 </tr>
440 </tbody>
441 </table></div>
442 </div>
443 <hr>
444 <div class="refsect2">
445 <a name="gvir-stream-send-all"></a><h3>gvir_stream_send_all ()</h3>
446 <pre class="programlisting"><span class="returnvalue">gssize</span> gvir_stream_send_all (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
447 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
448 <em class="parameter"><code><a class="link" href="GVirStream.html#GVirStreamSourceFunc" title="GVirStreamSourceFunc ()"><span class="type">GVirStreamSourceFunc</span></a> func</code></em>,
449 <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
450 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
451 <p>
452 Send the entire data stream, sending the data to the
453 requested data source. This is simply a convenient alternative
454 to virStreamRecv, for apps that do blocking-I/o.
455 </p>
456 <div class="variablelist"><table border="0" class="variablelist">
457 <colgroup>
458 <col align="left" valign="top">
459 <col>
460 </colgroup>
461 <tbody>
462 <tr>
463 <td><p><span class="term"><em class="parameter"><code>stream</code></em> :</span></p></td>
464 <td>the stream</td>
465 </tr>
466 <tr>
467 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
468 <td>cancellation notifier</td>
469 </tr>
470 <tr>
471 <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
472 <td>the callback for writing data to application. <span class="annotation">[<acronym title="The callback is valid until the GDestroyNotify argument is called."><span class="acronym">scope notified</span></acronym>]</span>
473 </td>
474 </tr>
475 <tr>
476 <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
477 <td>data to be passed to <em class="parameter"><code>callback</code></em>. <span class="annotation">[<acronym title="This parameter is a 'user_data', for callbacks; many bindings can pass NULL here."><span class="acronym">closure</span></acronym>]</span>
478 </td>
479 </tr>
480 <tr>
481 <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
482 <td>
483 <span class="type">GError</span> for error reporting, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL:CAPS"><code class="literal">NULL</code></a> to ignore.</td>
484 </tr>
485 <tr>
486 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
487 <td>the number of bytes consumed or -1 upon error</td>
488 </tr>
489 </tbody>
490 </table></div>
491 </div>
492 <hr>
493 <div class="refsect2">
494 <a name="gvir-stream-send"></a><h3>gvir_stream_send ()</h3>
495 <pre class="programlisting"><span class="returnvalue">gssize</span> gvir_stream_send (<em class="parameter"><code><a class="link" href="GVirStream.html" title="GVirStream"><span class="type">GVirStream</span></a> *stream</code></em>,
496 <em class="parameter"><code>const <span class="type">gchar</span> *buffer</code></em>,
497 <em class="parameter"><code><span class="type">gsize</span> size</code></em>,
498 <em class="parameter"><code><span class="type">GCancellable</span> *cancellable</code></em>,
499 <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
500 <p>
501 Send data (up to <em class="parameter"><code>size</code></em> bytes) from a stream.
502 On error -1 is returned and <em class="parameter"><code>error</code></em> is set accordingly.
503 </p>
504 <p>
505 <a class="link" href="GVirStream.html#gvir-stream-send" title="gvir_stream_send ()"><code class="function">gvir_stream_send()</code></a> can return any number of bytes, up to
506 <em class="parameter"><code>size</code></em>. If more than <em class="parameter"><code>size</code></em> bytes have been sendd, the additional
507 data will be returned in future calls to <a class="link" href="GVirStream.html#gvir-stream-send" title="gvir_stream_send ()"><code class="function">gvir_stream_send()</code></a>.
508 </p>
509 <p>
510 If there is no data available, a <code class="literal">G_IO_ERROR_WOULD_BLOCK</code> error will be
511 returned.
512 </p>
513 <div class="variablelist"><table border="0" class="variablelist">
514 <colgroup>
515 <col align="left" valign="top">
516 <col>
517 </colgroup>
518 <tbody>
519 <tr>
520 <td><p><span class="term"><em class="parameter"><code>stream</code></em> :</span></p></td>
521 <td>the stream</td>
522 </tr>
523 <tr>
524 <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
525 <td>a buffer to write data from (which should be at least <em class="parameter"><code>size</code></em>
526 bytes long).</td>
527 </tr>
528 <tr>
529 <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
530 <td>the number of bytes you want to write to the stream</td>
531 </tr>
532 <tr>
533 <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td>
534 <td>a <code class="literal">GCancellable</code> or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
535 </td>
536 </tr>
537 <tr>
538 <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
539 <td>
540 <span class="type">GError</span> for error reporting, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL:CAPS"><code class="literal">NULL</code></a> to ignore.</td>
541 </tr>
542 <tr>
543 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
544 <td>Number of bytes written.</td>
545 </tr>
546 </tbody>
547 </table></div>
618 <div class="refsect3">
619 <a name="id-1.2.13.9.2.3"></a><h4>Members</h4>
620 <div class="informaltable"><table width="100%" border="0">
621 <colgroup>
622 <col width="300px" class="enum_members_name">
623 <col class="enum_members_description">
624 <col width="200px" class="enum_members_annotations">
625 </colgroup>
626 <tbody>
627 <tr>
628 <td class="enum_member_name"><p><a name="GVIR-STREAM-IO-CONDITION-READABLE:CAPS"></a>GVIR_STREAM_IO_CONDITION_READABLE</p></td>
629 <td> </td>
630 <td> </td>
631 </tr>
632 <tr>
633 <td class="enum_member_name"><p><a name="GVIR-STREAM-IO-CONDITION-WRITABLE:CAPS"></a>GVIR_STREAM_IO_CONDITION_WRITABLE</p></td>
634 <td> </td>
635 <td> </td>
636 </tr>
637 <tr>
638 <td class="enum_member_name"><p><a name="GVIR-STREAM-IO-CONDITION-HANGUP:CAPS"></a>GVIR_STREAM_IO_CONDITION_HANGUP</p></td>
639 <td> </td>
640 <td> </td>
641 </tr>
642 <tr>
643 <td class="enum_member_name"><p><a name="GVIR-STREAM-IO-CONDITION-ERROR:CAPS"></a>GVIR_STREAM_IO_CONDITION_ERROR</p></td>
644 <td> </td>
645 <td> </td>
646 </tr>
647 </tbody>
648 </table></div>
649 </div>
548650 </div>
549651 </div>
550652 <div class="refsect1">
551653 <a name="GVirStream.property-details"></a><h2>Property Details</h2>
552654 <div class="refsect2">
553 <a name="GVirStream--handle"></a><h3>The <code class="literal">"handle"</code> property</h3>
554 <pre class="programlisting"> "handle" <span class="type">GVirStreamHandle</span>* : Read / Write / Construct Only</pre>
655 <a name="GVirStream--handle"></a><h3>The <code class="literal">“handle”</code> property</h3>
656 <pre class="programlisting"> “handle” <span class="type">GVirStreamHandle</span> *</pre>
555657 <p>The stream handle.</p>
658 <p>Flags: Read / Write / Construct Only</p>
556659 </div>
557660 </div>
558661 </div>
559662 <div class="footer">
560663 <hr>
561 Generated by GTK-Doc V1.19</div>
664 Generated by GTK-Doc V1.21</div>
562665 </body>
563666 </html>
+0
-136
docs/libvirt-gobject/html/Libvirt-gobject-GVir.html less more
0 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>GVir</title>
5 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
6 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
7 <link rel="up" href="ch01.html" title="Libvirt-gobject">
8 <link rel="prev" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">
9 <link rel="next" href="GVirManager.html" title="GVirManager">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
11 <link rel="stylesheet" href="style.css" type="text/css">
12 </head>
13 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="GVirDomainSnapshot.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gobject Reference Manual</th>
20 <td><a accesskey="n" href="GVirManager.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a href="#Libvirt-gobject-GVir.synopsis" class="shortcut">Top</a>
24  | 
25 <a href="#Libvirt-gobject-GVir.description" class="shortcut">Description</a>
26  | 
27 <a href="#Libvirt-gobject-GVir.object-hierarchy" class="shortcut">Object Hierarchy</a>
28  | 
29 <a href="#Libvirt-gobject-GVir.properties" class="shortcut">Properties</a>
30 </td></tr>
31 </table>
32 <div class="refentry">
33 <a name="Libvirt-gobject-GVir"></a><div class="titlepage"></div>
34 <div class="refnamediv"><table width="100%"><tr>
35 <td valign="top">
36 <h2><span class="refentrytitle"><a name="Libvirt-gobject-GVir.top_of_page"></a>GVir</span></h2>
37 <p>GVir</p>
38 </td>
39 <td valign="top" align="right"></td>
40 </tr></table></div>
41 <div class="refsynopsisdiv">
42 <a name="Libvirt-gobject-GVir.synopsis"></a><h2>Synopsis</h2>
43 <a name="GVirInterface"></a><pre class="synopsis">struct <a class="link" href="Libvirt-gobject-GVir.html#GVirInterface-struct" title="struct GVirInterface">GVirInterface</a>;
44 struct <a class="link" href="Libvirt-gobject-GVir.html#GVirInterfaceClass" title="struct GVirInterfaceClass">GVirInterfaceClass</a>;
45 const <span class="returnvalue">gchar</span> * <a class="link" href="Libvirt-gobject-GVir.html#gvir-interface-get-name" title="gvir_interface_get_name ()">gvir_interface_get_name</a> (<em class="parameter"><code><a class="link" href="Libvirt-gobject-GVir.html#GVirInterface"><span class="type">GVirInterface</span></a> *iface</code></em>);
46 <a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigInterface.html"><span class="returnvalue">GVirConfigInterface</span></a> * <a class="link" href="Libvirt-gobject-GVir.html#gvir-interface-get-config" title="gvir_interface_get_config ()">gvir_interface_get_config</a> (<em class="parameter"><code><a class="link" href="Libvirt-gobject-GVir.html#GVirInterface"><span class="type">GVirInterface</span></a> *iface</code></em>,
47 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
48 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);
49 </pre>
50 </div>
51 <div class="refsect1">
52 <a name="Libvirt-gobject-GVir.object-hierarchy"></a><h2>Object Hierarchy</h2>
53 <pre class="synopsis">
54 GObject
55 +----GVirInterface
56 </pre>
57 </div>
58 <div class="refsect1">
59 <a name="Libvirt-gobject-GVir.properties"></a><h2>Properties</h2>
60 <pre class="synopsis">
61 "<a class="link" href="Libvirt-gobject-GVir.html#GVirInterface--handle" title='The "handle" property'>handle</a>" <span class="type">GVirInterfaceHandle</span>* : Read / Write / Construct Only
62 </pre>
63 </div>
64 <div class="refsect1">
65 <a name="Libvirt-gobject-GVir.description"></a><h2>Description</h2>
66 </div>
67 <div class="refsect1">
68 <a name="Libvirt-gobject-GVir.details"></a><h2>Details</h2>
69 <div class="refsect2">
70 <a name="GVirInterface-struct"></a><h3>struct GVirInterface</h3>
71 <pre class="programlisting">struct GVirInterface;</pre>
72 </div>
73 <hr>
74 <div class="refsect2">
75 <a name="GVirInterfaceClass"></a><h3>struct GVirInterfaceClass</h3>
76 <pre class="programlisting">struct GVirInterfaceClass {
77 GObjectClass parent_class;
78
79 gpointer padding[20];
80 };
81 </pre>
82 </div>
83 <hr>
84 <div class="refsect2">
85 <a name="gvir-interface-get-name"></a><h3>gvir_interface_get_name ()</h3>
86 <pre class="programlisting">const <span class="returnvalue">gchar</span> * gvir_interface_get_name (<em class="parameter"><code><a class="link" href="Libvirt-gobject-GVir.html#GVirInterface"><span class="type">GVirInterface</span></a> *iface</code></em>);</pre>
87 </div>
88 <hr>
89 <div class="refsect2">
90 <a name="gvir-interface-get-config"></a><h3>gvir_interface_get_config ()</h3>
91 <pre class="programlisting"><a href="/usr/share/gtk-doc/html/Libvirt-gconfig/GVirConfigInterface.html"><span class="returnvalue">GVirConfigInterface</span></a> * gvir_interface_get_config (<em class="parameter"><code><a class="link" href="Libvirt-gobject-GVir.html#GVirInterface"><span class="type">GVirInterface</span></a> *iface</code></em>,
92 <em class="parameter"><code><span class="type">guint</span> flags</code></em>,
93 <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
94 <div class="variablelist"><table border="0" class="variablelist">
95 <colgroup>
96 <col align="left" valign="top">
97 <col>
98 </colgroup>
99 <tbody>
100 <tr>
101 <td><p><span class="term"><em class="parameter"><code>iface</code></em> :</span></p></td>
102 <td>the interface</td>
103 </tr>
104 <tr>
105 <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
106 <td>the flags</td>
107 </tr>
108 <tr>
109 <td><p><span class="term"><em class="parameter"><code>err</code></em> :</span></p></td>
110 <td>Place-holder for possible errors</td>
111 </tr>
112 <tr>
113 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
114 <td>the config. The returned object should be
115 unreffed with <code class="function">g_object_unref()</code> when no longer needed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
116 </td>
117 </tr>
118 </tbody>
119 </table></div>
120 </div>
121 </div>
122 <div class="refsect1">
123 <a name="Libvirt-gobject-GVir.property-details"></a><h2>Property Details</h2>
124 <div class="refsect2">
125 <a name="GVirInterface--handle"></a><h3>The <code class="literal">"handle"</code> property</h3>
126 <pre class="programlisting"> "handle" <span class="type">GVirInterfaceHandle</span>* : Read / Write / Construct Only</pre>
127 <p>The interface handle.</p>
128 </div>
129 </div>
130 </div>
131 <div class="footer">
132 <hr>
133 Generated by GTK-Doc V1.19</div>
134 </body>
135 </html>
55 <sub name="GVirConnection" link="GVirConnection.html"/>
66 <sub name="GVirDomain" link="GVirDomain.html"/>
77 <sub name="GVirDomainSnapshot" link="GVirDomainSnapshot.html"/>
8 <sub name="GVir" link="Libvirt-gobject-GVir.html"/>
8 <sub name="GVirInterface" link="GVirInterface.html"/>
99 <sub name="GVirManager" link="GVirManager.html"/>
1010 <sub name="GVirNetworkFilter" link="GVirNetworkFilter.html"/>
1111 <sub name="GVirNetwork" link="GVirNetwork.html"/>
2020 <sub name="Annotation Glossary" link="annotation-glossary.html"/>
2121 </chapters>
2222 <functions>
23 <keyword type="struct" name="struct GVirNodeInfo" link="GVirConnection.html#GVirNodeInfo-struct"/>
24 <keyword type="struct" name="struct GVirConnection" link="GVirConnection.html#GVirConnection-struct"/>
25 <keyword type="struct" name="struct GVirConnectionClass" link="GVirConnection.html#GVirConnectionClass"/>
26 <keyword type="function" name="gvir_connection_new ()" link="GVirConnection.html#gvir-connection-new"/>
27 <keyword type="function" name="gvir_connection_open ()" link="GVirConnection.html#gvir-connection-open"/>
28 <keyword type="function" name="gvir_connection_open_read_only ()" link="GVirConnection.html#gvir-connection-open-read-only"/>
29 <keyword type="function" name="gvir_connection_open_async ()" link="GVirConnection.html#gvir-connection-open-async"/>
30 <keyword type="function" name="gvir_connection_open_finish ()" link="GVirConnection.html#gvir-connection-open-finish"/>
31 <keyword type="function" name="gvir_connection_open_read_only_async ()" link="GVirConnection.html#gvir-connection-open-read-only-async"/>
32 <keyword type="function" name="gvir_connection_open_read_only_finish ()" link="GVirConnection.html#gvir-connection-open-read-only-finish"/>
33 <keyword type="function" name="gvir_connection_is_open ()" link="GVirConnection.html#gvir-connection-is-open"/>
34 <keyword type="function" name="gvir_connection_is_read_only ()" link="GVirConnection.html#gvir-connection-is-read-only"/>
35 <keyword type="function" name="gvir_connection_close ()" link="GVirConnection.html#gvir-connection-close"/>
36 <keyword type="function" name="gvir_connection_fetch_domains ()" link="GVirConnection.html#gvir-connection-fetch-domains"/>
37 <keyword type="function" name="gvir_connection_fetch_domains_async ()" link="GVirConnection.html#gvir-connection-fetch-domains-async"/>
38 <keyword type="function" name="gvir_connection_fetch_domains_finish ()" link="GVirConnection.html#gvir-connection-fetch-domains-finish"/>
39 <keyword type="function" name="gvir_connection_get_uri ()" link="GVirConnection.html#gvir-connection-get-uri"/>
40 <keyword type="function" name="gvir_connection_get_hypervisor_name ()" link="GVirConnection.html#gvir-connection-get-hypervisor-name"/>
41 <keyword type="function" name="gvir_connection_get_version ()" link="GVirConnection.html#gvir-connection-get-version"/>
42 <keyword type="function" name="gvir_connection_get_domains ()" link="GVirConnection.html#gvir-connection-get-domains"/>
43 <keyword type="function" name="gvir_connection_get_domain ()" link="GVirConnection.html#gvir-connection-get-domain"/>
44 <keyword type="function" name="gvir_connection_find_domain_by_id ()" link="GVirConnection.html#gvir-connection-find-domain-by-id"/>
45 <keyword type="function" name="gvir_connection_find_domain_by_name ()" link="GVirConnection.html#gvir-connection-find-domain-by-name"/>
46 <keyword type="function" name="gvir_connection_create_domain ()" link="GVirConnection.html#gvir-connection-create-domain"/>
47 <keyword type="function" name="gvir_connection_start_domain ()" link="GVirConnection.html#gvir-connection-start-domain"/>
48 <keyword type="function" name="gvir_connection_get_interfaces ()" link="GVirConnection.html#gvir-connection-get-interfaces"/>
49 <keyword type="function" name="gvir_connection_get_interface ()" link="GVirConnection.html#gvir-connection-get-interface"/>
50 <keyword type="function" name="gvir_connection_find_interface_by_mac ()" link="GVirConnection.html#gvir-connection-find-interface-by-mac"/>
51 <keyword type="function" name="gvir_connection_get_networks ()" link="GVirConnection.html#gvir-connection-get-networks"/>
52 <keyword type="function" name="gvir_connection_get_network ()" link="GVirConnection.html#gvir-connection-get-network"/>
53 <keyword type="function" name="gvir_connection_find_network_by_name ()" link="GVirConnection.html#gvir-connection-find-network-by-name"/>
54 <keyword type="function" name="gvir_connection_get_network_filters ()" link="GVirConnection.html#gvir-connection-get-network-filters"/>
55 <keyword type="function" name="gvir_connection_get_network_filter ()" link="GVirConnection.html#gvir-connection-get-network-filter"/>
56 <keyword type="function" name="gvir_connection_find_network_filter_by_name ()" link="GVirConnection.html#gvir-connection-find-network-filter-by-name"/>
57 <keyword type="function" name="gvir_connection_get_node_devices ()" link="GVirConnection.html#gvir-connection-get-node-devices"/>
58 <keyword type="function" name="gvir_connection_get_node_device ()" link="GVirConnection.html#gvir-connection-get-node-device"/>
59 <keyword type="function" name="gvir_connection_get_secrets ()" link="GVirConnection.html#gvir-connection-get-secrets"/>
60 <keyword type="function" name="gvir_connection_get_secret ()" link="GVirConnection.html#gvir-connection-get-secret"/>
61 <keyword type="function" name="gvir_connection_fetch_storage_pools ()" link="GVirConnection.html#gvir-connection-fetch-storage-pools"/>
62 <keyword type="function" name="gvir_connection_fetch_storage_pools_async ()" link="GVirConnection.html#gvir-connection-fetch-storage-pools-async"/>
63 <keyword type="function" name="gvir_connection_fetch_storage_pools_finish ()" link="GVirConnection.html#gvir-connection-fetch-storage-pools-finish"/>
64 <keyword type="function" name="gvir_connection_get_storage_pools ()" link="GVirConnection.html#gvir-connection-get-storage-pools"/>
65 <keyword type="function" name="gvir_connection_get_storage_pool ()" link="GVirConnection.html#gvir-connection-get-storage-pool"/>
66 <keyword type="function" name="gvir_connection_find_storage_pool_by_name ()" link="GVirConnection.html#gvir-connection-find-storage-pool-by-name"/>
67 <keyword type="function" name="gvir_connection_create_storage_pool ()" link="GVirConnection.html#gvir-connection-create-storage-pool"/>
68 <keyword type="function" name="gvir_connection_get_stream ()" link="GVirConnection.html#gvir-connection-get-stream"/>
69 <keyword type="function" name="gvir_connection_get_node_info ()" link="GVirConnection.html#gvir-connection-get-node-info"/>
70 <keyword type="function" name="gvir_connection_get_capabilities ()" link="GVirConnection.html#gvir-connection-get-capabilities"/>
71 <keyword type="function" name="gvir_connection_get_capabilities_async ()" link="GVirConnection.html#gvir-connection-get-capabilities-async"/>
72 <keyword type="function" name="gvir_connection_get_capabilities_finish ()" link="GVirConnection.html#gvir-connection-get-capabilities-finish"/>
73 <keyword type="function" name="gvir_connection_restore_domain_from_file ()" link="GVirConnection.html#gvir-connection-restore-domain-from-file"/>
74 <keyword type="function" name="gvir_connection_restore_domain_from_file_async ()" link="GVirConnection.html#gvir-connection-restore-domain-from-file-async"/>
75 <keyword type="function" name="gvir_connection_restore_domain_from_file_finish ()" link="GVirConnection.html#gvir-connection-restore-domain-from-file-finish"/>
76 <keyword type="property" name="The &quot;handle&quot; property" link="GVirConnection.html#GVirConnection--handle"/>
77 <keyword type="property" name="The &quot;uri&quot; property" link="GVirConnection.html#GVirConnection--uri"/>
78 <keyword type="signal" name="The &quot;connection-closed&quot; signal" link="GVirConnection.html#GVirConnection-connection-closed"/>
79 <keyword type="signal" name="The &quot;connection-opened&quot; signal" link="GVirConnection.html#GVirConnection-connection-opened"/>
80 <keyword type="signal" name="The &quot;domain-added&quot; signal" link="GVirConnection.html#GVirConnection-domain-added"/>
81 <keyword type="signal" name="The &quot;domain-removed&quot; signal" link="GVirConnection.html#GVirConnection-domain-removed"/>
82 <keyword type="struct" name="struct GVirDomain" link="GVirDomain.html#GVirDomain-struct"/>
83 <keyword type="struct" name="struct GVirDomainClass" link="GVirDomain.html#GVirDomainClass"/>
23 <keyword type="function" name="gvir_connection_new ()" link="GVirConnection.html#gvir-connection-new"/>
24 <keyword type="function" name="gvir_connection_open ()" link="GVirConnection.html#gvir-connection-open"/>
25 <keyword type="function" name="gvir_connection_open_read_only ()" link="GVirConnection.html#gvir-connection-open-read-only"/>
26 <keyword type="function" name="gvir_connection_open_async ()" link="GVirConnection.html#gvir-connection-open-async"/>
27 <keyword type="function" name="gvir_connection_open_finish ()" link="GVirConnection.html#gvir-connection-open-finish"/>
28 <keyword type="function" name="gvir_connection_open_read_only_async ()" link="GVirConnection.html#gvir-connection-open-read-only-async"/>
29 <keyword type="function" name="gvir_connection_open_read_only_finish ()" link="GVirConnection.html#gvir-connection-open-read-only-finish"/>
30 <keyword type="function" name="gvir_connection_is_open ()" link="GVirConnection.html#gvir-connection-is-open"/>
31 <keyword type="function" name="gvir_connection_is_read_only ()" link="GVirConnection.html#gvir-connection-is-read-only"/>
32 <keyword type="function" name="gvir_connection_close ()" link="GVirConnection.html#gvir-connection-close"/>
33 <keyword type="function" name="gvir_connection_fetch_domains ()" link="GVirConnection.html#gvir-connection-fetch-domains"/>
34 <keyword type="function" name="gvir_connection_fetch_domains_async ()" link="GVirConnection.html#gvir-connection-fetch-domains-async"/>
35 <keyword type="function" name="gvir_connection_fetch_domains_finish ()" link="GVirConnection.html#gvir-connection-fetch-domains-finish"/>
36 <keyword type="function" name="gvir_connection_get_uri ()" link="GVirConnection.html#gvir-connection-get-uri"/>
37 <keyword type="function" name="gvir_connection_get_hypervisor_name ()" link="GVirConnection.html#gvir-connection-get-hypervisor-name"/>
38 <keyword type="function" name="gvir_connection_get_version ()" link="GVirConnection.html#gvir-connection-get-version"/>
39 <keyword type="function" name="gvir_connection_get_domains ()" link="GVirConnection.html#gvir-connection-get-domains"/>
40 <keyword type="function" name="gvir_connection_get_domain ()" link="GVirConnection.html#gvir-connection-get-domain"/>
41 <keyword type="function" name="gvir_connection_find_domain_by_id ()" link="GVirConnection.html#gvir-connection-find-domain-by-id"/>
42 <keyword type="function" name="gvir_connection_find_domain_by_name ()" link="GVirConnection.html#gvir-connection-find-domain-by-name"/>
43 <keyword type="function" name="gvir_connection_create_domain ()" link="GVirConnection.html#gvir-connection-create-domain"/>
44 <keyword type="function" name="gvir_connection_start_domain ()" link="GVirConnection.html#gvir-connection-start-domain"/>
45 <keyword type="function" name="gvir_connection_get_interfaces ()" link="GVirConnection.html#gvir-connection-get-interfaces"/>
46 <keyword type="function" name="gvir_connection_get_interface ()" link="GVirConnection.html#gvir-connection-get-interface"/>
47 <keyword type="function" name="gvir_connection_find_interface_by_mac ()" link="GVirConnection.html#gvir-connection-find-interface-by-mac"/>
48 <keyword type="function" name="gvir_connection_get_networks ()" link="GVirConnection.html#gvir-connection-get-networks"/>
49 <keyword type="function" name="gvir_connection_get_network ()" link="GVirConnection.html#gvir-connection-get-network"/>
50 <keyword type="function" name="gvir_connection_find_network_by_name ()" link="GVirConnection.html#gvir-connection-find-network-by-name"/>
51 <keyword type="function" name="gvir_connection_get_network_filters ()" link="GVirConnection.html#gvir-connection-get-network-filters"/>
52 <keyword type="function" name="gvir_connection_get_network_filter ()" link="GVirConnection.html#gvir-connection-get-network-filter"/>
53 <keyword type="function" name="gvir_connection_find_network_filter_by_name ()" link="GVirConnection.html#gvir-connection-find-network-filter-by-name"/>
54 <keyword type="function" name="gvir_connection_get_node_devices ()" link="GVirConnection.html#gvir-connection-get-node-devices"/>
55 <keyword type="function" name="gvir_connection_get_node_device ()" link="GVirConnection.html#gvir-connection-get-node-device"/>
56 <keyword type="function" name="gvir_connection_get_secrets ()" link="GVirConnection.html#gvir-connection-get-secrets"/>
57 <keyword type="function" name="gvir_connection_get_secret ()" link="GVirConnection.html#gvir-connection-get-secret"/>
58 <keyword type="function" name="gvir_connection_fetch_storage_pools ()" link="GVirConnection.html#gvir-connection-fetch-storage-pools"/>
59 <keyword type="function" name="gvir_connection_fetch_storage_pools_async ()" link="GVirConnection.html#gvir-connection-fetch-storage-pools-async"/>
60 <keyword type="function" name="gvir_connection_fetch_storage_pools_finish ()" link="GVirConnection.html#gvir-connection-fetch-storage-pools-finish"/>
61 <keyword type="function" name="gvir_connection_get_storage_pools ()" link="GVirConnection.html#gvir-connection-get-storage-pools"/>
62 <keyword type="function" name="gvir_connection_get_storage_pool ()" link="GVirConnection.html#gvir-connection-get-storage-pool"/>
63 <keyword type="function" name="gvir_connection_find_storage_pool_by_name ()" link="GVirConnection.html#gvir-connection-find-storage-pool-by-name"/>
64 <keyword type="function" name="gvir_connection_create_storage_pool ()" link="GVirConnection.html#gvir-connection-create-storage-pool"/>
65 <keyword type="function" name="gvir_connection_get_stream ()" link="GVirConnection.html#gvir-connection-get-stream"/>
66 <keyword type="function" name="gvir_connection_get_node_info ()" link="GVirConnection.html#gvir-connection-get-node-info"/>
67 <keyword type="function" name="gvir_connection_get_capabilities ()" link="GVirConnection.html#gvir-connection-get-capabilities"/>
68 <keyword type="function" name="gvir_connection_get_capabilities_async ()" link="GVirConnection.html#gvir-connection-get-capabilities-async"/>
69 <keyword type="function" name="gvir_connection_get_capabilities_finish ()" link="GVirConnection.html#gvir-connection-get-capabilities-finish"/>
70 <keyword type="function" name="gvir_connection_restore_domain_from_file ()" link="GVirConnection.html#gvir-connection-restore-domain-from-file"/>
71 <keyword type="function" name="gvir_connection_restore_domain_from_file_async ()" link="GVirConnection.html#gvir-connection-restore-domain-from-file-async"/>
72 <keyword type="function" name="gvir_connection_restore_domain_from_file_finish ()" link="GVirConnection.html#gvir-connection-restore-domain-from-file-finish"/>
73 <keyword type="property" name="The “handle” property" link="GVirConnection.html#GVirConnection--handle"/>
74 <keyword type="property" name="The “uri” property" link="GVirConnection.html#GVirConnection--uri"/>
75 <keyword type="signal" name="The “connection-closed” signal" link="GVirConnection.html#GVirConnection-connection-closed"/>
76 <keyword type="signal" name="The “connection-opened” signal" link="GVirConnection.html#GVirConnection-connection-opened"/>
77 <keyword type="signal" name="The “domain-added” signal" link="GVirConnection.html#GVirConnection-domain-added"/>
78 <keyword type="signal" name="The “domain-removed” signal" link="GVirConnection.html#GVirConnection-domain-removed"/>
79 <keyword type="function" name="gvir_domain_get_name ()" link="GVirDomain.html#gvir-domain-get-name"/>
80 <keyword type="function" name="gvir_domain_get_uuid ()" link="GVirDomain.html#gvir-domain-get-uuid"/>
81 <keyword type="function" name="gvir_domain_get_id ()" link="GVirDomain.html#gvir-domain-get-id"/>
82 <keyword type="function" name="gvir_domain_start ()" link="GVirDomain.html#gvir-domain-start"/>
83 <keyword type="function" name="gvir_domain_start_async ()" link="GVirDomain.html#gvir-domain-start-async"/>
84 <keyword type="function" name="gvir_domain_start_finish ()" link="GVirDomain.html#gvir-domain-start-finish"/>
85 <keyword type="function" name="gvir_domain_resume ()" link="GVirDomain.html#gvir-domain-resume"/>
86 <keyword type="function" name="gvir_domain_resume_async ()" link="GVirDomain.html#gvir-domain-resume-async"/>
87 <keyword type="function" name="gvir_domain_resume_finish ()" link="GVirDomain.html#gvir-domain-resume-finish"/>
88 <keyword type="function" name="gvir_domain_wakeup ()" link="GVirDomain.html#gvir-domain-wakeup"/>
89 <keyword type="function" name="gvir_domain_wakeup_async ()" link="GVirDomain.html#gvir-domain-wakeup-async"/>
90 <keyword type="function" name="gvir_domain_wakeup_finish ()" link="GVirDomain.html#gvir-domain-wakeup-finish"/>
91 <keyword type="function" name="gvir_domain_stop ()" link="GVirDomain.html#gvir-domain-stop"/>
92 <keyword type="function" name="gvir_domain_delete ()" link="GVirDomain.html#gvir-domain-delete"/>
93 <keyword type="function" name="gvir_domain_shutdown ()" link="GVirDomain.html#gvir-domain-shutdown"/>
94 <keyword type="function" name="gvir_domain_reboot ()" link="GVirDomain.html#gvir-domain-reboot"/>
95 <keyword type="function" name="gvir_domain_save_to_file ()" link="GVirDomain.html#gvir-domain-save-to-file"/>
96 <keyword type="function" name="gvir_domain_save_to_file_async ()" link="GVirDomain.html#gvir-domain-save-to-file-async"/>
97 <keyword type="function" name="gvir_domain_save_to_file_finish ()" link="GVirDomain.html#gvir-domain-save-to-file-finish"/>
98 <keyword type="function" name="gvir_domain_get_info ()" link="GVirDomain.html#gvir-domain-get-info"/>
99 <keyword type="function" name="gvir_domain_get_info_async ()" link="GVirDomain.html#gvir-domain-get-info-async"/>
100 <keyword type="function" name="gvir_domain_get_info_finish ()" link="GVirDomain.html#gvir-domain-get-info-finish"/>
101 <keyword type="function" name="gvir_domain_get_config ()" link="GVirDomain.html#gvir-domain-get-config"/>
102 <keyword type="function" name="gvir_domain_set_config ()" link="GVirDomain.html#gvir-domain-set-config"/>
103 <keyword type="function" name="gvir_domain_screenshot ()" link="GVirDomain.html#gvir-domain-screenshot"/>
104 <keyword type="function" name="gvir_domain_open_console ()" link="GVirDomain.html#gvir-domain-open-console"/>
105 <keyword type="function" name="gvir_domain_open_graphics ()" link="GVirDomain.html#gvir-domain-open-graphics"/>
106 <keyword type="function" name="gvir_domain_suspend ()" link="GVirDomain.html#gvir-domain-suspend"/>
107 <keyword type="function" name="gvir_domain_save ()" link="GVirDomain.html#gvir-domain-save"/>
108 <keyword type="function" name="gvir_domain_save_async ()" link="GVirDomain.html#gvir-domain-save-async"/>
109 <keyword type="function" name="gvir_domain_save_finish ()" link="GVirDomain.html#gvir-domain-save-finish"/>
110 <keyword type="function" name="gvir_domain_get_persistent ()" link="GVirDomain.html#gvir-domain-get-persistent"/>
111 <keyword type="function" name="gvir_domain_get_saved ()" link="GVirDomain.html#gvir-domain-get-saved"/>
112 <keyword type="function" name="gvir_domain_get_devices ()" link="GVirDomain.html#gvir-domain-get-devices"/>
113 <keyword type="function" name="gvir_domain_update_device ()" link="GVirDomain.html#gvir-domain-update-device"/>
114 <keyword type="function" name="gvir_domain_create_snapshot ()" link="GVirDomain.html#gvir-domain-create-snapshot"/>
115 <keyword type="function" name="gvir_domain_create_snapshot_async ()" link="GVirDomain.html#gvir-domain-create-snapshot-async"/>
116 <keyword type="function" name="gvir_domain_create_snapshot_finish ()" link="GVirDomain.html#gvir-domain-create-snapshot-finish"/>
117 <keyword type="function" name="gvir_domain_fetch_snapshots ()" link="GVirDomain.html#gvir-domain-fetch-snapshots"/>
118 <keyword type="function" name="gvir_domain_get_snapshots ()" link="GVirDomain.html#gvir-domain-get-snapshots"/>
119 <keyword type="function" name="gvir_domain_fetch_snapshots_async ()" link="GVirDomain.html#gvir-domain-fetch-snapshots-async"/>
120 <keyword type="function" name="gvir_domain_fetch_snapshots_finish ()" link="GVirDomain.html#gvir-domain-fetch-snapshots-finish"/>
121 <keyword type="function" name="gvir_domain_get_has_current_snapshot ()" link="GVirDomain.html#gvir-domain-get-has-current-snapshot"/>
84122 <keyword type="enum" name="enum GVirDomainState" link="GVirDomain.html#GVirDomainState"/>
85123 <keyword type="enum" name="enum GVirDomainStartFlags" link="GVirDomain.html#GVirDomainStartFlags"/>
86124 <keyword type="enum" name="enum GVirDomainDeleteFlags" link="GVirDomain.html#GVirDomainDeleteFlags"/>
89127 <keyword type="enum" name="enum GVirDomainSnapshotCreateFlags" link="GVirDomain.html#GVirDomainSnapshotCreateFlags"/>
90128 <keyword type="enum" name="enum GVirDomainUpdateDeviceFlags" link="GVirDomain.html#GVirDomainUpdateDeviceFlags"/>
91129 <keyword type="enum" name="enum GVirDomainRebootFlags" link="GVirDomain.html#GVirDomainRebootFlags"/>
92 <keyword type="struct" name="struct GVirDomainInfo" link="GVirDomain.html#GVirDomainInfo-struct"/>
93 <keyword type="function" name="gvir_domain_get_name ()" link="GVirDomain.html#gvir-domain-get-name"/>
94 <keyword type="function" name="gvir_domain_get_uuid ()" link="GVirDomain.html#gvir-domain-get-uuid"/>
95 <keyword type="function" name="gvir_domain_get_id ()" link="GVirDomain.html#gvir-domain-get-id"/>
96 <keyword type="function" name="gvir_domain_start ()" link="GVirDomain.html#gvir-domain-start"/>
97 <keyword type="function" name="gvir_domain_start_async ()" link="GVirDomain.html#gvir-domain-start-async"/>
98 <keyword type="function" name="gvir_domain_start_finish ()" link="GVirDomain.html#gvir-domain-start-finish"/>
99 <keyword type="function" name="gvir_domain_resume ()" link="GVirDomain.html#gvir-domain-resume"/>
100 <keyword type="function" name="gvir_domain_resume_async ()" link="GVirDomain.html#gvir-domain-resume-async"/>
101 <keyword type="function" name="gvir_domain_resume_finish ()" link="GVirDomain.html#gvir-domain-resume-finish"/>
102 <keyword type="function" name="gvir_domain_wakeup ()" link="GVirDomain.html#gvir-domain-wakeup"/>
103 <keyword type="function" name="gvir_domain_wakeup_async ()" link="GVirDomain.html#gvir-domain-wakeup-async"/>
104 <keyword type="function" name="gvir_domain_wakeup_finish ()" link="GVirDomain.html#gvir-domain-wakeup-finish"/>
105 <keyword type="function" name="gvir_domain_stop ()" link="GVirDomain.html#gvir-domain-stop"/>
106 <keyword type="function" name="gvir_domain_delete ()" link="GVirDomain.html#gvir-domain-delete"/>
107 <keyword type="function" name="gvir_domain_shutdown ()" link="GVirDomain.html#gvir-domain-shutdown"/>
108 <keyword type="function" name="gvir_domain_reboot ()" link="GVirDomain.html#gvir-domain-reboot"/>
109 <keyword type="function" name="gvir_domain_save_to_file ()" link="GVirDomain.html#gvir-domain-save-to-file"/>
110 <keyword type="function" name="gvir_domain_save_to_file_async ()" link="GVirDomain.html#gvir-domain-save-to-file-async"/>
111 <keyword type="function" name="gvir_domain_save_to_file_finish ()" link="GVirDomain.html#gvir-domain-save-to-file-finish"/>
112 <keyword type="function" name="gvir_domain_get_info ()" link="GVirDomain.html#gvir-domain-get-info"/>
113 <keyword type="function" name="gvir_domain_get_info_async ()" link="GVirDomain.html#gvir-domain-get-info-async"/>
114 <keyword type="function" name="gvir_domain_get_info_finish ()" link="GVirDomain.html#gvir-domain-get-info-finish"/>
115 <keyword type="function" name="gvir_domain_get_config ()" link="GVirDomain.html#gvir-domain-get-config"/>
116 <keyword type="function" name="gvir_domain_set_config ()" link="GVirDomain.html#gvir-domain-set-config"/>
117 <keyword type="function" name="gvir_domain_screenshot ()" link="GVirDomain.html#gvir-domain-screenshot"/>
118 <keyword type="function" name="gvir_domain_open_console ()" link="GVirDomain.html#gvir-domain-open-console"/>
119 <keyword type="function" name="gvir_domain_open_graphics ()" link="GVirDomain.html#gvir-domain-open-graphics"/>
120 <keyword type="function" name="gvir_domain_suspend ()" link="GVirDomain.html#gvir-domain-suspend"/>
121 <keyword type="function" name="gvir_domain_save ()" link="GVirDomain.html#gvir-domain-save"/>
122 <keyword type="function" name="gvir_domain_save_async ()" link="GVirDomain.html#gvir-domain-save-async"/>
123 <keyword type="function" name="gvir_domain_save_finish ()" link="GVirDomain.html#gvir-domain-save-finish"/>
124 <keyword type="function" name="gvir_domain_get_persistent ()" link="GVirDomain.html#gvir-domain-get-persistent"/>
125 <keyword type="function" name="gvir_domain_get_saved ()" link="GVirDomain.html#gvir-domain-get-saved"/>
126 <keyword type="function" name="gvir_domain_get_devices ()" link="GVirDomain.html#gvir-domain-get-devices"/>
127 <keyword type="function" name="gvir_domain_update_device ()" link="GVirDomain.html#gvir-domain-update-device"/>
128 <keyword type="function" name="gvir_domain_create_snapshot ()" link="GVirDomain.html#gvir-domain-create-snapshot"/>
129 <keyword type="property" name="The &quot;handle&quot; property" link="GVirDomain.html#GVirDomain--handle"/>
130 <keyword type="property" name="The &quot;persistent&quot; property" link="GVirDomain.html#GVirDomain--persistent"/>
131 <keyword type="signal" name="The &quot;pmsuspended&quot; signal" link="GVirDomain.html#GVirDomain-pmsuspended"/>
132 <keyword type="signal" name="The &quot;resumed&quot; signal" link="GVirDomain.html#GVirDomain-resumed"/>
133 <keyword type="signal" name="The &quot;started&quot; signal" link="GVirDomain.html#GVirDomain-started"/>
134 <keyword type="signal" name="The &quot;stopped&quot; signal" link="GVirDomain.html#GVirDomain-stopped"/>
135 <keyword type="signal" name="The &quot;suspended&quot; signal" link="GVirDomain.html#GVirDomain-suspended"/>
136 <keyword type="signal" name="The &quot;updated&quot; signal" link="GVirDomain.html#GVirDomain-updated"/>
137 <keyword type="struct" name="struct GVirDomainSnapshot" link="GVirDomainSnapshot.html#GVirDomainSnapshot-struct"/>
138 <keyword type="struct" name="struct GVirDomainSnapshotClass" link="GVirDomainSnapshot.html#GVirDomainSnapshotClass"/>
139 <keyword type="function" name="gvir_domain_snapshot_get_name ()" link="GVirDomainSnapshot.html#gvir-domain-snapshot-get-name"/>
140 <keyword type="function" name="gvir_domain_snapshot_get_config ()" link="GVirDomainSnapshot.html#gvir-domain-snapshot-get-config"/>
141 <keyword type="property" name="The &quot;handle&quot; property" link="GVirDomainSnapshot.html#GVirDomainSnapshot--handle"/>
142 <keyword type="struct" name="struct GVirInterface" link="Libvirt-gobject-GVir.html#GVirInterface-struct"/>
143 <keyword type="struct" name="struct GVirInterfaceClass" link="Libvirt-gobject-GVir.html#GVirInterfaceClass"/>
144 <keyword type="function" name="gvir_interface_get_name ()" link="Libvirt-gobject-GVir.html#gvir-interface-get-name"/>
145 <keyword type="function" name="gvir_interface_get_config ()" link="Libvirt-gobject-GVir.html#gvir-interface-get-config"/>
146 <keyword type="property" name="The &quot;handle&quot; property" link="Libvirt-gobject-GVir.html#GVirInterface--handle"/>
147 <keyword type="struct" name="struct GVirManager" link="GVirManager.html#GVirManager-struct"/>
148 <keyword type="struct" name="struct GVirManagerClass" link="GVirManager.html#GVirManagerClass"/>
149 <keyword type="function" name="gvir_manager_new ()" link="GVirManager.html#gvir-manager-new"/>
150 <keyword type="function" name="gvir_manager_add_connection ()" link="GVirManager.html#gvir-manager-add-connection"/>
151 <keyword type="function" name="gvir_manager_remove_connection ()" link="GVirManager.html#gvir-manager-remove-connection"/>
152 <keyword type="function" name="gvir_manager_get_connections ()" link="GVirManager.html#gvir-manager-get-connections"/>
153 <keyword type="function" name="gvir_manager_find_connection_by_uri ()" link="GVirManager.html#gvir-manager-find-connection-by-uri"/>
154 <keyword type="signal" name="The &quot;connection-added&quot; signal" link="GVirManager.html#GVirManager-connection-added"/>
155 <keyword type="signal" name="The &quot;connection-removed&quot; signal" link="GVirManager.html#GVirManager-connection-removed"/>
156 <keyword type="struct" name="struct GVirNetworkFilter" link="GVirNetworkFilter.html#GVirNetworkFilter-struct"/>
157 <keyword type="struct" name="struct GVirNetworkFilterClass" link="GVirNetworkFilter.html#GVirNetworkFilterClass"/>
158 <keyword type="function" name="gvir_network_filter_get_name ()" link="GVirNetworkFilter.html#gvir-network-filter-get-name"/>
159 <keyword type="function" name="gvir_network_filter_get_uuid ()" link="GVirNetworkFilter.html#gvir-network-filter-get-uuid"/>
160 <keyword type="function" name="gvir_network_filter_get_config ()" link="GVirNetworkFilter.html#gvir-network-filter-get-config"/>
161 <keyword type="property" name="The &quot;handle&quot; property" link="GVirNetworkFilter.html#GVirNetworkFilter--handle"/>
162 <keyword type="struct" name="struct GVirNetwork" link="GVirNetwork.html#GVirNetwork-struct"/>
163 <keyword type="struct" name="struct GVirNetworkClass" link="GVirNetwork.html#GVirNetworkClass"/>
164 <keyword type="function" name="gvir_network_get_name ()" link="GVirNetwork.html#gvir-network-get-name"/>
165 <keyword type="function" name="gvir_network_get_uuid ()" link="GVirNetwork.html#gvir-network-get-uuid"/>
166 <keyword type="function" name="gvir_network_get_config ()" link="GVirNetwork.html#gvir-network-get-config"/>
167 <keyword type="property" name="The &quot;handle&quot; property" link="GVirNetwork.html#GVirNetwork--handle"/>
168 <keyword type="struct" name="struct GVirNodeDevice" link="GVirNodeDevice.html#GVirNodeDevice-struct"/>
169 <keyword type="struct" name="struct GVirNodeDeviceClass" link="GVirNodeDevice.html#GVirNodeDeviceClass"/>
170 <keyword type="function" name="gvir_node_device_get_name ()" link="GVirNodeDevice.html#gvir-node-device-get-name"/>
171 <keyword type="function" name="gvir_node_device_get_config ()" link="GVirNodeDevice.html#gvir-node-device-get-config"/>
172 <keyword type="property" name="The &quot;handle&quot; property" link="GVirNodeDevice.html#GVirNodeDevice--handle"/>
173 <keyword type="struct" name="struct GVirSecret" link="GVirSecret.html#GVirSecret-struct"/>
174 <keyword type="struct" name="struct GVirSecretClass" link="GVirSecret.html#GVirSecretClass"/>
175 <keyword type="function" name="gvir_secret_get_name ()" link="GVirSecret.html#gvir-secret-get-name"/>
176 <keyword type="function" name="gvir_secret_get_uuid ()" link="GVirSecret.html#gvir-secret-get-uuid"/>
177 <keyword type="function" name="gvir_secret_get_config ()" link="GVirSecret.html#gvir-secret-get-config"/>
178 <keyword type="property" name="The &quot;handle&quot; property" link="GVirSecret.html#GVirSecret--handle"/>
179 <keyword type="struct" name="struct GVirStoragePool" link="GVirStoragePool.html#GVirStoragePool-struct"/>
180 <keyword type="struct" name="struct GVirStoragePoolClass" link="GVirStoragePool.html#GVirStoragePoolClass"/>
130 <keyword type="enum" name="enum GVirDomainSnapshotListFlags" link="GVirDomain.html#GVirDomainSnapshotListFlags"/>
131 <keyword type="property" name="The “handle” property" link="GVirDomain.html#GVirDomain--handle"/>
132 <keyword type="property" name="The “persistent” property" link="GVirDomain.html#GVirDomain--persistent"/>
133 <keyword type="signal" name="The “pmsuspended” signal" link="GVirDomain.html#GVirDomain-pmsuspended"/>
134 <keyword type="signal" name="The “resumed” signal" link="GVirDomain.html#GVirDomain-resumed"/>
135 <keyword type="signal" name="The “started” signal" link="GVirDomain.html#GVirDomain-started"/>
136 <keyword type="signal" name="The “stopped” signal" link="GVirDomain.html#GVirDomain-stopped"/>
137 <keyword type="signal" name="The “suspended” signal" link="GVirDomain.html#GVirDomain-suspended"/>
138 <keyword type="signal" name="The “updated” signal" link="GVirDomain.html#GVirDomain-updated"/>
139 <keyword type="function" name="gvir_domain_snapshot_get_name ()" link="GVirDomainSnapshot.html#gvir-domain-snapshot-get-name"/>
140 <keyword type="function" name="gvir_domain_snapshot_get_config ()" link="GVirDomainSnapshot.html#gvir-domain-snapshot-get-config"/>
141 <keyword type="function" name="gvir_domain_snapshot_delete ()" link="GVirDomainSnapshot.html#gvir-domain-snapshot-delete"/>
142 <keyword type="function" name="gvir_domain_snapshot_delete_async ()" link="GVirDomainSnapshot.html#gvir-domain-snapshot-delete-async"/>
143 <keyword type="function" name="gvir_domain_snapshot_delete_finish ()" link="GVirDomainSnapshot.html#gvir-domain-snapshot-delete-finish"/>
144 <keyword type="function" name="gvir_domain_snapshot_get_is_current ()" link="GVirDomainSnapshot.html#gvir-domain-snapshot-get-is-current"/>
145 <keyword type="function" name="gvir_domain_snapshot_revert_to ()" link="GVirDomainSnapshot.html#gvir-domain-snapshot-revert-to"/>
146 <keyword type="function" name="gvir_domain_snapshot_revert_to_async ()" link="GVirDomainSnapshot.html#gvir-domain-snapshot-revert-to-async"/>
147 <keyword type="function" name="gvir_domain_snapshot_revert_to_finish ()" link="GVirDomainSnapshot.html#gvir-domain-snapshot-revert-to-finish"/>
148 <keyword type="function" name="gvir_domain_snapshot_set_config ()" link="GVirDomainSnapshot.html#gvir-domain-snapshot-set-config"/>
149 <keyword type="enum" name="enum GVirDomainSnapshotDeleteFlags" link="GVirDomainSnapshot.html#GVirDomainSnapshotDeleteFlags"/>
150 <keyword type="enum" name="enum GVirDomainSnapshotRevertFlags" link="GVirDomainSnapshot.html#GVirDomainSnapshotRevertFlags"/>
151 <keyword type="property" name="The “handle” property" link="GVirDomainSnapshot.html#GVirDomainSnapshot--handle"/>
152 <keyword type="function" name="gvir_interface_get_name ()" link="GVirInterface.html#gvir-interface-get-name"/>
153 <keyword type="function" name="gvir_interface_get_config ()" link="GVirInterface.html#gvir-interface-get-config"/>
154 <keyword type="property" name="The “handle” property" link="GVirInterface.html#GVirInterface--handle"/>
155 <keyword type="function" name="gvir_manager_new ()" link="GVirManager.html#gvir-manager-new"/>
156 <keyword type="function" name="gvir_manager_add_connection ()" link="GVirManager.html#gvir-manager-add-connection"/>
157 <keyword type="function" name="gvir_manager_remove_connection ()" link="GVirManager.html#gvir-manager-remove-connection"/>
158 <keyword type="function" name="gvir_manager_get_connections ()" link="GVirManager.html#gvir-manager-get-connections"/>
159 <keyword type="function" name="gvir_manager_find_connection_by_uri ()" link="GVirManager.html#gvir-manager-find-connection-by-uri"/>
160 <keyword type="signal" name="The “connection-added” signal" link="GVirManager.html#GVirManager-connection-added"/>
161 <keyword type="signal" name="The “connection-removed” signal" link="GVirManager.html#GVirManager-connection-removed"/>
162 <keyword type="function" name="gvir_network_filter_get_name ()" link="GVirNetworkFilter.html#gvir-network-filter-get-name"/>
163 <keyword type="function" name="gvir_network_filter_get_uuid ()" link="GVirNetworkFilter.html#gvir-network-filter-get-uuid"/>
164 <keyword type="function" name="gvir_network_filter_get_config ()" link="GVirNetworkFilter.html#gvir-network-filter-get-config"/>
165 <keyword type="property" name="The “handle” property" link="GVirNetworkFilter.html#GVirNetworkFilter--handle"/>
166 <keyword type="function" name="gvir_network_get_name ()" link="GVirNetwork.html#gvir-network-get-name"/>
167 <keyword type="function" name="gvir_network_get_uuid ()" link="GVirNetwork.html#gvir-network-get-uuid"/>
168 <keyword type="function" name="gvir_network_get_config ()" link="GVirNetwork.html#gvir-network-get-config"/>
169 <keyword type="property" name="The “handle” property" link="GVirNetwork.html#GVirNetwork--handle"/>
170 <keyword type="function" name="gvir_node_device_get_name ()" link="GVirNodeDevice.html#gvir-node-device-get-name"/>
171 <keyword type="function" name="gvir_node_device_get_config ()" link="GVirNodeDevice.html#gvir-node-device-get-config"/>
172 <keyword type="property" name="The “handle” property" link="GVirNodeDevice.html#GVirNodeDevice--handle"/>
173 <keyword type="function" name="gvir_secret_get_name ()" link="GVirSecret.html#gvir-secret-get-name"/>
174 <keyword type="function" name="gvir_secret_get_uuid ()" link="GVirSecret.html#gvir-secret-get-uuid"/>
175 <keyword type="function" name="gvir_secret_get_config ()" link="GVirSecret.html#gvir-secret-get-config"/>
176 <keyword type="property" name="The “handle” property" link="GVirSecret.html#GVirSecret--handle"/>
177 <keyword type="function" name="gvir_storage_pool_get_name ()" link="GVirStoragePool.html#gvir-storage-pool-get-name"/>
178 <keyword type="function" name="gvir_storage_pool_get_uuid ()" link="GVirStoragePool.html#gvir-storage-pool-get-uuid"/>
179 <keyword type="function" name="gvir_storage_pool_get_active ()" link="GVirStoragePool.html#gvir-storage-pool-get-active"/>
180 <keyword type="function" name="gvir_storage_pool_get_persistent ()" link="GVirStoragePool.html#gvir-storage-pool-get-persistent"/>
181 <keyword type="function" name="gvir_storage_pool_get_config ()" link="GVirStoragePool.html#gvir-storage-pool-get-config"/>
182 <keyword type="function" name="gvir_storage_pool_get_info ()" link="GVirStoragePool.html#gvir-storage-pool-get-info"/>
183 <keyword type="function" name="gvir_storage_pool_refresh ()" link="GVirStoragePool.html#gvir-storage-pool-refresh"/>
184 <keyword type="function" name="gvir_storage_pool_refresh_async ()" link="GVirStoragePool.html#gvir-storage-pool-refresh-async"/>
185 <keyword type="function" name="gvir_storage_pool_refresh_finish ()" link="GVirStoragePool.html#gvir-storage-pool-refresh-finish"/>
186 <keyword type="function" name="gvir_storage_pool_get_volumes ()" link="GVirStoragePool.html#gvir-storage-pool-get-volumes"/>
187 <keyword type="function" name="gvir_storage_pool_get_volume ()" link="GVirStoragePool.html#gvir-storage-pool-get-volume"/>
188 <keyword type="function" name="gvir_storage_pool_create_volume ()" link="GVirStoragePool.html#gvir-storage-pool-create-volume"/>
189 <keyword type="function" name="gvir_storage_pool_build ()" link="GVirStoragePool.html#gvir-storage-pool-build"/>
190 <keyword type="function" name="gvir_storage_pool_build_async ()" link="GVirStoragePool.html#gvir-storage-pool-build-async"/>
191 <keyword type="function" name="gvir_storage_pool_build_finish ()" link="GVirStoragePool.html#gvir-storage-pool-build-finish"/>
192 <keyword type="function" name="gvir_storage_pool_undefine ()" link="GVirStoragePool.html#gvir-storage-pool-undefine"/>
193 <keyword type="function" name="gvir_storage_pool_undefine_async ()" link="GVirStoragePool.html#gvir-storage-pool-undefine-async"/>
194 <keyword type="function" name="gvir_storage_pool_undefine_finish ()" link="GVirStoragePool.html#gvir-storage-pool-undefine-finish"/>
195 <keyword type="function" name="gvir_storage_pool_start ()" link="GVirStoragePool.html#gvir-storage-pool-start"/>
196 <keyword type="function" name="gvir_storage_pool_start_async ()" link="GVirStoragePool.html#gvir-storage-pool-start-async"/>
197 <keyword type="function" name="gvir_storage_pool_start_finish ()" link="GVirStoragePool.html#gvir-storage-pool-start-finish"/>
198 <keyword type="function" name="gvir_storage_pool_stop ()" link="GVirStoragePool.html#gvir-storage-pool-stop"/>
199 <keyword type="function" name="gvir_storage_pool_stop_async ()" link="GVirStoragePool.html#gvir-storage-pool-stop-async"/>
200 <keyword type="function" name="gvir_storage_pool_stop_finish ()" link="GVirStoragePool.html#gvir-storage-pool-stop-finish"/>
201 <keyword type="function" name="gvir_storage_pool_delete ()" link="GVirStoragePool.html#gvir-storage-pool-delete"/>
202 <keyword type="function" name="gvir_storage_pool_delete_async ()" link="GVirStoragePool.html#gvir-storage-pool-delete-async"/>
203 <keyword type="function" name="gvir_storage_pool_delete_finish ()" link="GVirStoragePool.html#gvir-storage-pool-delete-finish"/>
181204 <keyword type="enum" name="enum GVirStoragePoolState" link="GVirStoragePool.html#GVirStoragePoolState"/>
182 <keyword type="struct" name="struct GVirStoragePoolInfo" link="GVirStoragePool.html#GVirStoragePoolInfo-struct"/>
183 <keyword type="function" name="gvir_storage_pool_get_name ()" link="GVirStoragePool.html#gvir-storage-pool-get-name"/>
184 <keyword type="function" name="gvir_storage_pool_get_uuid ()" link="GVirStoragePool.html#gvir-storage-pool-get-uuid"/>
185 <keyword type="function" name="gvir_storage_pool_get_active ()" link="GVirStoragePool.html#gvir-storage-pool-get-active"/>
186 <keyword type="function" name="gvir_storage_pool_get_persistent ()" link="GVirStoragePool.html#gvir-storage-pool-get-persistent"/>
187 <keyword type="function" name="gvir_storage_pool_get_config ()" link="GVirStoragePool.html#gvir-storage-pool-get-config"/>
188 <keyword type="function" name="gvir_storage_pool_get_info ()" link="GVirStoragePool.html#gvir-storage-pool-get-info"/>
189 <keyword type="function" name="gvir_storage_pool_refresh ()" link="GVirStoragePool.html#gvir-storage-pool-refresh"/>
190 <keyword type="function" name="gvir_storage_pool_refresh_async ()" link="GVirStoragePool.html#gvir-storage-pool-refresh-async"/>
191 <keyword type="function" name="gvir_storage_pool_refresh_finish ()" link="GVirStoragePool.html#gvir-storage-pool-refresh-finish"/>
192 <keyword type="function" name="gvir_storage_pool_get_volumes ()" link="GVirStoragePool.html#gvir-storage-pool-get-volumes"/>
193 <keyword type="function" name="gvir_storage_pool_get_volume ()" link="GVirStoragePool.html#gvir-storage-pool-get-volume"/>
194 <keyword type="function" name="gvir_storage_pool_create_volume ()" link="GVirStoragePool.html#gvir-storage-pool-create-volume"/>
195 <keyword type="function" name="gvir_storage_pool_build ()" link="GVirStoragePool.html#gvir-storage-pool-build"/>
196 <keyword type="function" name="gvir_storage_pool_build_async ()" link="GVirStoragePool.html#gvir-storage-pool-build-async"/>
197 <keyword type="function" name="gvir_storage_pool_build_finish ()" link="GVirStoragePool.html#gvir-storage-pool-build-finish"/>
198 <keyword type="function" name="gvir_storage_pool_undefine ()" link="GVirStoragePool.html#gvir-storage-pool-undefine"/>
199 <keyword type="function" name="gvir_storage_pool_undefine_async ()" link="GVirStoragePool.html#gvir-storage-pool-undefine-async"/>
200 <keyword type="function" name="gvir_storage_pool_undefine_finish ()" link="GVirStoragePool.html#gvir-storage-pool-undefine-finish"/>
201 <keyword type="function" name="gvir_storage_pool_start ()" link="GVirStoragePool.html#gvir-storage-pool-start"/>
202 <keyword type="function" name="gvir_storage_pool_start_async ()" link="GVirStoragePool.html#gvir-storage-pool-start-async"/>
203 <keyword type="function" name="gvir_storage_pool_start_finish ()" link="GVirStoragePool.html#gvir-storage-pool-start-finish"/>
204 <keyword type="function" name="gvir_storage_pool_stop ()" link="GVirStoragePool.html#gvir-storage-pool-stop"/>
205 <keyword type="function" name="gvir_storage_pool_stop_async ()" link="GVirStoragePool.html#gvir-storage-pool-stop-async"/>
206 <keyword type="function" name="gvir_storage_pool_stop_finish ()" link="GVirStoragePool.html#gvir-storage-pool-stop-finish"/>
207 <keyword type="function" name="gvir_storage_pool_delete ()" link="GVirStoragePool.html#gvir-storage-pool-delete"/>
208 <keyword type="function" name="gvir_storage_pool_delete_async ()" link="GVirStoragePool.html#gvir-storage-pool-delete-async"/>
209 <keyword type="function" name="gvir_storage_pool_delete_finish ()" link="GVirStoragePool.html#gvir-storage-pool-delete-finish"/>
210 <keyword type="property" name="The &quot;handle&quot; property" link="GVirStoragePool.html#GVirStoragePool--handle"/>
211 <keyword type="struct" name="struct GVirStorageVol" link="GVirStorageVol.html#GVirStorageVol-struct"/>
212 <keyword type="struct" name="struct GVirStorageVolClass" link="GVirStorageVol.html#GVirStorageVolClass"/>
205 <keyword type="property" name="The “handle” property" link="GVirStoragePool.html#GVirStoragePool--handle"/>
206 <keyword type="function" name="gvir_storage_vol_get_name ()" link="GVirStorageVol.html#gvir-storage-vol-get-name"/>
207 <keyword type="function" name="gvir_storage_vol_get_path ()" link="GVirStorageVol.html#gvir-storage-vol-get-path"/>
208 <keyword type="function" name="gvir_storage_vol_delete ()" link="GVirStorageVol.html#gvir-storage-vol-delete"/>
209 <keyword type="function" name="gvir_storage_vol_get_config ()" link="GVirStorageVol.html#gvir-storage-vol-get-config"/>
210 <keyword type="function" name="gvir_storage_vol_get_info ()" link="GVirStorageVol.html#gvir-storage-vol-get-info"/>
211 <keyword type="function" name="gvir_storage_vol_resize ()" link="GVirStorageVol.html#gvir-storage-vol-resize"/>
212 <keyword type="function" name="gvir_storage_vol_download ()" link="GVirStorageVol.html#gvir-storage-vol-download"/>
213 <keyword type="function" name="gvir_storage_vol_upload ()" link="GVirStorageVol.html#gvir-storage-vol-upload"/>
213214 <keyword type="enum" name="enum GVirStorageVolType" link="GVirStorageVol.html#GVirStorageVolType"/>
214215 <keyword type="enum" name="enum GVirStorageVolResizeFlags" link="GVirStorageVol.html#GVirStorageVolResizeFlags"/>
215 <keyword type="struct" name="struct GVirStorageVolInfo" link="GVirStorageVol.html#GVirStorageVolInfo-struct"/>
216 <keyword type="function" name="gvir_storage_vol_get_name ()" link="GVirStorageVol.html#gvir-storage-vol-get-name"/>
217 <keyword type="function" name="gvir_storage_vol_get_path ()" link="GVirStorageVol.html#gvir-storage-vol-get-path"/>
218 <keyword type="function" name="gvir_storage_vol_delete ()" link="GVirStorageVol.html#gvir-storage-vol-delete"/>
219 <keyword type="function" name="gvir_storage_vol_get_config ()" link="GVirStorageVol.html#gvir-storage-vol-get-config"/>
220 <keyword type="function" name="gvir_storage_vol_get_info ()" link="GVirStorageVol.html#gvir-storage-vol-get-info"/>
221 <keyword type="function" name="gvir_storage_vol_resize ()" link="GVirStorageVol.html#gvir-storage-vol-resize"/>
222 <keyword type="function" name="gvir_storage_vol_download ()" link="GVirStorageVol.html#gvir-storage-vol-download"/>
223 <keyword type="function" name="gvir_storage_vol_upload ()" link="GVirStorageVol.html#gvir-storage-vol-upload"/>
224 <keyword type="property" name="The &quot;handle&quot; property" link="GVirStorageVol.html#GVirStorageVol--handle"/>
225 <keyword type="property" name="The &quot;pool&quot; property" link="GVirStorageVol.html#GVirStorageVol--pool"/>
226 <keyword type="struct" name="struct GVirStream" link="GVirStream.html#GVirStream-struct"/>
227 <keyword type="struct" name="struct GVirStreamClass" link="GVirStream.html#GVirStreamClass"/>
228 <keyword type="function" name="GVirStreamSinkFunc ()" link="GVirStream.html#GVirStreamSinkFunc"/>
229 <keyword type="function" name="GVirStreamSourceFunc ()" link="GVirStream.html#GVirStreamSourceFunc"/>
216 <keyword type="property" name="The “handle” property" link="GVirStorageVol.html#GVirStorageVol--handle"/>
217 <keyword type="property" name="The “pool” property" link="GVirStorageVol.html#GVirStorageVol--pool"/>
218 <keyword type="function" name="GVirStreamSinkFunc ()" link="GVirStream.html#GVirStreamSinkFunc"/>
219 <keyword type="function" name="GVirStreamSourceFunc ()" link="GVirStream.html#GVirStreamSourceFunc"/>
220 <keyword type="function" name="GVirStreamIOFunc ()" link="GVirStream.html#GVirStreamIOFunc"/>
221 <keyword type="function" name="gvir_stream_add_watch ()" link="GVirStream.html#gvir-stream-add-watch"/>
222 <keyword type="function" name="gvir_stream_add_watch_full ()" link="GVirStream.html#gvir-stream-add-watch-full"/>
223 <keyword type="function" name="gvir_stream_receive_all ()" link="GVirStream.html#gvir-stream-receive-all"/>
224 <keyword type="function" name="gvir_stream_receive ()" link="GVirStream.html#gvir-stream-receive"/>
225 <keyword type="function" name="gvir_stream_send_all ()" link="GVirStream.html#gvir-stream-send-all"/>
226 <keyword type="function" name="gvir_stream_send ()" link="GVirStream.html#gvir-stream-send"/>
230227 <keyword type="enum" name="enum GVirStreamIOCondition" link="GVirStream.html#GVirStreamIOCondition"/>
231 <keyword type="function" name="GVirStreamIOFunc ()" link="GVirStream.html#GVirStreamIOFunc"/>
232 <keyword type="function" name="gvir_stream_add_watch ()" link="GVirStream.html#gvir-stream-add-watch"/>
233 <keyword type="function" name="gvir_stream_add_watch_full ()" link="GVirStream.html#gvir-stream-add-watch-full"/>
234 <keyword type="function" name="gvir_stream_receive_all ()" link="GVirStream.html#gvir-stream-receive-all"/>
235 <keyword type="function" name="gvir_stream_receive ()" link="GVirStream.html#gvir-stream-receive"/>
236 <keyword type="function" name="gvir_stream_send_all ()" link="GVirStream.html#gvir-stream-send-all"/>
237 <keyword type="function" name="gvir_stream_send ()" link="GVirStream.html#gvir-stream-send"/>
238 <keyword type="property" name="The &quot;handle&quot; property" link="GVirStream.html#GVirStream--handle"/>
239 <keyword type="constant" name="GVIR_DOMAIN_STATE_NONE" link="GVirDomain.html#GVIR-DOMAIN-STATE-NONE:CAPS"/>
240 <keyword type="constant" name="GVIR_DOMAIN_STATE_RUNNING" link="GVirDomain.html#GVIR-DOMAIN-STATE-RUNNING:CAPS"/>
241 <keyword type="constant" name="GVIR_DOMAIN_STATE_BLOCKED" link="GVirDomain.html#GVIR-DOMAIN-STATE-BLOCKED:CAPS"/>
242 <keyword type="constant" name="GVIR_DOMAIN_STATE_PAUSED" link="GVirDomain.html#GVIR-DOMAIN-STATE-PAUSED:CAPS"/>
243 <keyword type="constant" name="GVIR_DOMAIN_STATE_SHUTDOWN" link="GVirDomain.html#GVIR-DOMAIN-STATE-SHUTDOWN:CAPS"/>
244 <keyword type="constant" name="GVIR_DOMAIN_STATE_SHUTOFF" link="GVirDomain.html#GVIR-DOMAIN-STATE-SHUTOFF:CAPS"/>
245 <keyword type="constant" name="GVIR_DOMAIN_STATE_CRASHED" link="GVirDomain.html#GVIR-DOMAIN-STATE-CRASHED:CAPS"/>
246 <keyword type="constant" name="GVIR_DOMAIN_STATE_PMSUSPENDED" link="GVirDomain.html#GVIR-DOMAIN-STATE-PMSUSPENDED:CAPS"/>
247 <keyword type="constant" name="GVIR_DOMAIN_START_NONE" link="GVirDomain.html#GVIR-DOMAIN-START-NONE:CAPS"/>
248 <keyword type="constant" name="GVIR_DOMAIN_START_PAUSED" link="GVirDomain.html#GVIR-DOMAIN-START-PAUSED:CAPS"/>
249 <keyword type="constant" name="GVIR_DOMAIN_START_AUTODESTROY" link="GVirDomain.html#GVIR-DOMAIN-START-AUTODESTROY:CAPS"/>
250 <keyword type="constant" name="GVIR_DOMAIN_START_BYPASS_CACHE" link="GVirDomain.html#GVIR-DOMAIN-START-BYPASS-CACHE:CAPS"/>
251 <keyword type="constant" name="GVIR_DOMAIN_START_FORCE_BOOT" link="GVirDomain.html#GVIR-DOMAIN-START-FORCE-BOOT:CAPS"/>
252 <keyword type="constant" name="GVIR_DOMAIN_DELETE_NONE" link="GVirDomain.html#GVIR-DOMAIN-DELETE-NONE:CAPS"/>
253 <keyword type="constant" name="GVIR_DOMAIN_DELETE_SAVED_STATE" link="GVirDomain.html#GVIR-DOMAIN-DELETE-SAVED-STATE:CAPS"/>
254 <keyword type="constant" name="GVIR_DOMAIN_DELETE_SNAPSHOTS_METADATA" link="GVirDomain.html#GVIR-DOMAIN-DELETE-SNAPSHOTS-METADATA:CAPS"/>
255 <keyword type="constant" name="GVIR_DOMAIN_XML_NONE" link="GVirDomain.html#GVIR-DOMAIN-XML-NONE:CAPS"/>
256 <keyword type="constant" name="GVIR_DOMAIN_XML_SECURE" link="GVirDomain.html#GVIR-DOMAIN-XML-SECURE:CAPS"/>
257 <keyword type="constant" name="GVIR_DOMAIN_XML_INACTIVE" link="GVirDomain.html#GVIR-DOMAIN-XML-INACTIVE:CAPS"/>
258 <keyword type="constant" name="GVIR_DOMAIN_XML_UPDATE_CPU" link="GVirDomain.html#GVIR-DOMAIN-XML-UPDATE-CPU:CAPS"/>
259 <keyword type="constant" name="GVIR_DOMAIN_SHUTDOWN_NONE" link="GVirDomain.html#GVIR-DOMAIN-SHUTDOWN-NONE:CAPS"/>
260 <keyword type="constant" name="GVIR_DOMAIN_SHUTDOWN_ACPI_POWER_BTN" link="GVirDomain.html#GVIR-DOMAIN-SHUTDOWN-ACPI-POWER-BTN:CAPS"/>
261 <keyword type="constant" name="GVIR_DOMAIN_SHUTDOWN_GUEST_AGENT" link="GVirDomain.html#GVIR-DOMAIN-SHUTDOWN-GUEST-AGENT:CAPS"/>
262 <keyword type="constant" name="GVIR_DOMAIN_SNAPSHOT_NONE" link="GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-NONE:CAPS"/>
263 <keyword type="constant" name="GVIR_DOMAIN_SNAPSHOT_REDEFINE" link="GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-REDEFINE:CAPS"/>
264 <keyword type="constant" name="GVIR_DOMAIN_SNAPSHOT_CURRENT" link="GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-CURRENT:CAPS"/>
265 <keyword type="constant" name="GVIR_DOMAIN_SNAPSHOT_NO_METADATA" link="GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-NO-METADATA:CAPS"/>
266 <keyword type="constant" name="GVIR_DOMAIN_SNAPSHOT_HALT" link="GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-HALT:CAPS"/>
267 <keyword type="constant" name="GVIR_DOMAIN_SNAPSHOT_DISK_ONLY" link="GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-DISK-ONLY:CAPS"/>
268 <keyword type="constant" name="GVIR_DOMAIN_SNAPSHOT_REUSE_EXT" link="GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-REUSE-EXT:CAPS"/>
269 <keyword type="constant" name="GVIR_DOMAIN_SNAPSHOT_QUIESCE" link="GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-QUIESCE:CAPS"/>
270 <keyword type="constant" name="GVIR_DOMAIN_SNAPSHOT_ATOMIC" link="GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-ATOMIC:CAPS"/>
271 <keyword type="constant" name="GVIR_DOMAIN_UPDATE_DEVICE_CURRENT" link="GVirDomain.html#GVIR-DOMAIN-UPDATE-DEVICE-CURRENT:CAPS"/>
272 <keyword type="constant" name="GVIR_DOMAIN_UPDATE_DEVICE_LIVE" link="GVirDomain.html#GVIR-DOMAIN-UPDATE-DEVICE-LIVE:CAPS"/>
273 <keyword type="constant" name="GVIR_DOMAIN_UPDATE_DEVICE_CONFIG" link="GVirDomain.html#GVIR-DOMAIN-UPDATE-DEVICE-CONFIG:CAPS"/>
274 <keyword type="constant" name="GVIR_DOMAIN_REBOOT_NONE" link="GVirDomain.html#GVIR-DOMAIN-REBOOT-NONE:CAPS"/>
275 <keyword type="constant" name="GVIR_DOMAIN_REBOOT_ACPI_POWER_BTN" link="GVirDomain.html#GVIR-DOMAIN-REBOOT-ACPI-POWER-BTN:CAPS"/>
276 <keyword type="constant" name="GVIR_DOMAIN_REBOOT_GUEST_AGENT" link="GVirDomain.html#GVIR-DOMAIN-REBOOT-GUEST-AGENT:CAPS"/>
277 <keyword type="constant" name="GVIR_STORAGE_POOL_STATE_INACTIVE" link="GVirStoragePool.html#GVIR-STORAGE-POOL-STATE-INACTIVE:CAPS"/>
278 <keyword type="constant" name="GVIR_STORAGE_POOL_STATE_BUILDING" link="GVirStoragePool.html#GVIR-STORAGE-POOL-STATE-BUILDING:CAPS"/>
279 <keyword type="constant" name="GVIR_STORAGE_POOL_STATE_RUNNING" link="GVirStoragePool.html#GVIR-STORAGE-POOL-STATE-RUNNING:CAPS"/>
280 <keyword type="constant" name="GVIR_STORAGE_POOL_STATE_DEGRADED" link="GVirStoragePool.html#GVIR-STORAGE-POOL-STATE-DEGRADED:CAPS"/>
281 <keyword type="constant" name="GVIR_STORAGE_POOL_STATE_INACCESSIBLE" link="GVirStoragePool.html#GVIR-STORAGE-POOL-STATE-INACCESSIBLE:CAPS"/>
282 <keyword type="constant" name="GVIR_STORAGE_VOL_STATE_FILE" link="GVirStorageVol.html#GVIR-STORAGE-VOL-STATE-FILE:CAPS"/>
283 <keyword type="constant" name="GVIR_STORAGE_VOL_STATE_BLOCK" link="GVirStorageVol.html#GVIR-STORAGE-VOL-STATE-BLOCK:CAPS"/>
284 <keyword type="constant" name="GVIR_STORAGE_VOL_STATE_DIR" link="GVirStorageVol.html#GVIR-STORAGE-VOL-STATE-DIR:CAPS"/>
285 <keyword type="constant" name="GVIR_STORAGE_VOL_RESIZE_NONE" link="GVirStorageVol.html#GVIR-STORAGE-VOL-RESIZE-NONE:CAPS"/>
286 <keyword type="constant" name="GVIR_STORAGE_VOL_RESIZE_ALLOCATE" link="GVirStorageVol.html#GVIR-STORAGE-VOL-RESIZE-ALLOCATE:CAPS"/>
287 <keyword type="constant" name="GVIR_STORAGE_VOL_RESIZE_DELTA" link="GVirStorageVol.html#GVIR-STORAGE-VOL-RESIZE-DELTA:CAPS"/>
288 <keyword type="constant" name="GVIR_STORAGE_VOL_RESIZE_SHRINK" link="GVirStorageVol.html#GVIR-STORAGE-VOL-RESIZE-SHRINK:CAPS"/>
289 <keyword type="constant" name="GVIR_STREAM_IO_CONDITION_READABLE" link="GVirStream.html#GVIR-STREAM-IO-CONDITION-READABLE:CAPS"/>
290 <keyword type="constant" name="GVIR_STREAM_IO_CONDITION_WRITABLE" link="GVirStream.html#GVIR-STREAM-IO-CONDITION-WRITABLE:CAPS"/>
291 <keyword type="constant" name="GVIR_STREAM_IO_CONDITION_HANGUP" link="GVirStream.html#GVIR-STREAM-IO-CONDITION-HANGUP:CAPS"/>
292 <keyword type="constant" name="GVIR_STREAM_IO_CONDITION_ERROR" link="GVirStream.html#GVIR-STREAM-IO-CONDITION-ERROR:CAPS"/>
228 <keyword type="property" name="The “handle” property" link="GVirStream.html#GVirStream--handle"/>
293229 </functions>
294230 </book>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>Annotation Glossary</title>
4 <title>Libvirt-gobject Reference Manual: Annotation Glossary</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="up" href="index.html" title="Libvirt-gobject Reference Manual">
88 <link rel="prev" href="api-index-full.html" title="API Index">
9 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
9 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1010 <link rel="stylesheet" href="style.css" type="text/css">
1111 </head>
1212 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
13 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
14 <tr valign="middle">
15 <td><a accesskey="p" href="api-index-full.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
16 <td> </td>
17 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
18 <th width="100%" align="center">Libvirt-gobject Reference Manual</th>
19 <td> </td>
20 </tr>
21 <tr><td colspan="5" class="shortcuts">
22 <a class="shortcut" href="#glsO">O</a>
23  | 
24 <a class="shortcut" href="#glsS">S</a>
25  | 
26 <a class="shortcut" href="#glsA">A</a>
27  | 
28 <a class="shortcut" href="#glsI">I</a>
29  | 
30 <a class="shortcut" href="#glsC">C</a>
31  | 
32 <a class="shortcut" href="#glsT">T</a>
33  | 
34 <a class="shortcut" href="#glsA">A</a>
35  | 
36 <a class="shortcut" href="#glsE">E</a>
37  | 
38 <a class="shortcut" href="#glsT">T</a>
39  | 
40 <a class="shortcut" href="#glsS">S</a>
41 </td></tr>
42 </table>
13 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
14 <td width="100%" align="left" class="shortcuts"><span id="nav_glossary"><a class="shortcut" href="#glsA">A</a>
15  <span class="dim">|</span> 
16 <a class="shortcut" href="#glsC">C</a>
17  <span class="dim">|</span> 
18 <a class="shortcut" href="#glsE">E</a>
19  <span class="dim">|</span> 
20 <a class="shortcut" href="#glsI">I</a>
21  <span class="dim">|</span> 
22 <a class="shortcut" href="#glsO">O</a>
23  <span class="dim">|</span> 
24 <a class="shortcut" href="#glsS">S</a>
25  <span class="dim">|</span> 
26 <a class="shortcut" href="#glsT">T</a></span></td>
27 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
28 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
29 <td><a accesskey="p" href="api-index-full.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
30 <td><img src="right-insensitive.png" width="16" height="16" border="0"></td>
31 </tr></table>
4332 <div class="glossary">
4433 <div class="titlepage"><div><div><h1 class="title">
4534 <a name="annotation-glossary"></a>Annotation Glossary</h1></div></div></div>
35 <a name="glsA"></a><h3 class="title">A</h3>
36 <dt><span class="glossterm"><a name="annotation-glossterm-allow-none"></a>allow-none</span></dt>
37 <dd class="glossdef"><p>NULL is OK, both for passing and for returning.</p></dd>
38 <dt><span class="glossterm"><a name="annotation-glossterm-array"></a>array</span></dt>
39 <dd class="glossdef"><p>Parameter points to an array of items.</p></dd>
40 <a name="glsC"></a><h3 class="title">C</h3>
41 <dt><span class="glossterm"><a name="annotation-glossterm-closure"></a>closure</span></dt>
42 <dd class="glossdef"><p>This parameter is a 'user_data', for callbacks; many bindings can pass NULL here.</p></dd>
43 <a name="glsE"></a><h3 class="title">E</h3>
44 <dt><span class="glossterm"><a name="annotation-glossterm-element-type"></a>element-type</span></dt>
45 <dd class="glossdef"><p>Generics and defining elements of containers and arrays.</p></dd>
46 <a name="glsI"></a><h3 class="title">I</h3>
47 <dt><span class="glossterm"><a name="annotation-glossterm-inout"></a>inout</span></dt>
48 <dd class="glossdef"><p>Parameter for input and for returning results. Default is <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>.</p></dd>
4649 <a name="glsO"></a><h3 class="title">O</h3>
4750 <dt><span class="glossterm"><a name="annotation-glossterm-out"></a>out</span></dt>
4851 <dd class="glossdef"><p>Parameter for returning results. Default is <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>.</p></dd>
4952 <a name="glsS"></a><h3 class="title">S</h3>
5053 <dt><span class="glossterm"><a name="annotation-glossterm-scope%20async"></a>scope async</span></dt>
5154 <dd class="glossdef"><p>The callback is valid until first called.</p></dd>
52 <a name="glsA"></a><h3 class="title">A</h3>
53 <dt><span class="glossterm"><a name="annotation-glossterm-allow-none"></a>allow-none</span></dt>
54 <dd class="glossdef"><p>NULL is ok, both for passing and for returning.</p></dd>
55 <a name="glsI"></a><h3 class="title">I</h3>
56 <dt><span class="glossterm"><a name="annotation-glossterm-inout"></a>inout</span></dt>
57 <dd class="glossdef"><p>Parameter for input and for returning results. Default is <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>.</p></dd>
58 <a name="glsC"></a><h3 class="title">C</h3>
59 <dt><span class="glossterm"><a name="annotation-glossterm-closure"></a>closure</span></dt>
60 <dd class="glossdef"><p>This parameter is a 'user_data', for callbacks; many bindings can pass NULL here.</p></dd>
61 <a name="glsT"></a><h3 class="title">T</h3>
62 <dt><span class="glossterm"><a name="annotation-glossterm-transfer%20none"></a>transfer none</span></dt>
63 <dd class="glossdef"><p>Don't free data after the code is done.</p></dd>
64 <a name="glsA"></a><h3 class="title">A</h3>
65 <dt><span class="glossterm"><a name="annotation-glossterm-array"></a>array</span></dt>
66 <dd class="glossdef"><p>Parameter points to an array of items.</p></dd>
67 <a name="glsE"></a><h3 class="title">E</h3>
68 <dt><span class="glossterm"><a name="annotation-glossterm-element-type"></a>element-type</span></dt>
69 <dd class="glossdef"><p>Generics and defining elements of containers and arrays.</p></dd>
55 <dt><span class="glossterm"><a name="annotation-glossterm-scope%20notified"></a>scope notified</span></dt>
56 <dd class="glossdef"><p>The callback is valid until the GDestroyNotify argument is called.</p></dd>
7057 <a name="glsT"></a><h3 class="title">T</h3>
7158 <dt><span class="glossterm"><a name="annotation-glossterm-transfer%20full"></a>transfer full</span></dt>
7259 <dd class="glossdef"><p>Free data after the code is done.</p></dd>
60 <dt><span class="glossterm"><a name="annotation-glossterm-transfer%20none"></a>transfer none</span></dt>
61 <dd class="glossdef"><p>Don't free data after the code is done.</p></dd>
7362 <dt><span class="glossterm"><a name="annotation-glossterm-type"></a>type</span></dt>
7463 <dd class="glossdef"><p>Override the parsed C type with given type.</p></dd>
75 <a name="glsS"></a><h3 class="title">S</h3>
76 <dt><span class="glossterm"><a name="annotation-glossterm-scope%20notified"></a>scope notified</span></dt>
77 <dd class="glossdef"><p>The callback is valid until the GDestroyNotify argument is called.</p></dd>
7864 </div>
7965 <div class="footer">
8066 <hr>
81 Generated by GTK-Doc V1.19</div>
67 Generated by GTK-Doc V1.21</div>
8268 </body>
8369 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>API Index</title>
4 <title>Libvirt-gobject Reference Manual: API Index</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="up" href="index.html" title="Libvirt-gobject Reference Manual">
88 <link rel="prev" href="object-tree.html" title="Object Hierarchy">
99 <link rel="next" href="annotation-glossary.html" title="Annotation Glossary">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
15 <tr valign="middle">
16 <td><a accesskey="p" href="object-tree.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
17 <td> </td>
18 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
19 <th width="100%" align="center">Libvirt-gobject Reference Manual</th>
20 <td><a accesskey="n" href="annotation-glossary.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21 </tr>
22 <tr><td colspan="5" class="shortcuts">
23 <a class="shortcut" href="#idxC">C</a>
24  | 
25 <a class="shortcut" href="#idxD">D</a>
26  | 
27 <a class="shortcut" href="#idxM">M</a>
28  | 
29 <a class="shortcut" href="#idxS">S</a>
30  | 
31 <a class="shortcut" href="#idxV">V</a>
32 </td></tr>
33 </table>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxC">C</a>
16  <span class="dim">|</span> 
17 <a class="shortcut" href="#idxD">D</a>
18  <span class="dim">|</span> 
19 <a class="shortcut" href="#idxM">M</a>
20  <span class="dim">|</span> 
21 <a class="shortcut" href="#idxS">S</a>
22  <span class="dim">|</span> 
23 <a class="shortcut" href="#idxV">V</a></span></td>
24 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
25 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
26 <td><a accesskey="p" href="object-tree.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
27 <td><a accesskey="n" href="annotation-glossary.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
28 </tr></table>
3429 <div class="index">
3530 <div class="titlepage"><div><div><h1 class="title">
3631 <a name="api-index-full"></a>API Index</h1></div></div></div>
3732 <a name="idx"></a><a name="idxC"></a><h3 class="title">C</h3>
3833 <dt>
39 g_clear_object, macro in libvirt-gobject-compat
34 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-clear-object">g_clear_object</a>, macro in libvirt-gobject-compat
4035 </dt>
4136 <dd></dd>
4237 <a name="idxD"></a><h3 class="title">D</h3>
4338 <dt>
44 G_DEFINE_BOXED_TYPE, macro in libvirt-gobject-compat
45 </dt>
46 <dd></dd>
47 <dt>
48 G_DEFINE_BOXED_TYPE_WITH_CODE, macro in libvirt-gobject-compat
39 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#G-DEFINE-BOXED-TYPE:CAPS">G_DEFINE_BOXED_TYPE</a>, macro in libvirt-gobject-compat
40 </dt>
41 <dd></dd>
42 <dt>
43 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#G-DEFINE-BOXED-TYPE-WITH-CODE:CAPS">G_DEFINE_BOXED_TYPE_WITH_CODE</a>, macro in libvirt-gobject-compat
4944 </dt>
5045 <dd></dd>
5146 <a name="idxM"></a><h3 class="title">M</h3>
5247 <dt>
53 g_mutex_free, macro in libvirt-gobject-compat
54 </dt>
55 <dd></dd>
56 <dt>
57 g_mutex_new, macro in libvirt-gobject-compat
48 <a href="http://library.gnome.org/devel/glib/unstable/glib-Deprecated-Thread-APIs.html#g-mutex-free">g_mutex_free</a>, macro in libvirt-gobject-compat
49 </dt>
50 <dd></dd>
51 <dt>
52 <a href="http://library.gnome.org/devel/glib/unstable/glib-Deprecated-Thread-APIs.html#g-mutex-new">g_mutex_new</a>, macro in libvirt-gobject-compat
5853 </dt>
5954 <dd></dd>
6055 <a name="idxS"></a><h3 class="title">S</h3>
6156 <dt>
62 g_simple_async_report_take_gerror_in_idle, function in libvirt-gobject-compat
63 </dt>
64 <dd></dd>
65 <dt>
66 g_simple_async_result_new_take_error, function in libvirt-gobject-compat
67 </dt>
68 <dd></dd>
69 <dt>
70 g_simple_async_result_take_error, function in libvirt-gobject-compat
57 <a href="http://library.gnome.org/devel/gio/unstable/GSimpleAsyncResult.html#g-simple-async-report-take-gerror-in-idle">g_simple_async_report_take_gerror_in_idle</a>, function in libvirt-gobject-compat
58 </dt>
59 <dd></dd>
60 <dt>
61 <a href="http://library.gnome.org/devel/gio/unstable/GSimpleAsyncResult.html#g-simple-async-result-new-take-error">g_simple_async_result_new_take_error</a>, function in libvirt-gobject-compat
62 </dt>
63 <dd></dd>
64 <dt>
65 <a href="http://library.gnome.org/devel/gio/unstable/GSimpleAsyncResult.html#g-simple-async-result-take-error">g_simple_async_result_take_error</a>, function in libvirt-gobject-compat
7166 </dt>
7267 <dd></dd>
7368 <a name="idxV"></a><h3 class="title">V</h3>
7469 <dt>
75 <a class="link" href="GVirConnection.html#GVirConnection-struct" title="struct GVirConnection">GVirConnection</a>, struct in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
76 </dt>
77 <dd></dd>
78 <dt>
79 <a class="link" href="GVirConnection.html#GVirConnection-connection-closed" title='The "connection-closed" signal'>GVirConnection::connection-closed</a>, object signal in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
80 </dt>
81 <dd></dd>
82 <dt>
83 <a class="link" href="GVirConnection.html#GVirConnection-connection-opened" title='The "connection-opened" signal'>GVirConnection::connection-opened</a>, object signal in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
84 </dt>
85 <dd></dd>
86 <dt>
87 <a class="link" href="GVirConnection.html#GVirConnection-domain-added" title='The "domain-added" signal'>GVirConnection::domain-added</a>, object signal in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
88 </dt>
89 <dd></dd>
90 <dt>
91 <a class="link" href="GVirConnection.html#GVirConnection-domain-removed" title='The "domain-removed" signal'>GVirConnection::domain-removed</a>, object signal in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
92 </dt>
93 <dd></dd>
94 <dt>
95 <a class="link" href="GVirConnection.html#GVirConnection--handle" title='The "handle" property'>GVirConnection:handle</a>, object property in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
96 </dt>
97 <dd></dd>
98 <dt>
99 <a class="link" href="GVirConnection.html#GVirConnection--uri" title='The "uri" property'>GVirConnection:uri</a>, object property in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
100 </dt>
101 <dd></dd>
102 <dt>
103 <a class="link" href="GVirConnection.html#GVirConnectionClass" title="struct GVirConnectionClass">GVirConnectionClass</a>, struct in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
104 </dt>
105 <dd></dd>
106 <dt>
107 <a class="link" href="GVirDomain.html#GVirDomain-struct" title="struct GVirDomain">GVirDomain</a>, struct in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
108 </dt>
109 <dd></dd>
110 <dt>
111 <a class="link" href="GVirDomain.html#GVirDomain-pmsuspended" title='The "pmsuspended" signal'>GVirDomain::pmsuspended</a>, object signal in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
112 </dt>
113 <dd></dd>
114 <dt>
115 <a class="link" href="GVirDomain.html#GVirDomain-resumed" title='The "resumed" signal'>GVirDomain::resumed</a>, object signal in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
116 </dt>
117 <dd></dd>
118 <dt>
119 <a class="link" href="GVirDomain.html#GVirDomain-started" title='The "started" signal'>GVirDomain::started</a>, object signal in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
120 </dt>
121 <dd></dd>
122 <dt>
123 <a class="link" href="GVirDomain.html#GVirDomain-stopped" title='The "stopped" signal'>GVirDomain::stopped</a>, object signal in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
124 </dt>
125 <dd></dd>
126 <dt>
127 <a class="link" href="GVirDomain.html#GVirDomain-suspended" title='The "suspended" signal'>GVirDomain::suspended</a>, object signal in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
128 </dt>
129 <dd></dd>
130 <dt>
131 <a class="link" href="GVirDomain.html#GVirDomain-updated" title='The "updated" signal'>GVirDomain::updated</a>, object signal in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
132 </dt>
133 <dd></dd>
134 <dt>
135 <a class="link" href="GVirDomain.html#GVirDomain--handle" title='The "handle" property'>GVirDomain:handle</a>, object property in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
136 </dt>
137 <dd></dd>
138 <dt>
139 <a class="link" href="GVirDomain.html#GVirDomain--persistent" title='The "persistent" property'>GVirDomain:persistent</a>, object property in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
140 </dt>
141 <dd></dd>
142 <dt>
143 <a class="link" href="GVirDomain.html#GVirDomainClass" title="struct GVirDomainClass">GVirDomainClass</a>, struct in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
70 <a class="link" href="GVirConnection.html#GVirConnection-connection-closed" title="The “connection-closed” signal">GVirConnection::connection-closed</a>, object signal in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
71 </dt>
72 <dd></dd>
73 <dt>
74 <a class="link" href="GVirConnection.html#GVirConnection-connection-opened" title="The “connection-opened” signal">GVirConnection::connection-opened</a>, object signal in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
75 </dt>
76 <dd></dd>
77 <dt>
78 <a class="link" href="GVirConnection.html#GVirConnection-domain-added" title="The “domain-added” signal">GVirConnection::domain-added</a>, object signal in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
79 </dt>
80 <dd></dd>
81 <dt>
82 <a class="link" href="GVirConnection.html#GVirConnection-domain-removed" title="The “domain-removed” signal">GVirConnection::domain-removed</a>, object signal in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
83 </dt>
84 <dd></dd>
85 <dt>
86 <a class="link" href="GVirConnection.html#GVirConnection--handle" title="The “handle” property">GVirConnection:handle</a>, object property in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
87 </dt>
88 <dd></dd>
89 <dt>
90 <a class="link" href="GVirConnection.html#GVirConnection--uri" title="The “uri” property">GVirConnection:uri</a>, object property in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
91 </dt>
92 <dd></dd>
93 <dt>
94 <a class="link" href="GVirDomain.html#GVirDomain-pmsuspended" title="The “pmsuspended” signal">GVirDomain::pmsuspended</a>, object signal in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
95 </dt>
96 <dd></dd>
97 <dt>
98 <a class="link" href="GVirDomain.html#GVirDomain-resumed" title="The “resumed” signal">GVirDomain::resumed</a>, object signal in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
99 </dt>
100 <dd></dd>
101 <dt>
102 <a class="link" href="GVirDomain.html#GVirDomain-started" title="The “started” signal">GVirDomain::started</a>, object signal in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
103 </dt>
104 <dd></dd>
105 <dt>
106 <a class="link" href="GVirDomain.html#GVirDomain-stopped" title="The “stopped” signal">GVirDomain::stopped</a>, object signal in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
107 </dt>
108 <dd></dd>
109 <dt>
110 <a class="link" href="GVirDomain.html#GVirDomain-suspended" title="The “suspended” signal">GVirDomain::suspended</a>, object signal in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
111 </dt>
112 <dd></dd>
113 <dt>
114 <a class="link" href="GVirDomain.html#GVirDomain-updated" title="The “updated” signal">GVirDomain::updated</a>, object signal in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
115 </dt>
116 <dd></dd>
117 <dt>
118 <a class="link" href="GVirDomain.html#GVirDomain--handle" title="The “handle” property">GVirDomain:handle</a>, object property in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
119 </dt>
120 <dd></dd>
121 <dt>
122 <a class="link" href="GVirDomain.html#GVirDomain--persistent" title="The “persistent” property">GVirDomain:persistent</a>, object property in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
144123 </dt>
145124 <dd></dd>
146125 <dt>
148127 </dt>
149128 <dd></dd>
150129 <dt>
151 GVirDomainDevice, struct in GVirDomainDevice
152 </dt>
153 <dd></dd>
154 <dt>
155130 GVirDomainDevice:config, object property in GVirDomainDevice
156131 </dt>
157132 <dd></dd>
160135 </dt>
161136 <dd></dd>
162137 <dt>
163 GVirDomainDeviceClass, struct in GVirDomainDevice
164 </dt>
165 <dd></dd>
166 <dt>
167 GVirDomainDisk, struct in GVirDomainDisk
168 </dt>
169 <dd></dd>
170 <dt>
171 GVirDomainDiskClass, struct in GVirDomainDisk
172 </dt>
173 <dd></dd>
174 <dt>
175 GVirDomainDiskStats, struct in GVirDomainDisk
176 </dt>
177 <dd></dd>
178 <dt>
179 <a class="link" href="GVirDomain.html#GVirDomainInfo-struct" title="struct GVirDomainInfo">GVirDomainInfo</a>, struct in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
180 </dt>
181 <dd></dd>
182 <dt>
183 GVirDomainInterface, struct in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
184 </dt>
185 <dd></dd>
186 <dt>
187 GVirDomainInterfaceClass, struct in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
188 </dt>
189 <dd></dd>
190 <dt>
191 GVirDomainInterfaceStats, struct in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
192 </dt>
193 <dd></dd>
194 <dt>
195138 <a class="link" href="GVirDomain.html#GVirDomainRebootFlags" title="enum GVirDomainRebootFlags">GVirDomainRebootFlags</a>, enum in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
196139 </dt>
197140 <dd></dd>
200143 </dt>
201144 <dd></dd>
202145 <dt>
203 <a class="link" href="GVirDomainSnapshot.html#GVirDomainSnapshot-struct" title="struct GVirDomainSnapshot">GVirDomainSnapshot</a>, struct in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
204 </dt>
205 <dd></dd>
206 <dt>
207 <a class="link" href="GVirDomainSnapshot.html#GVirDomainSnapshot--handle" title='The "handle" property'>GVirDomainSnapshot:handle</a>, object property in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
208 </dt>
209 <dd></dd>
210 <dt>
211 <a class="link" href="GVirDomainSnapshot.html#GVirDomainSnapshotClass" title="struct GVirDomainSnapshotClass">GVirDomainSnapshotClass</a>, struct in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
146 <a class="link" href="GVirDomainSnapshot.html#GVirDomainSnapshot--handle" title="The “handle” property">GVirDomainSnapshot:handle</a>, object property in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
212147 </dt>
213148 <dd></dd>
214149 <dt>
216151 </dt>
217152 <dd></dd>
218153 <dt>
154 <a class="link" href="GVirDomainSnapshot.html#GVirDomainSnapshotDeleteFlags" title="enum GVirDomainSnapshotDeleteFlags">GVirDomainSnapshotDeleteFlags</a>, enum in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
155 </dt>
156 <dd></dd>
157 <dt>
158 <a class="link" href="GVirDomain.html#GVirDomainSnapshotListFlags" title="enum GVirDomainSnapshotListFlags">GVirDomainSnapshotListFlags</a>, enum in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
159 </dt>
160 <dd></dd>
161 <dt>
162 <a class="link" href="GVirDomainSnapshot.html#GVirDomainSnapshotRevertFlags" title="enum GVirDomainSnapshotRevertFlags">GVirDomainSnapshotRevertFlags</a>, enum in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
163 </dt>
164 <dd></dd>
165 <dt>
219166 <a class="link" href="GVirDomain.html#GVirDomainStartFlags" title="enum GVirDomainStartFlags">GVirDomainStartFlags</a>, enum in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
220167 </dt>
221168 <dd></dd>
232179 </dt>
233180 <dd></dd>
234181 <dt>
235 GVirInputStreamClass, struct in GVirInputStream
236 </dt>
237 <dd></dd>
238 <dt>
239 <a class="link" href="Libvirt-gobject-GVir.html#GVirInterface-struct" title="struct GVirInterface">GVirInterface</a>, struct in <a class="link" href="Libvirt-gobject-GVir.html" title="GVir">GVir</a>
240 </dt>
241 <dd></dd>
242 <dt>
243 <a class="link" href="Libvirt-gobject-GVir.html#GVirInterface--handle" title='The "handle" property'>GVirInterface:handle</a>, object property in <a class="link" href="Libvirt-gobject-GVir.html" title="GVir">GVir</a>
244 </dt>
245 <dd></dd>
246 <dt>
247 <a class="link" href="Libvirt-gobject-GVir.html#GVirInterfaceClass" title="struct GVirInterfaceClass">GVirInterfaceClass</a>, struct in <a class="link" href="Libvirt-gobject-GVir.html" title="GVir">GVir</a>
248 </dt>
249 <dd></dd>
250 <dt>
251 <a class="link" href="GVirManager.html#GVirManager-struct" title="struct GVirManager">GVirManager</a>, struct in <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
252 </dt>
253 <dd></dd>
254 <dt>
255 <a class="link" href="GVirManager.html#GVirManager-connection-added" title='The "connection-added" signal'>GVirManager::connection-added</a>, object signal in <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
256 </dt>
257 <dd></dd>
258 <dt>
259 <a class="link" href="GVirManager.html#GVirManager-connection-removed" title='The "connection-removed" signal'>GVirManager::connection-removed</a>, object signal in <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
260 </dt>
261 <dd></dd>
262 <dt>
263 <a class="link" href="GVirManager.html#GVirManagerClass" title="struct GVirManagerClass">GVirManagerClass</a>, struct in <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
264 </dt>
265 <dd></dd>
266 <dt>
267 <a class="link" href="GVirNetwork.html#GVirNetwork-struct" title="struct GVirNetwork">GVirNetwork</a>, struct in <a class="link" href="GVirNetwork.html" title="GVirNetwork">GVirNetwork</a>
268 </dt>
269 <dd></dd>
270 <dt>
271 <a class="link" href="GVirNetwork.html#GVirNetwork--handle" title='The "handle" property'>GVirNetwork:handle</a>, object property in <a class="link" href="GVirNetwork.html" title="GVirNetwork">GVirNetwork</a>
272 </dt>
273 <dd></dd>
274 <dt>
275 <a class="link" href="GVirNetwork.html#GVirNetworkClass" title="struct GVirNetworkClass">GVirNetworkClass</a>, struct in <a class="link" href="GVirNetwork.html" title="GVirNetwork">GVirNetwork</a>
276 </dt>
277 <dd></dd>
278 <dt>
279 <a class="link" href="GVirNetworkFilter.html#GVirNetworkFilter-struct" title="struct GVirNetworkFilter">GVirNetworkFilter</a>, struct in <a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter">GVirNetworkFilter</a>
280 </dt>
281 <dd></dd>
282 <dt>
283 <a class="link" href="GVirNetworkFilter.html#GVirNetworkFilter--handle" title='The "handle" property'>GVirNetworkFilter:handle</a>, object property in <a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter">GVirNetworkFilter</a>
284 </dt>
285 <dd></dd>
286 <dt>
287 <a class="link" href="GVirNetworkFilter.html#GVirNetworkFilterClass" title="struct GVirNetworkFilterClass">GVirNetworkFilterClass</a>, struct in <a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter">GVirNetworkFilter</a>
288 </dt>
289 <dd></dd>
290 <dt>
291 <a class="link" href="GVirNodeDevice.html#GVirNodeDevice-struct" title="struct GVirNodeDevice">GVirNodeDevice</a>, struct in <a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice">GVirNodeDevice</a>
292 </dt>
293 <dd></dd>
294 <dt>
295 <a class="link" href="GVirNodeDevice.html#GVirNodeDevice--handle" title='The "handle" property'>GVirNodeDevice:handle</a>, object property in <a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice">GVirNodeDevice</a>
296 </dt>
297 <dd></dd>
298 <dt>
299 <a class="link" href="GVirNodeDevice.html#GVirNodeDeviceClass" title="struct GVirNodeDeviceClass">GVirNodeDeviceClass</a>, struct in <a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice">GVirNodeDevice</a>
300 </dt>
301 <dd></dd>
302 <dt>
303 <a class="link" href="GVirConnection.html#GVirNodeInfo-struct" title="struct GVirNodeInfo">GVirNodeInfo</a>, struct in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
304 </dt>
305 <dd></dd>
306 <dt>
307 GVirOutputStreamClass, struct in GVirOutputStream
308 </dt>
309 <dd></dd>
310 <dt>
311 <a class="link" href="GVirSecret.html#GVirSecret-struct" title="struct GVirSecret">GVirSecret</a>, struct in <a class="link" href="GVirSecret.html" title="GVirSecret">GVirSecret</a>
312 </dt>
313 <dd></dd>
314 <dt>
315 <a class="link" href="GVirSecret.html#GVirSecret--handle" title='The "handle" property'>GVirSecret:handle</a>, object property in <a class="link" href="GVirSecret.html" title="GVirSecret">GVirSecret</a>
316 </dt>
317 <dd></dd>
318 <dt>
319 <a class="link" href="GVirSecret.html#GVirSecretClass" title="struct GVirSecretClass">GVirSecretClass</a>, struct in <a class="link" href="GVirSecret.html" title="GVirSecret">GVirSecret</a>
320 </dt>
321 <dd></dd>
322 <dt>
323 <a class="link" href="GVirStoragePool.html#GVirStoragePool-struct" title="struct GVirStoragePool">GVirStoragePool</a>, struct in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
324 </dt>
325 <dd></dd>
326 <dt>
327 <a class="link" href="GVirStoragePool.html#GVirStoragePool--handle" title='The "handle" property'>GVirStoragePool:handle</a>, object property in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
328 </dt>
329 <dd></dd>
330 <dt>
331 <a class="link" href="GVirStoragePool.html#GVirStoragePoolClass" title="struct GVirStoragePoolClass">GVirStoragePoolClass</a>, struct in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
332 </dt>
333 <dd></dd>
334 <dt>
335 <a class="link" href="GVirStoragePool.html#GVirStoragePoolInfo-struct" title="struct GVirStoragePoolInfo">GVirStoragePoolInfo</a>, struct in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
182 <a class="link" href="GVirInterface.html#GVirInterface--handle" title="The “handle” property">GVirInterface:handle</a>, object property in <a class="link" href="GVirInterface.html" title="GVirInterface">GVirInterface</a>
183 </dt>
184 <dd></dd>
185 <dt>
186 <a class="link" href="GVirManager.html#GVirManager-connection-added" title="The “connection-added” signal">GVirManager::connection-added</a>, object signal in <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
187 </dt>
188 <dd></dd>
189 <dt>
190 <a class="link" href="GVirManager.html#GVirManager-connection-removed" title="The “connection-removed” signal">GVirManager::connection-removed</a>, object signal in <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
191 </dt>
192 <dd></dd>
193 <dt>
194 <a class="link" href="GVirNetwork.html#GVirNetwork--handle" title="The “handle” property">GVirNetwork:handle</a>, object property in <a class="link" href="GVirNetwork.html" title="GVirNetwork">GVirNetwork</a>
195 </dt>
196 <dd></dd>
197 <dt>
198 <a class="link" href="GVirNetworkFilter.html#GVirNetworkFilter--handle" title="The “handle” property">GVirNetworkFilter:handle</a>, object property in <a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter">GVirNetworkFilter</a>
199 </dt>
200 <dd></dd>
201 <dt>
202 <a class="link" href="GVirNodeDevice.html#GVirNodeDevice--handle" title="The “handle” property">GVirNodeDevice:handle</a>, object property in <a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice">GVirNodeDevice</a>
203 </dt>
204 <dd></dd>
205 <dt>
206 <a class="link" href="GVirSecret.html#GVirSecret--handle" title="The “handle” property">GVirSecret:handle</a>, object property in <a class="link" href="GVirSecret.html" title="GVirSecret">GVirSecret</a>
207 </dt>
208 <dd></dd>
209 <dt>
210 <a class="link" href="GVirStoragePool.html#GVirStoragePool--handle" title="The “handle” property">GVirStoragePool:handle</a>, object property in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
336211 </dt>
337212 <dd></dd>
338213 <dt>
340215 </dt>
341216 <dd></dd>
342217 <dt>
343 <a class="link" href="GVirStorageVol.html#GVirStorageVol-struct" title="struct GVirStorageVol">GVirStorageVol</a>, struct in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
344 </dt>
345 <dd></dd>
346 <dt>
347 <a class="link" href="GVirStorageVol.html#GVirStorageVol--handle" title='The "handle" property'>GVirStorageVol:handle</a>, object property in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
348 </dt>
349 <dd></dd>
350 <dt>
351 <a class="link" href="GVirStorageVol.html#GVirStorageVol--pool" title='The "pool" property'>GVirStorageVol:pool</a>, object property in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
352 </dt>
353 <dd></dd>
354 <dt>
355 <a class="link" href="GVirStorageVol.html#GVirStorageVolClass" title="struct GVirStorageVolClass">GVirStorageVolClass</a>, struct in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
356 </dt>
357 <dd></dd>
358 <dt>
359 <a class="link" href="GVirStorageVol.html#GVirStorageVolInfo-struct" title="struct GVirStorageVolInfo">GVirStorageVolInfo</a>, struct in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
218 <a class="link" href="GVirStorageVol.html#GVirStorageVol--handle" title="The “handle” property">GVirStorageVol:handle</a>, object property in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
219 </dt>
220 <dd></dd>
221 <dt>
222 <a class="link" href="GVirStorageVol.html#GVirStorageVol--pool" title="The “pool” property">GVirStorageVol:pool</a>, object property in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
360223 </dt>
361224 <dd></dd>
362225 <dt>
368231 </dt>
369232 <dd></dd>
370233 <dt>
371 <a class="link" href="GVirStream.html#GVirStream-struct" title="struct GVirStream">GVirStream</a>, struct in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
372 </dt>
373 <dd></dd>
374 <dt>
375 <a class="link" href="GVirStream.html#GVirStream--handle" title='The "handle" property'>GVirStream:handle</a>, object property in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
376 </dt>
377 <dd></dd>
378 <dt>
379 <a class="link" href="GVirStream.html#GVirStreamClass" title="struct GVirStreamClass">GVirStreamClass</a>, struct in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
234 <a class="link" href="GVirStream.html#GVirStream--handle" title="The “handle” property">GVirStream:handle</a>, object property in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
380235 </dt>
381236 <dd></dd>
382237 <dt>
384239 </dt>
385240 <dd></dd>
386241 <dt>
387 <a class="link" href="GVirStream.html#GVirStreamIOFunc" title="GVirStreamIOFunc ()">GVirStreamIOFunc</a>, user_function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
388 </dt>
389 <dd></dd>
390 <dt>
391 <a class="link" href="GVirStream.html#GVirStreamSinkFunc" title="GVirStreamSinkFunc ()">GVirStreamSinkFunc</a>, user_function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
392 </dt>
393 <dd></dd>
394 <dt>
395 <a class="link" href="GVirStream.html#GVirStreamSourceFunc" title="GVirStreamSourceFunc ()">GVirStreamSourceFunc</a>, user_function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
396 </dt>
397 <dd></dd>
398 <dt>
399 <a class="link" href="GVirConnection.html#gvir-connection-close" title="gvir_connection_close ()">gvir_connection_close</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
400 </dt>
401 <dd></dd>
402 <dt>
403 <a class="link" href="GVirConnection.html#gvir-connection-create-domain" title="gvir_connection_create_domain ()">gvir_connection_create_domain</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
404 </dt>
405 <dd></dd>
406 <dt>
407 <a class="link" href="GVirConnection.html#gvir-connection-create-storage-pool" title="gvir_connection_create_storage_pool ()">gvir_connection_create_storage_pool</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
408 </dt>
409 <dd></dd>
410 <dt>
411 <a class="link" href="GVirConnection.html#gvir-connection-fetch-domains" title="gvir_connection_fetch_domains ()">gvir_connection_fetch_domains</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
412 </dt>
413 <dd></dd>
414 <dt>
415 <a class="link" href="GVirConnection.html#gvir-connection-fetch-domains-async" title="gvir_connection_fetch_domains_async ()">gvir_connection_fetch_domains_async</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
416 </dt>
417 <dd></dd>
418 <dt>
419 <a class="link" href="GVirConnection.html#gvir-connection-fetch-domains-finish" title="gvir_connection_fetch_domains_finish ()">gvir_connection_fetch_domains_finish</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
420 </dt>
421 <dd></dd>
422 <dt>
423 <a class="link" href="GVirConnection.html#gvir-connection-fetch-storage-pools" title="gvir_connection_fetch_storage_pools ()">gvir_connection_fetch_storage_pools</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
424 </dt>
425 <dd></dd>
426 <dt>
427 <a class="link" href="GVirConnection.html#gvir-connection-fetch-storage-pools-async" title="gvir_connection_fetch_storage_pools_async ()">gvir_connection_fetch_storage_pools_async</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
428 </dt>
429 <dd></dd>
430 <dt>
431 <a class="link" href="GVirConnection.html#gvir-connection-fetch-storage-pools-finish" title="gvir_connection_fetch_storage_pools_finish ()">gvir_connection_fetch_storage_pools_finish</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
432 </dt>
433 <dd></dd>
434 <dt>
435 <a class="link" href="GVirConnection.html#gvir-connection-find-domain-by-id" title="gvir_connection_find_domain_by_id ()">gvir_connection_find_domain_by_id</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
436 </dt>
437 <dd></dd>
438 <dt>
439 <a class="link" href="GVirConnection.html#gvir-connection-find-domain-by-name" title="gvir_connection_find_domain_by_name ()">gvir_connection_find_domain_by_name</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
440 </dt>
441 <dd></dd>
442 <dt>
443 <a class="link" href="GVirConnection.html#gvir-connection-find-interface-by-mac" title="gvir_connection_find_interface_by_mac ()">gvir_connection_find_interface_by_mac</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
444 </dt>
445 <dd></dd>
446 <dt>
447 <a class="link" href="GVirConnection.html#gvir-connection-find-network-by-name" title="gvir_connection_find_network_by_name ()">gvir_connection_find_network_by_name</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
448 </dt>
449 <dd></dd>
450 <dt>
451 <a class="link" href="GVirConnection.html#gvir-connection-find-network-filter-by-name" title="gvir_connection_find_network_filter_by_name ()">gvir_connection_find_network_filter_by_name</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
452 </dt>
453 <dd></dd>
454 <dt>
455 <a class="link" href="GVirConnection.html#gvir-connection-find-storage-pool-by-name" title="gvir_connection_find_storage_pool_by_name ()">gvir_connection_find_storage_pool_by_name</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
456 </dt>
457 <dd></dd>
458 <dt>
459 <a class="link" href="GVirConnection.html#gvir-connection-get-capabilities" title="gvir_connection_get_capabilities ()">gvir_connection_get_capabilities</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
460 </dt>
461 <dd></dd>
462 <dt>
463 <a class="link" href="GVirConnection.html#gvir-connection-get-capabilities-async" title="gvir_connection_get_capabilities_async ()">gvir_connection_get_capabilities_async</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
464 </dt>
465 <dd></dd>
466 <dt>
467 <a class="link" href="GVirConnection.html#gvir-connection-get-capabilities-finish" title="gvir_connection_get_capabilities_finish ()">gvir_connection_get_capabilities_finish</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
468 </dt>
469 <dd></dd>
470 <dt>
471 <a class="link" href="GVirConnection.html#gvir-connection-get-domain" title="gvir_connection_get_domain ()">gvir_connection_get_domain</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
472 </dt>
473 <dd></dd>
474 <dt>
475 <a class="link" href="GVirConnection.html#gvir-connection-get-domains" title="gvir_connection_get_domains ()">gvir_connection_get_domains</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
476 </dt>
477 <dd></dd>
478 <dt>
479 <a class="link" href="GVirConnection.html#gvir-connection-get-hypervisor-name" title="gvir_connection_get_hypervisor_name ()">gvir_connection_get_hypervisor_name</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
480 </dt>
481 <dd></dd>
482 <dt>
483 <a class="link" href="GVirConnection.html#gvir-connection-get-interface" title="gvir_connection_get_interface ()">gvir_connection_get_interface</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
484 </dt>
485 <dd></dd>
486 <dt>
487 <a class="link" href="GVirConnection.html#gvir-connection-get-interfaces" title="gvir_connection_get_interfaces ()">gvir_connection_get_interfaces</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
488 </dt>
489 <dd></dd>
490 <dt>
491 <a class="link" href="GVirConnection.html#gvir-connection-get-network" title="gvir_connection_get_network ()">gvir_connection_get_network</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
492 </dt>
493 <dd></dd>
494 <dt>
495 <a class="link" href="GVirConnection.html#gvir-connection-get-networks" title="gvir_connection_get_networks ()">gvir_connection_get_networks</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
496 </dt>
497 <dd></dd>
498 <dt>
499 <a class="link" href="GVirConnection.html#gvir-connection-get-network-filter" title="gvir_connection_get_network_filter ()">gvir_connection_get_network_filter</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
500 </dt>
501 <dd></dd>
502 <dt>
503 <a class="link" href="GVirConnection.html#gvir-connection-get-network-filters" title="gvir_connection_get_network_filters ()">gvir_connection_get_network_filters</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
504 </dt>
505 <dd></dd>
506 <dt>
507 <a class="link" href="GVirConnection.html#gvir-connection-get-node-device" title="gvir_connection_get_node_device ()">gvir_connection_get_node_device</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
508 </dt>
509 <dd></dd>
510 <dt>
511 <a class="link" href="GVirConnection.html#gvir-connection-get-node-devices" title="gvir_connection_get_node_devices ()">gvir_connection_get_node_devices</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
512 </dt>
513 <dd></dd>
514 <dt>
515 <a class="link" href="GVirConnection.html#gvir-connection-get-node-info" title="gvir_connection_get_node_info ()">gvir_connection_get_node_info</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
516 </dt>
517 <dd></dd>
518 <dt>
519 <a class="link" href="GVirConnection.html#gvir-connection-get-secret" title="gvir_connection_get_secret ()">gvir_connection_get_secret</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
520 </dt>
521 <dd></dd>
522 <dt>
523 <a class="link" href="GVirConnection.html#gvir-connection-get-secrets" title="gvir_connection_get_secrets ()">gvir_connection_get_secrets</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
524 </dt>
525 <dd></dd>
526 <dt>
527 <a class="link" href="GVirConnection.html#gvir-connection-get-storage-pool" title="gvir_connection_get_storage_pool ()">gvir_connection_get_storage_pool</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
528 </dt>
529 <dd></dd>
530 <dt>
531 <a class="link" href="GVirConnection.html#gvir-connection-get-storage-pools" title="gvir_connection_get_storage_pools ()">gvir_connection_get_storage_pools</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
532 </dt>
533 <dd></dd>
534 <dt>
535 <a class="link" href="GVirConnection.html#gvir-connection-get-stream" title="gvir_connection_get_stream ()">gvir_connection_get_stream</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
536 </dt>
537 <dd></dd>
538 <dt>
539 <a class="link" href="GVirConnection.html#gvir-connection-get-uri" title="gvir_connection_get_uri ()">gvir_connection_get_uri</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
540 </dt>
541 <dd></dd>
542 <dt>
543 <a class="link" href="GVirConnection.html#gvir-connection-get-version" title="gvir_connection_get_version ()">gvir_connection_get_version</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
544 </dt>
545 <dd></dd>
546 <dt>
547 <a class="link" href="GVirConnection.html#gvir-connection-is-open" title="gvir_connection_is_open ()">gvir_connection_is_open</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
548 </dt>
549 <dd></dd>
550 <dt>
551 <a class="link" href="GVirConnection.html#gvir-connection-is-read-only" title="gvir_connection_is_read_only ()">gvir_connection_is_read_only</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
552 </dt>
553 <dd></dd>
554 <dt>
555 <a class="link" href="GVirConnection.html#gvir-connection-new" title="gvir_connection_new ()">gvir_connection_new</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
556 </dt>
557 <dd></dd>
558 <dt>
559 <a class="link" href="GVirConnection.html#gvir-connection-open" title="gvir_connection_open ()">gvir_connection_open</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
560 </dt>
561 <dd></dd>
562 <dt>
563 <a class="link" href="GVirConnection.html#gvir-connection-open-async" title="gvir_connection_open_async ()">gvir_connection_open_async</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
564 </dt>
565 <dd></dd>
566 <dt>
567 <a class="link" href="GVirConnection.html#gvir-connection-open-finish" title="gvir_connection_open_finish ()">gvir_connection_open_finish</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
568 </dt>
569 <dd></dd>
570 <dt>
571 <a class="link" href="GVirConnection.html#gvir-connection-open-read-only" title="gvir_connection_open_read_only ()">gvir_connection_open_read_only</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
572 </dt>
573 <dd></dd>
574 <dt>
575 <a class="link" href="GVirConnection.html#gvir-connection-open-read-only-async" title="gvir_connection_open_read_only_async ()">gvir_connection_open_read_only_async</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
576 </dt>
577 <dd></dd>
578 <dt>
579 <a class="link" href="GVirConnection.html#gvir-connection-open-read-only-finish" title="gvir_connection_open_read_only_finish ()">gvir_connection_open_read_only_finish</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
580 </dt>
581 <dd></dd>
582 <dt>
583 <a class="link" href="GVirConnection.html#gvir-connection-restore-domain-from-file" title="gvir_connection_restore_domain_from_file ()">gvir_connection_restore_domain_from_file</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
584 </dt>
585 <dd></dd>
586 <dt>
587 <a class="link" href="GVirConnection.html#gvir-connection-restore-domain-from-file-async" title="gvir_connection_restore_domain_from_file_async ()">gvir_connection_restore_domain_from_file_async</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
588 </dt>
589 <dd></dd>
590 <dt>
591 <a class="link" href="GVirConnection.html#gvir-connection-restore-domain-from-file-finish" title="gvir_connection_restore_domain_from_file_finish ()">gvir_connection_restore_domain_from_file_finish</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
592 </dt>
593 <dd></dd>
594 <dt>
595 <a class="link" href="GVirConnection.html#gvir-connection-start-domain" title="gvir_connection_start_domain ()">gvir_connection_start_domain</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
596 </dt>
597 <dd></dd>
598 <dt>
599 <a class="link" href="GVirDomain.html#gvir-domain-create-snapshot" title="gvir_domain_create_snapshot ()">gvir_domain_create_snapshot</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
600 </dt>
601 <dd></dd>
602 <dt>
603 <a class="link" href="GVirDomain.html#gvir-domain-delete" title="gvir_domain_delete ()">gvir_domain_delete</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
242 <a class="link" href="GVirStream.html#GVirStreamIOFunc" title="GVirStreamIOFunc ()">GVirStreamIOFunc</a>, user_function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
243 </dt>
244 <dd></dd>
245 <dt>
246 <a class="link" href="GVirStream.html#GVirStreamSinkFunc" title="GVirStreamSinkFunc ()">GVirStreamSinkFunc</a>, user_function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
247 </dt>
248 <dd></dd>
249 <dt>
250 <a class="link" href="GVirStream.html#GVirStreamSourceFunc" title="GVirStreamSourceFunc ()">GVirStreamSourceFunc</a>, user_function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
251 </dt>
252 <dd></dd>
253 <dt>
254 <a class="link" href="GVirConnection.html#gvir-connection-close" title="gvir_connection_close ()">gvir_connection_close</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
255 </dt>
256 <dd></dd>
257 <dt>
258 <a class="link" href="GVirConnection.html#gvir-connection-create-domain" title="gvir_connection_create_domain ()">gvir_connection_create_domain</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
259 </dt>
260 <dd></dd>
261 <dt>
262 <a class="link" href="GVirConnection.html#gvir-connection-create-storage-pool" title="gvir_connection_create_storage_pool ()">gvir_connection_create_storage_pool</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
263 </dt>
264 <dd></dd>
265 <dt>
266 <a class="link" href="GVirConnection.html#gvir-connection-fetch-domains" title="gvir_connection_fetch_domains ()">gvir_connection_fetch_domains</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
267 </dt>
268 <dd></dd>
269 <dt>
270 <a class="link" href="GVirConnection.html#gvir-connection-fetch-domains-async" title="gvir_connection_fetch_domains_async ()">gvir_connection_fetch_domains_async</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
271 </dt>
272 <dd></dd>
273 <dt>
274 <a class="link" href="GVirConnection.html#gvir-connection-fetch-domains-finish" title="gvir_connection_fetch_domains_finish ()">gvir_connection_fetch_domains_finish</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
275 </dt>
276 <dd></dd>
277 <dt>
278 <a class="link" href="GVirConnection.html#gvir-connection-fetch-storage-pools" title="gvir_connection_fetch_storage_pools ()">gvir_connection_fetch_storage_pools</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
279 </dt>
280 <dd></dd>
281 <dt>
282 <a class="link" href="GVirConnection.html#gvir-connection-fetch-storage-pools-async" title="gvir_connection_fetch_storage_pools_async ()">gvir_connection_fetch_storage_pools_async</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
283 </dt>
284 <dd></dd>
285 <dt>
286 <a class="link" href="GVirConnection.html#gvir-connection-fetch-storage-pools-finish" title="gvir_connection_fetch_storage_pools_finish ()">gvir_connection_fetch_storage_pools_finish</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
287 </dt>
288 <dd></dd>
289 <dt>
290 <a class="link" href="GVirConnection.html#gvir-connection-find-domain-by-id" title="gvir_connection_find_domain_by_id ()">gvir_connection_find_domain_by_id</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
291 </dt>
292 <dd></dd>
293 <dt>
294 <a class="link" href="GVirConnection.html#gvir-connection-find-domain-by-name" title="gvir_connection_find_domain_by_name ()">gvir_connection_find_domain_by_name</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
295 </dt>
296 <dd></dd>
297 <dt>
298 <a class="link" href="GVirConnection.html#gvir-connection-find-interface-by-mac" title="gvir_connection_find_interface_by_mac ()">gvir_connection_find_interface_by_mac</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
299 </dt>
300 <dd></dd>
301 <dt>
302 <a class="link" href="GVirConnection.html#gvir-connection-find-network-by-name" title="gvir_connection_find_network_by_name ()">gvir_connection_find_network_by_name</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
303 </dt>
304 <dd></dd>
305 <dt>
306 <a class="link" href="GVirConnection.html#gvir-connection-find-network-filter-by-name" title="gvir_connection_find_network_filter_by_name ()">gvir_connection_find_network_filter_by_name</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
307 </dt>
308 <dd></dd>
309 <dt>
310 <a class="link" href="GVirConnection.html#gvir-connection-find-storage-pool-by-name" title="gvir_connection_find_storage_pool_by_name ()">gvir_connection_find_storage_pool_by_name</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
311 </dt>
312 <dd></dd>
313 <dt>
314 <a class="link" href="GVirConnection.html#gvir-connection-get-capabilities" title="gvir_connection_get_capabilities ()">gvir_connection_get_capabilities</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
315 </dt>
316 <dd></dd>
317 <dt>
318 <a class="link" href="GVirConnection.html#gvir-connection-get-capabilities-async" title="gvir_connection_get_capabilities_async ()">gvir_connection_get_capabilities_async</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
319 </dt>
320 <dd></dd>
321 <dt>
322 <a class="link" href="GVirConnection.html#gvir-connection-get-capabilities-finish" title="gvir_connection_get_capabilities_finish ()">gvir_connection_get_capabilities_finish</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
323 </dt>
324 <dd></dd>
325 <dt>
326 <a class="link" href="GVirConnection.html#gvir-connection-get-domain" title="gvir_connection_get_domain ()">gvir_connection_get_domain</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
327 </dt>
328 <dd></dd>
329 <dt>
330 <a class="link" href="GVirConnection.html#gvir-connection-get-domains" title="gvir_connection_get_domains ()">gvir_connection_get_domains</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
331 </dt>
332 <dd></dd>
333 <dt>
334 <a class="link" href="GVirConnection.html#gvir-connection-get-hypervisor-name" title="gvir_connection_get_hypervisor_name ()">gvir_connection_get_hypervisor_name</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
335 </dt>
336 <dd></dd>
337 <dt>
338 <a class="link" href="GVirConnection.html#gvir-connection-get-interface" title="gvir_connection_get_interface ()">gvir_connection_get_interface</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
339 </dt>
340 <dd></dd>
341 <dt>
342 <a class="link" href="GVirConnection.html#gvir-connection-get-interfaces" title="gvir_connection_get_interfaces ()">gvir_connection_get_interfaces</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
343 </dt>
344 <dd></dd>
345 <dt>
346 <a class="link" href="GVirConnection.html#gvir-connection-get-network" title="gvir_connection_get_network ()">gvir_connection_get_network</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
347 </dt>
348 <dd></dd>
349 <dt>
350 <a class="link" href="GVirConnection.html#gvir-connection-get-networks" title="gvir_connection_get_networks ()">gvir_connection_get_networks</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
351 </dt>
352 <dd></dd>
353 <dt>
354 <a class="link" href="GVirConnection.html#gvir-connection-get-network-filter" title="gvir_connection_get_network_filter ()">gvir_connection_get_network_filter</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
355 </dt>
356 <dd></dd>
357 <dt>
358 <a class="link" href="GVirConnection.html#gvir-connection-get-network-filters" title="gvir_connection_get_network_filters ()">gvir_connection_get_network_filters</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
359 </dt>
360 <dd></dd>
361 <dt>
362 <a class="link" href="GVirConnection.html#gvir-connection-get-node-device" title="gvir_connection_get_node_device ()">gvir_connection_get_node_device</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
363 </dt>
364 <dd></dd>
365 <dt>
366 <a class="link" href="GVirConnection.html#gvir-connection-get-node-devices" title="gvir_connection_get_node_devices ()">gvir_connection_get_node_devices</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
367 </dt>
368 <dd></dd>
369 <dt>
370 <a class="link" href="GVirConnection.html#gvir-connection-get-node-info" title="gvir_connection_get_node_info ()">gvir_connection_get_node_info</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
371 </dt>
372 <dd></dd>
373 <dt>
374 <a class="link" href="GVirConnection.html#gvir-connection-get-secret" title="gvir_connection_get_secret ()">gvir_connection_get_secret</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
375 </dt>
376 <dd></dd>
377 <dt>
378 <a class="link" href="GVirConnection.html#gvir-connection-get-secrets" title="gvir_connection_get_secrets ()">gvir_connection_get_secrets</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
379 </dt>
380 <dd></dd>
381 <dt>
382 <a class="link" href="GVirConnection.html#gvir-connection-get-storage-pool" title="gvir_connection_get_storage_pool ()">gvir_connection_get_storage_pool</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
383 </dt>
384 <dd></dd>
385 <dt>
386 <a class="link" href="GVirConnection.html#gvir-connection-get-storage-pools" title="gvir_connection_get_storage_pools ()">gvir_connection_get_storage_pools</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
387 </dt>
388 <dd></dd>
389 <dt>
390 <a class="link" href="GVirConnection.html#gvir-connection-get-stream" title="gvir_connection_get_stream ()">gvir_connection_get_stream</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
391 </dt>
392 <dd></dd>
393 <dt>
394 <a class="link" href="GVirConnection.html#gvir-connection-get-uri" title="gvir_connection_get_uri ()">gvir_connection_get_uri</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
395 </dt>
396 <dd></dd>
397 <dt>
398 <a class="link" href="GVirConnection.html#gvir-connection-get-version" title="gvir_connection_get_version ()">gvir_connection_get_version</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
399 </dt>
400 <dd></dd>
401 <dt>
402 <a class="link" href="GVirConnection.html#gvir-connection-is-open" title="gvir_connection_is_open ()">gvir_connection_is_open</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
403 </dt>
404 <dd></dd>
405 <dt>
406 <a class="link" href="GVirConnection.html#gvir-connection-is-read-only" title="gvir_connection_is_read_only ()">gvir_connection_is_read_only</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
407 </dt>
408 <dd></dd>
409 <dt>
410 <a class="link" href="GVirConnection.html#gvir-connection-new" title="gvir_connection_new ()">gvir_connection_new</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
411 </dt>
412 <dd></dd>
413 <dt>
414 <a class="link" href="GVirConnection.html#gvir-connection-open" title="gvir_connection_open ()">gvir_connection_open</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
415 </dt>
416 <dd></dd>
417 <dt>
418 <a class="link" href="GVirConnection.html#gvir-connection-open-async" title="gvir_connection_open_async ()">gvir_connection_open_async</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
419 </dt>
420 <dd></dd>
421 <dt>
422 <a class="link" href="GVirConnection.html#gvir-connection-open-finish" title="gvir_connection_open_finish ()">gvir_connection_open_finish</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
423 </dt>
424 <dd></dd>
425 <dt>
426 <a class="link" href="GVirConnection.html#gvir-connection-open-read-only" title="gvir_connection_open_read_only ()">gvir_connection_open_read_only</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
427 </dt>
428 <dd></dd>
429 <dt>
430 <a class="link" href="GVirConnection.html#gvir-connection-open-read-only-async" title="gvir_connection_open_read_only_async ()">gvir_connection_open_read_only_async</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
431 </dt>
432 <dd></dd>
433 <dt>
434 <a class="link" href="GVirConnection.html#gvir-connection-open-read-only-finish" title="gvir_connection_open_read_only_finish ()">gvir_connection_open_read_only_finish</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
435 </dt>
436 <dd></dd>
437 <dt>
438 <a class="link" href="GVirConnection.html#gvir-connection-restore-domain-from-file" title="gvir_connection_restore_domain_from_file ()">gvir_connection_restore_domain_from_file</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
439 </dt>
440 <dd></dd>
441 <dt>
442 <a class="link" href="GVirConnection.html#gvir-connection-restore-domain-from-file-async" title="gvir_connection_restore_domain_from_file_async ()">gvir_connection_restore_domain_from_file_async</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
443 </dt>
444 <dd></dd>
445 <dt>
446 <a class="link" href="GVirConnection.html#gvir-connection-restore-domain-from-file-finish" title="gvir_connection_restore_domain_from_file_finish ()">gvir_connection_restore_domain_from_file_finish</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
447 </dt>
448 <dd></dd>
449 <dt>
450 <a class="link" href="GVirConnection.html#gvir-connection-start-domain" title="gvir_connection_start_domain ()">gvir_connection_start_domain</a>, function in <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
451 </dt>
452 <dd></dd>
453 <dt>
454 <a class="link" href="GVirDomain.html#gvir-domain-create-snapshot" title="gvir_domain_create_snapshot ()">gvir_domain_create_snapshot</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
455 </dt>
456 <dd></dd>
457 <dt>
458 <a class="link" href="GVirDomain.html#gvir-domain-create-snapshot-async" title="gvir_domain_create_snapshot_async ()">gvir_domain_create_snapshot_async</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
459 </dt>
460 <dd></dd>
461 <dt>
462 <a class="link" href="GVirDomain.html#gvir-domain-create-snapshot-finish" title="gvir_domain_create_snapshot_finish ()">gvir_domain_create_snapshot_finish</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
463 </dt>
464 <dd></dd>
465 <dt>
466 <a class="link" href="GVirDomain.html#gvir-domain-delete" title="gvir_domain_delete ()">gvir_domain_delete</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
604467 </dt>
605468 <dd></dd>
606469 <dt>
624487 </dt>
625488 <dd></dd>
626489 <dt>
627 <a class="link" href="GVirDomain.html#gvir-domain-get-config" title="gvir_domain_get_config ()">gvir_domain_get_config</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
628 </dt>
629 <dd></dd>
630 <dt>
631 <a class="link" href="GVirDomain.html#gvir-domain-get-devices" title="gvir_domain_get_devices ()">gvir_domain_get_devices</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
632 </dt>
633 <dd></dd>
634 <dt>
635 <a class="link" href="GVirDomain.html#gvir-domain-get-id" title="gvir_domain_get_id ()">gvir_domain_get_id</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
636 </dt>
637 <dd></dd>
638 <dt>
639 <a class="link" href="GVirDomain.html#gvir-domain-get-info" title="gvir_domain_get_info ()">gvir_domain_get_info</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
640 </dt>
641 <dd></dd>
642 <dt>
643 <a class="link" href="GVirDomain.html#gvir-domain-get-info-async" title="gvir_domain_get_info_async ()">gvir_domain_get_info_async</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
644 </dt>
645 <dd></dd>
646 <dt>
647 <a class="link" href="GVirDomain.html#gvir-domain-get-info-finish" title="gvir_domain_get_info_finish ()">gvir_domain_get_info_finish</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
648 </dt>
649 <dd></dd>
650 <dt>
651 <a class="link" href="GVirDomain.html#gvir-domain-get-name" title="gvir_domain_get_name ()">gvir_domain_get_name</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
652 </dt>
653 <dd></dd>
654 <dt>
655 <a class="link" href="GVirDomain.html#gvir-domain-get-persistent" title="gvir_domain_get_persistent ()">gvir_domain_get_persistent</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
656 </dt>
657 <dd></dd>
658 <dt>
659 <a class="link" href="GVirDomain.html#gvir-domain-get-saved" title="gvir_domain_get_saved ()">gvir_domain_get_saved</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
660 </dt>
661 <dd></dd>
662 <dt>
663 <a class="link" href="GVirDomain.html#gvir-domain-get-uuid" title="gvir_domain_get_uuid ()">gvir_domain_get_uuid</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
664 </dt>
665 <dd></dd>
666 <dt>
667 gvir_domain_interface_get_stats, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
668 </dt>
669 <dd></dd>
670 <dt>
671 <a class="link" href="GVirDomain.html#gvir-domain-open-console" title="gvir_domain_open_console ()">gvir_domain_open_console</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
672 </dt>
673 <dd></dd>
674 <dt>
675 <a class="link" href="GVirDomain.html#gvir-domain-open-graphics" title="gvir_domain_open_graphics ()">gvir_domain_open_graphics</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
676 </dt>
677 <dd></dd>
678 <dt>
679 <a class="link" href="GVirDomain.html#gvir-domain-reboot" title="gvir_domain_reboot ()">gvir_domain_reboot</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
680 </dt>
681 <dd></dd>
682 <dt>
683 <a class="link" href="GVirDomain.html#gvir-domain-resume" title="gvir_domain_resume ()">gvir_domain_resume</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
684 </dt>
685 <dd></dd>
686 <dt>
687 <a class="link" href="GVirDomain.html#gvir-domain-resume-async" title="gvir_domain_resume_async ()">gvir_domain_resume_async</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
688 </dt>
689 <dd></dd>
690 <dt>
691 <a class="link" href="GVirDomain.html#gvir-domain-resume-finish" title="gvir_domain_resume_finish ()">gvir_domain_resume_finish</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
692 </dt>
693 <dd></dd>
694 <dt>
695 <a class="link" href="GVirDomain.html#gvir-domain-save" title="gvir_domain_save ()">gvir_domain_save</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
696 </dt>
697 <dd></dd>
698 <dt>
699 <a class="link" href="GVirDomain.html#gvir-domain-save-async" title="gvir_domain_save_async ()">gvir_domain_save_async</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
700 </dt>
701 <dd></dd>
702 <dt>
703 <a class="link" href="GVirDomain.html#gvir-domain-save-finish" title="gvir_domain_save_finish ()">gvir_domain_save_finish</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
704 </dt>
705 <dd></dd>
706 <dt>
707 <a class="link" href="GVirDomain.html#gvir-domain-save-to-file" title="gvir_domain_save_to_file ()">gvir_domain_save_to_file</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
708 </dt>
709 <dd></dd>
710 <dt>
711 <a class="link" href="GVirDomain.html#gvir-domain-save-to-file-async" title="gvir_domain_save_to_file_async ()">gvir_domain_save_to_file_async</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
712 </dt>
713 <dd></dd>
714 <dt>
715 <a class="link" href="GVirDomain.html#gvir-domain-save-to-file-finish" title="gvir_domain_save_to_file_finish ()">gvir_domain_save_to_file_finish</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
716 </dt>
717 <dd></dd>
718 <dt>
719 <a class="link" href="GVirDomain.html#gvir-domain-screenshot" title="gvir_domain_screenshot ()">gvir_domain_screenshot</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
720 </dt>
721 <dd></dd>
722 <dt>
723 <a class="link" href="GVirDomain.html#gvir-domain-set-config" title="gvir_domain_set_config ()">gvir_domain_set_config</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
724 </dt>
725 <dd></dd>
726 <dt>
727 <a class="link" href="GVirDomain.html#gvir-domain-shutdown" title="gvir_domain_shutdown ()">gvir_domain_shutdown</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
728 </dt>
729 <dd></dd>
730 <dt>
731 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-get-config" title="gvir_domain_snapshot_get_config ()">gvir_domain_snapshot_get_config</a>, function in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
732 </dt>
733 <dd></dd>
734 <dt>
735 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-get-name" title="gvir_domain_snapshot_get_name ()">gvir_domain_snapshot_get_name</a>, function in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
736 </dt>
737 <dd></dd>
738 <dt>
739 <a class="link" href="GVirDomain.html#gvir-domain-start" title="gvir_domain_start ()">gvir_domain_start</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
740 </dt>
741 <dd></dd>
742 <dt>
743 <a class="link" href="GVirDomain.html#gvir-domain-start-async" title="gvir_domain_start_async ()">gvir_domain_start_async</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
744 </dt>
745 <dd></dd>
746 <dt>
747 <a class="link" href="GVirDomain.html#gvir-domain-start-finish" title="gvir_domain_start_finish ()">gvir_domain_start_finish</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
748 </dt>
749 <dd></dd>
750 <dt>
751 <a class="link" href="GVirDomain.html#gvir-domain-stop" title="gvir_domain_stop ()">gvir_domain_stop</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
752 </dt>
753 <dd></dd>
754 <dt>
755 <a class="link" href="GVirDomain.html#gvir-domain-suspend" title="gvir_domain_suspend ()">gvir_domain_suspend</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
756 </dt>
757 <dd></dd>
758 <dt>
759 <a class="link" href="GVirDomain.html#gvir-domain-update-device" title="gvir_domain_update_device ()">gvir_domain_update_device</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
760 </dt>
761 <dd></dd>
762 <dt>
763 <a class="link" href="GVirDomain.html#gvir-domain-wakeup" title="gvir_domain_wakeup ()">gvir_domain_wakeup</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
764 </dt>
765 <dd></dd>
766 <dt>
767 <a class="link" href="GVirDomain.html#gvir-domain-wakeup-async" title="gvir_domain_wakeup_async ()">gvir_domain_wakeup_async</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
768 </dt>
769 <dd></dd>
770 <dt>
771 <a class="link" href="GVirDomain.html#gvir-domain-wakeup-finish" title="gvir_domain_wakeup_finish ()">gvir_domain_wakeup_finish</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
490 <a class="link" href="GVirDomain.html#gvir-domain-fetch-snapshots" title="gvir_domain_fetch_snapshots ()">gvir_domain_fetch_snapshots</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
491 </dt>
492 <dd></dd>
493 <dt>
494 <a class="link" href="GVirDomain.html#gvir-domain-fetch-snapshots-async" title="gvir_domain_fetch_snapshots_async ()">gvir_domain_fetch_snapshots_async</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
495 </dt>
496 <dd></dd>
497 <dt>
498 <a class="link" href="GVirDomain.html#gvir-domain-fetch-snapshots-finish" title="gvir_domain_fetch_snapshots_finish ()">gvir_domain_fetch_snapshots_finish</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
499 </dt>
500 <dd></dd>
501 <dt>
502 <a class="link" href="GVirDomain.html#gvir-domain-get-config" title="gvir_domain_get_config ()">gvir_domain_get_config</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
503 </dt>
504 <dd></dd>
505 <dt>
506 <a class="link" href="GVirDomain.html#gvir-domain-get-devices" title="gvir_domain_get_devices ()">gvir_domain_get_devices</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
507 </dt>
508 <dd></dd>
509 <dt>
510 <a class="link" href="GVirDomain.html#gvir-domain-get-has-current-snapshot" title="gvir_domain_get_has_current_snapshot ()">gvir_domain_get_has_current_snapshot</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
511 </dt>
512 <dd></dd>
513 <dt>
514 <a class="link" href="GVirDomain.html#gvir-domain-get-id" title="gvir_domain_get_id ()">gvir_domain_get_id</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
515 </dt>
516 <dd></dd>
517 <dt>
518 <a class="link" href="GVirDomain.html#gvir-domain-get-info" title="gvir_domain_get_info ()">gvir_domain_get_info</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
519 </dt>
520 <dd></dd>
521 <dt>
522 <a class="link" href="GVirDomain.html#gvir-domain-get-info-async" title="gvir_domain_get_info_async ()">gvir_domain_get_info_async</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
523 </dt>
524 <dd></dd>
525 <dt>
526 <a class="link" href="GVirDomain.html#gvir-domain-get-info-finish" title="gvir_domain_get_info_finish ()">gvir_domain_get_info_finish</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
527 </dt>
528 <dd></dd>
529 <dt>
530 <a class="link" href="GVirDomain.html#gvir-domain-get-name" title="gvir_domain_get_name ()">gvir_domain_get_name</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
531 </dt>
532 <dd></dd>
533 <dt>
534 <a class="link" href="GVirDomain.html#gvir-domain-get-persistent" title="gvir_domain_get_persistent ()">gvir_domain_get_persistent</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
535 </dt>
536 <dd></dd>
537 <dt>
538 <a class="link" href="GVirDomain.html#gvir-domain-get-saved" title="gvir_domain_get_saved ()">gvir_domain_get_saved</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
539 </dt>
540 <dd></dd>
541 <dt>
542 <a class="link" href="GVirDomain.html#gvir-domain-get-snapshots" title="gvir_domain_get_snapshots ()">gvir_domain_get_snapshots</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
543 </dt>
544 <dd></dd>
545 <dt>
546 <a class="link" href="GVirDomain.html#gvir-domain-get-uuid" title="gvir_domain_get_uuid ()">gvir_domain_get_uuid</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
547 </dt>
548 <dd></dd>
549 <dt>
550 gvir_domain_interface_get_stats, function in GVirDomainInterface
551 </dt>
552 <dd></dd>
553 <dt>
554 <a class="link" href="GVirDomain.html#gvir-domain-open-console" title="gvir_domain_open_console ()">gvir_domain_open_console</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
555 </dt>
556 <dd></dd>
557 <dt>
558 <a class="link" href="GVirDomain.html#gvir-domain-open-graphics" title="gvir_domain_open_graphics ()">gvir_domain_open_graphics</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
559 </dt>
560 <dd></dd>
561 <dt>
562 <a class="link" href="GVirDomain.html#gvir-domain-reboot" title="gvir_domain_reboot ()">gvir_domain_reboot</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
563 </dt>
564 <dd></dd>
565 <dt>
566 <a class="link" href="GVirDomain.html#gvir-domain-resume" title="gvir_domain_resume ()">gvir_domain_resume</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
567 </dt>
568 <dd></dd>
569 <dt>
570 <a class="link" href="GVirDomain.html#gvir-domain-resume-async" title="gvir_domain_resume_async ()">gvir_domain_resume_async</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
571 </dt>
572 <dd></dd>
573 <dt>
574 <a class="link" href="GVirDomain.html#gvir-domain-resume-finish" title="gvir_domain_resume_finish ()">gvir_domain_resume_finish</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
575 </dt>
576 <dd></dd>
577 <dt>
578 <a class="link" href="GVirDomain.html#gvir-domain-save" title="gvir_domain_save ()">gvir_domain_save</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
579 </dt>
580 <dd></dd>
581 <dt>
582 <a class="link" href="GVirDomain.html#gvir-domain-save-async" title="gvir_domain_save_async ()">gvir_domain_save_async</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
583 </dt>
584 <dd></dd>
585 <dt>
586 <a class="link" href="GVirDomain.html#gvir-domain-save-finish" title="gvir_domain_save_finish ()">gvir_domain_save_finish</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
587 </dt>
588 <dd></dd>
589 <dt>
590 <a class="link" href="GVirDomain.html#gvir-domain-save-to-file" title="gvir_domain_save_to_file ()">gvir_domain_save_to_file</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
591 </dt>
592 <dd></dd>
593 <dt>
594 <a class="link" href="GVirDomain.html#gvir-domain-save-to-file-async" title="gvir_domain_save_to_file_async ()">gvir_domain_save_to_file_async</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
595 </dt>
596 <dd></dd>
597 <dt>
598 <a class="link" href="GVirDomain.html#gvir-domain-save-to-file-finish" title="gvir_domain_save_to_file_finish ()">gvir_domain_save_to_file_finish</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
599 </dt>
600 <dd></dd>
601 <dt>
602 <a class="link" href="GVirDomain.html#gvir-domain-screenshot" title="gvir_domain_screenshot ()">gvir_domain_screenshot</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
603 </dt>
604 <dd></dd>
605 <dt>
606 <a class="link" href="GVirDomain.html#gvir-domain-set-config" title="gvir_domain_set_config ()">gvir_domain_set_config</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
607 </dt>
608 <dd></dd>
609 <dt>
610 <a class="link" href="GVirDomain.html#gvir-domain-shutdown" title="gvir_domain_shutdown ()">gvir_domain_shutdown</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
611 </dt>
612 <dd></dd>
613 <dt>
614 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-delete" title="gvir_domain_snapshot_delete ()">gvir_domain_snapshot_delete</a>, function in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
615 </dt>
616 <dd></dd>
617 <dt>
618 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-delete-async" title="gvir_domain_snapshot_delete_async ()">gvir_domain_snapshot_delete_async</a>, function in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
619 </dt>
620 <dd></dd>
621 <dt>
622 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-delete-finish" title="gvir_domain_snapshot_delete_finish ()">gvir_domain_snapshot_delete_finish</a>, function in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
623 </dt>
624 <dd></dd>
625 <dt>
626 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-get-config" title="gvir_domain_snapshot_get_config ()">gvir_domain_snapshot_get_config</a>, function in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
627 </dt>
628 <dd></dd>
629 <dt>
630 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-get-is-current" title="gvir_domain_snapshot_get_is_current ()">gvir_domain_snapshot_get_is_current</a>, function in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
631 </dt>
632 <dd></dd>
633 <dt>
634 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-get-name" title="gvir_domain_snapshot_get_name ()">gvir_domain_snapshot_get_name</a>, function in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
635 </dt>
636 <dd></dd>
637 <dt>
638 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-revert-to" title="gvir_domain_snapshot_revert_to ()">gvir_domain_snapshot_revert_to</a>, function in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
639 </dt>
640 <dd></dd>
641 <dt>
642 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-revert-to-async" title="gvir_domain_snapshot_revert_to_async ()">gvir_domain_snapshot_revert_to_async</a>, function in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
643 </dt>
644 <dd></dd>
645 <dt>
646 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-revert-to-finish" title="gvir_domain_snapshot_revert_to_finish ()">gvir_domain_snapshot_revert_to_finish</a>, function in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
647 </dt>
648 <dd></dd>
649 <dt>
650 <a class="link" href="GVirDomainSnapshot.html#gvir-domain-snapshot-set-config" title="gvir_domain_snapshot_set_config ()">gvir_domain_snapshot_set_config</a>, function in <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
651 </dt>
652 <dd></dd>
653 <dt>
654 <a class="link" href="GVirDomain.html#gvir-domain-start" title="gvir_domain_start ()">gvir_domain_start</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
655 </dt>
656 <dd></dd>
657 <dt>
658 <a class="link" href="GVirDomain.html#gvir-domain-start-async" title="gvir_domain_start_async ()">gvir_domain_start_async</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
659 </dt>
660 <dd></dd>
661 <dt>
662 <a class="link" href="GVirDomain.html#gvir-domain-start-finish" title="gvir_domain_start_finish ()">gvir_domain_start_finish</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
663 </dt>
664 <dd></dd>
665 <dt>
666 <a class="link" href="GVirDomain.html#gvir-domain-stop" title="gvir_domain_stop ()">gvir_domain_stop</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
667 </dt>
668 <dd></dd>
669 <dt>
670 <a class="link" href="GVirDomain.html#gvir-domain-suspend" title="gvir_domain_suspend ()">gvir_domain_suspend</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
671 </dt>
672 <dd></dd>
673 <dt>
674 <a class="link" href="GVirDomain.html#gvir-domain-update-device" title="gvir_domain_update_device ()">gvir_domain_update_device</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
675 </dt>
676 <dd></dd>
677 <dt>
678 <a class="link" href="GVirDomain.html#gvir-domain-wakeup" title="gvir_domain_wakeup ()">gvir_domain_wakeup</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
679 </dt>
680 <dd></dd>
681 <dt>
682 <a class="link" href="GVirDomain.html#gvir-domain-wakeup-async" title="gvir_domain_wakeup_async ()">gvir_domain_wakeup_async</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
683 </dt>
684 <dd></dd>
685 <dt>
686 <a class="link" href="GVirDomain.html#gvir-domain-wakeup-finish" title="gvir_domain_wakeup_finish ()">gvir_domain_wakeup_finish</a>, function in <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
772687 </dt>
773688 <dd></dd>
774689 <dt>
780695 </dt>
781696 <dd></dd>
782697 <dt>
783 <a class="link" href="Libvirt-gobject-GVir.html#gvir-interface-get-config" title="gvir_interface_get_config ()">gvir_interface_get_config</a>, function in <a class="link" href="Libvirt-gobject-GVir.html" title="GVir">GVir</a>
784 </dt>
785 <dd></dd>
786 <dt>
787 <a class="link" href="Libvirt-gobject-GVir.html#gvir-interface-get-name" title="gvir_interface_get_name ()">gvir_interface_get_name</a>, function in <a class="link" href="Libvirt-gobject-GVir.html" title="GVir">GVir</a>
788 </dt>
789 <dd></dd>
790 <dt>
791 <a class="link" href="GVirManager.html#gvir-manager-add-connection" title="gvir_manager_add_connection ()">gvir_manager_add_connection</a>, function in <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
792 </dt>
793 <dd></dd>
794 <dt>
795 <a class="link" href="GVirManager.html#gvir-manager-find-connection-by-uri" title="gvir_manager_find_connection_by_uri ()">gvir_manager_find_connection_by_uri</a>, function in <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
796 </dt>
797 <dd></dd>
798 <dt>
799 <a class="link" href="GVirManager.html#gvir-manager-get-connections" title="gvir_manager_get_connections ()">gvir_manager_get_connections</a>, function in <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
800 </dt>
801 <dd></dd>
802 <dt>
803 <a class="link" href="GVirManager.html#gvir-manager-new" title="gvir_manager_new ()">gvir_manager_new</a>, function in <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
804 </dt>
805 <dd></dd>
806 <dt>
807 <a class="link" href="GVirManager.html#gvir-manager-remove-connection" title="gvir_manager_remove_connection ()">gvir_manager_remove_connection</a>, function in <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
698 <a class="link" href="GVirInterface.html#gvir-interface-get-config" title="gvir_interface_get_config ()">gvir_interface_get_config</a>, function in <a class="link" href="GVirInterface.html" title="GVirInterface">GVirInterface</a>
699 </dt>
700 <dd></dd>
701 <dt>
702 <a class="link" href="GVirInterface.html#gvir-interface-get-name" title="gvir_interface_get_name ()">gvir_interface_get_name</a>, function in <a class="link" href="GVirInterface.html" title="GVirInterface">GVirInterface</a>
703 </dt>
704 <dd></dd>
705 <dt>
706 <a class="link" href="GVirManager.html#gvir-manager-add-connection" title="gvir_manager_add_connection ()">gvir_manager_add_connection</a>, function in <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
707 </dt>
708 <dd></dd>
709 <dt>
710 <a class="link" href="GVirManager.html#gvir-manager-find-connection-by-uri" title="gvir_manager_find_connection_by_uri ()">gvir_manager_find_connection_by_uri</a>, function in <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
711 </dt>
712 <dd></dd>
713 <dt>
714 <a class="link" href="GVirManager.html#gvir-manager-get-connections" title="gvir_manager_get_connections ()">gvir_manager_get_connections</a>, function in <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
715 </dt>
716 <dd></dd>
717 <dt>
718 <a class="link" href="GVirManager.html#gvir-manager-new" title="gvir_manager_new ()">gvir_manager_new</a>, function in <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
719 </dt>
720 <dd></dd>
721 <dt>
722 <a class="link" href="GVirManager.html#gvir-manager-remove-connection" title="gvir_manager_remove_connection ()">gvir_manager_remove_connection</a>, function in <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
808723 </dt>
809724 <dd></dd>
810725 <dt>
816731 </dt>
817732 <dd></dd>
818733 <dt>
819 <a class="link" href="GVirNetworkFilter.html#gvir-network-filter-get-config" title="gvir_network_filter_get_config ()">gvir_network_filter_get_config</a>, function in <a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter">GVirNetworkFilter</a>
820 </dt>
821 <dd></dd>
822 <dt>
823 <a class="link" href="GVirNetworkFilter.html#gvir-network-filter-get-name" title="gvir_network_filter_get_name ()">gvir_network_filter_get_name</a>, function in <a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter">GVirNetworkFilter</a>
824 </dt>
825 <dd></dd>
826 <dt>
827 <a class="link" href="GVirNetworkFilter.html#gvir-network-filter-get-uuid" title="gvir_network_filter_get_uuid ()">gvir_network_filter_get_uuid</a>, function in <a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter">GVirNetworkFilter</a>
828 </dt>
829 <dd></dd>
830 <dt>
831 <a class="link" href="GVirNetwork.html#gvir-network-get-config" title="gvir_network_get_config ()">gvir_network_get_config</a>, function in <a class="link" href="GVirNetwork.html" title="GVirNetwork">GVirNetwork</a>
832 </dt>
833 <dd></dd>
834 <dt>
835 <a class="link" href="GVirNetwork.html#gvir-network-get-name" title="gvir_network_get_name ()">gvir_network_get_name</a>, function in <a class="link" href="GVirNetwork.html" title="GVirNetwork">GVirNetwork</a>
836 </dt>
837 <dd></dd>
838 <dt>
839 <a class="link" href="GVirNetwork.html#gvir-network-get-uuid" title="gvir_network_get_uuid ()">gvir_network_get_uuid</a>, function in <a class="link" href="GVirNetwork.html" title="GVirNetwork">GVirNetwork</a>
840 </dt>
841 <dd></dd>
842 <dt>
843 <a class="link" href="GVirNodeDevice.html#gvir-node-device-get-config" title="gvir_node_device_get_config ()">gvir_node_device_get_config</a>, function in <a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice">GVirNodeDevice</a>
844 </dt>
845 <dd></dd>
846 <dt>
847 <a class="link" href="GVirNodeDevice.html#gvir-node-device-get-name" title="gvir_node_device_get_name ()">gvir_node_device_get_name</a>, function in <a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice">GVirNodeDevice</a>
848 </dt>
849 <dd></dd>
850 <dt>
851 <a class="link" href="GVirSecret.html#gvir-secret-get-config" title="gvir_secret_get_config ()">gvir_secret_get_config</a>, function in <a class="link" href="GVirSecret.html" title="GVirSecret">GVirSecret</a>
852 </dt>
853 <dd></dd>
854 <dt>
855 <a class="link" href="GVirSecret.html#gvir-secret-get-name" title="gvir_secret_get_name ()">gvir_secret_get_name</a>, function in <a class="link" href="GVirSecret.html" title="GVirSecret">GVirSecret</a>
856 </dt>
857 <dd></dd>
858 <dt>
859 <a class="link" href="GVirSecret.html#gvir-secret-get-uuid" title="gvir_secret_get_uuid ()">gvir_secret_get_uuid</a>, function in <a class="link" href="GVirSecret.html" title="GVirSecret">GVirSecret</a>
860 </dt>
861 <dd></dd>
862 <dt>
863 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-build" title="gvir_storage_pool_build ()">gvir_storage_pool_build</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
864 </dt>
865 <dd></dd>
866 <dt>
867 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-build-async" title="gvir_storage_pool_build_async ()">gvir_storage_pool_build_async</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
868 </dt>
869 <dd></dd>
870 <dt>
871 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-build-finish" title="gvir_storage_pool_build_finish ()">gvir_storage_pool_build_finish</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
872 </dt>
873 <dd></dd>
874 <dt>
875 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-create-volume" title="gvir_storage_pool_create_volume ()">gvir_storage_pool_create_volume</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
876 </dt>
877 <dd></dd>
878 <dt>
879 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-delete" title="gvir_storage_pool_delete ()">gvir_storage_pool_delete</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
880 </dt>
881 <dd></dd>
882 <dt>
883 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-delete-async" title="gvir_storage_pool_delete_async ()">gvir_storage_pool_delete_async</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
884 </dt>
885 <dd></dd>
886 <dt>
887 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-delete-finish" title="gvir_storage_pool_delete_finish ()">gvir_storage_pool_delete_finish</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
888 </dt>
889 <dd></dd>
890 <dt>
891 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-active" title="gvir_storage_pool_get_active ()">gvir_storage_pool_get_active</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
892 </dt>
893 <dd></dd>
894 <dt>
895 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-config" title="gvir_storage_pool_get_config ()">gvir_storage_pool_get_config</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
896 </dt>
897 <dd></dd>
898 <dt>
899 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-info" title="gvir_storage_pool_get_info ()">gvir_storage_pool_get_info</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
900 </dt>
901 <dd></dd>
902 <dt>
903 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-name" title="gvir_storage_pool_get_name ()">gvir_storage_pool_get_name</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
904 </dt>
905 <dd></dd>
906 <dt>
907 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-persistent" title="gvir_storage_pool_get_persistent ()">gvir_storage_pool_get_persistent</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
908 </dt>
909 <dd></dd>
910 <dt>
911 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-uuid" title="gvir_storage_pool_get_uuid ()">gvir_storage_pool_get_uuid</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
912 </dt>
913 <dd></dd>
914 <dt>
915 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-volume" title="gvir_storage_pool_get_volume ()">gvir_storage_pool_get_volume</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
916 </dt>
917 <dd></dd>
918 <dt>
919 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-volumes" title="gvir_storage_pool_get_volumes ()">gvir_storage_pool_get_volumes</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
920 </dt>
921 <dd></dd>
922 <dt>
923 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-refresh" title="gvir_storage_pool_refresh ()">gvir_storage_pool_refresh</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
924 </dt>
925 <dd></dd>
926 <dt>
927 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-refresh-async" title="gvir_storage_pool_refresh_async ()">gvir_storage_pool_refresh_async</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
928 </dt>
929 <dd></dd>
930 <dt>
931 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-refresh-finish" title="gvir_storage_pool_refresh_finish ()">gvir_storage_pool_refresh_finish</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
932 </dt>
933 <dd></dd>
934 <dt>
935 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-start" title="gvir_storage_pool_start ()">gvir_storage_pool_start</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
936 </dt>
937 <dd></dd>
938 <dt>
939 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-start-async" title="gvir_storage_pool_start_async ()">gvir_storage_pool_start_async</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
940 </dt>
941 <dd></dd>
942 <dt>
943 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-start-finish" title="gvir_storage_pool_start_finish ()">gvir_storage_pool_start_finish</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
944 </dt>
945 <dd></dd>
946 <dt>
947 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-stop" title="gvir_storage_pool_stop ()">gvir_storage_pool_stop</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
948 </dt>
949 <dd></dd>
950 <dt>
951 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-stop-async" title="gvir_storage_pool_stop_async ()">gvir_storage_pool_stop_async</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
952 </dt>
953 <dd></dd>
954 <dt>
955 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-stop-finish" title="gvir_storage_pool_stop_finish ()">gvir_storage_pool_stop_finish</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
956 </dt>
957 <dd></dd>
958 <dt>
959 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-undefine" title="gvir_storage_pool_undefine ()">gvir_storage_pool_undefine</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
960 </dt>
961 <dd></dd>
962 <dt>
963 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-undefine-async" title="gvir_storage_pool_undefine_async ()">gvir_storage_pool_undefine_async</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
964 </dt>
965 <dd></dd>
966 <dt>
967 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-undefine-finish" title="gvir_storage_pool_undefine_finish ()">gvir_storage_pool_undefine_finish</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
968 </dt>
969 <dd></dd>
970 <dt>
971 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-delete" title="gvir_storage_vol_delete ()">gvir_storage_vol_delete</a>, function in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
972 </dt>
973 <dd></dd>
974 <dt>
975 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-download" title="gvir_storage_vol_download ()">gvir_storage_vol_download</a>, function in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
976 </dt>
977 <dd></dd>
978 <dt>
979 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-config" title="gvir_storage_vol_get_config ()">gvir_storage_vol_get_config</a>, function in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
980 </dt>
981 <dd></dd>
982 <dt>
983 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-info" title="gvir_storage_vol_get_info ()">gvir_storage_vol_get_info</a>, function in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
984 </dt>
985 <dd></dd>
986 <dt>
987 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-name" title="gvir_storage_vol_get_name ()">gvir_storage_vol_get_name</a>, function in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
988 </dt>
989 <dd></dd>
990 <dt>
991 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-path" title="gvir_storage_vol_get_path ()">gvir_storage_vol_get_path</a>, function in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
992 </dt>
993 <dd></dd>
994 <dt>
995 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-resize" title="gvir_storage_vol_resize ()">gvir_storage_vol_resize</a>, function in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
996 </dt>
997 <dd></dd>
998 <dt>
999 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-upload" title="gvir_storage_vol_upload ()">gvir_storage_vol_upload</a>, function in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
1000 </dt>
1001 <dd></dd>
1002 <dt>
1003 <a class="link" href="GVirStream.html#gvir-stream-add-watch" title="gvir_stream_add_watch ()">gvir_stream_add_watch</a>, function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
1004 </dt>
1005 <dd></dd>
1006 <dt>
1007 <a class="link" href="GVirStream.html#gvir-stream-add-watch-full" title="gvir_stream_add_watch_full ()">gvir_stream_add_watch_full</a>, function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
1008 </dt>
1009 <dd></dd>
1010 <dt>
1011 <a class="link" href="GVirStream.html#gvir-stream-receive" title="gvir_stream_receive ()">gvir_stream_receive</a>, function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
1012 </dt>
1013 <dd></dd>
1014 <dt>
1015 <a class="link" href="GVirStream.html#gvir-stream-receive-all" title="gvir_stream_receive_all ()">gvir_stream_receive_all</a>, function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
1016 </dt>
1017 <dd></dd>
1018 <dt>
1019 <a class="link" href="GVirStream.html#gvir-stream-send" title="gvir_stream_send ()">gvir_stream_send</a>, function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
1020 </dt>
1021 <dd></dd>
1022 <dt>
1023 <a class="link" href="GVirStream.html#gvir-stream-send-all" title="gvir_stream_send_all ()">gvir_stream_send_all</a>, function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
734 <a class="link" href="GVirNetworkFilter.html#gvir-network-filter-get-config" title="gvir_network_filter_get_config ()">gvir_network_filter_get_config</a>, function in <a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter">GVirNetworkFilter</a>
735 </dt>
736 <dd></dd>
737 <dt>
738 <a class="link" href="GVirNetworkFilter.html#gvir-network-filter-get-name" title="gvir_network_filter_get_name ()">gvir_network_filter_get_name</a>, function in <a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter">GVirNetworkFilter</a>
739 </dt>
740 <dd></dd>
741 <dt>
742 <a class="link" href="GVirNetworkFilter.html#gvir-network-filter-get-uuid" title="gvir_network_filter_get_uuid ()">gvir_network_filter_get_uuid</a>, function in <a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter">GVirNetworkFilter</a>
743 </dt>
744 <dd></dd>
745 <dt>
746 <a class="link" href="GVirNetwork.html#gvir-network-get-config" title="gvir_network_get_config ()">gvir_network_get_config</a>, function in <a class="link" href="GVirNetwork.html" title="GVirNetwork">GVirNetwork</a>
747 </dt>
748 <dd></dd>
749 <dt>
750 <a class="link" href="GVirNetwork.html#gvir-network-get-name" title="gvir_network_get_name ()">gvir_network_get_name</a>, function in <a class="link" href="GVirNetwork.html" title="GVirNetwork">GVirNetwork</a>
751 </dt>
752 <dd></dd>
753 <dt>
754 <a class="link" href="GVirNetwork.html#gvir-network-get-uuid" title="gvir_network_get_uuid ()">gvir_network_get_uuid</a>, function in <a class="link" href="GVirNetwork.html" title="GVirNetwork">GVirNetwork</a>
755 </dt>
756 <dd></dd>
757 <dt>
758 <a class="link" href="GVirNodeDevice.html#gvir-node-device-get-config" title="gvir_node_device_get_config ()">gvir_node_device_get_config</a>, function in <a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice">GVirNodeDevice</a>
759 </dt>
760 <dd></dd>
761 <dt>
762 <a class="link" href="GVirNodeDevice.html#gvir-node-device-get-name" title="gvir_node_device_get_name ()">gvir_node_device_get_name</a>, function in <a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice">GVirNodeDevice</a>
763 </dt>
764 <dd></dd>
765 <dt>
766 <a class="link" href="GVirSecret.html#gvir-secret-get-config" title="gvir_secret_get_config ()">gvir_secret_get_config</a>, function in <a class="link" href="GVirSecret.html" title="GVirSecret">GVirSecret</a>
767 </dt>
768 <dd></dd>
769 <dt>
770 <a class="link" href="GVirSecret.html#gvir-secret-get-name" title="gvir_secret_get_name ()">gvir_secret_get_name</a>, function in <a class="link" href="GVirSecret.html" title="GVirSecret">GVirSecret</a>
771 </dt>
772 <dd></dd>
773 <dt>
774 <a class="link" href="GVirSecret.html#gvir-secret-get-uuid" title="gvir_secret_get_uuid ()">gvir_secret_get_uuid</a>, function in <a class="link" href="GVirSecret.html" title="GVirSecret">GVirSecret</a>
775 </dt>
776 <dd></dd>
777 <dt>
778 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-build" title="gvir_storage_pool_build ()">gvir_storage_pool_build</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
779 </dt>
780 <dd></dd>
781 <dt>
782 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-build-async" title="gvir_storage_pool_build_async ()">gvir_storage_pool_build_async</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
783 </dt>
784 <dd></dd>
785 <dt>
786 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-build-finish" title="gvir_storage_pool_build_finish ()">gvir_storage_pool_build_finish</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
787 </dt>
788 <dd></dd>
789 <dt>
790 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-create-volume" title="gvir_storage_pool_create_volume ()">gvir_storage_pool_create_volume</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
791 </dt>
792 <dd></dd>
793 <dt>
794 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-delete" title="gvir_storage_pool_delete ()">gvir_storage_pool_delete</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
795 </dt>
796 <dd></dd>
797 <dt>
798 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-delete-async" title="gvir_storage_pool_delete_async ()">gvir_storage_pool_delete_async</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
799 </dt>
800 <dd></dd>
801 <dt>
802 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-delete-finish" title="gvir_storage_pool_delete_finish ()">gvir_storage_pool_delete_finish</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
803 </dt>
804 <dd></dd>
805 <dt>
806 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-active" title="gvir_storage_pool_get_active ()">gvir_storage_pool_get_active</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
807 </dt>
808 <dd></dd>
809 <dt>
810 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-config" title="gvir_storage_pool_get_config ()">gvir_storage_pool_get_config</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
811 </dt>
812 <dd></dd>
813 <dt>
814 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-info" title="gvir_storage_pool_get_info ()">gvir_storage_pool_get_info</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
815 </dt>
816 <dd></dd>
817 <dt>
818 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-name" title="gvir_storage_pool_get_name ()">gvir_storage_pool_get_name</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
819 </dt>
820 <dd></dd>
821 <dt>
822 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-persistent" title="gvir_storage_pool_get_persistent ()">gvir_storage_pool_get_persistent</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
823 </dt>
824 <dd></dd>
825 <dt>
826 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-uuid" title="gvir_storage_pool_get_uuid ()">gvir_storage_pool_get_uuid</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
827 </dt>
828 <dd></dd>
829 <dt>
830 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-volume" title="gvir_storage_pool_get_volume ()">gvir_storage_pool_get_volume</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
831 </dt>
832 <dd></dd>
833 <dt>
834 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-get-volumes" title="gvir_storage_pool_get_volumes ()">gvir_storage_pool_get_volumes</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
835 </dt>
836 <dd></dd>
837 <dt>
838 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-refresh" title="gvir_storage_pool_refresh ()">gvir_storage_pool_refresh</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
839 </dt>
840 <dd></dd>
841 <dt>
842 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-refresh-async" title="gvir_storage_pool_refresh_async ()">gvir_storage_pool_refresh_async</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
843 </dt>
844 <dd></dd>
845 <dt>
846 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-refresh-finish" title="gvir_storage_pool_refresh_finish ()">gvir_storage_pool_refresh_finish</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
847 </dt>
848 <dd></dd>
849 <dt>
850 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-start" title="gvir_storage_pool_start ()">gvir_storage_pool_start</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
851 </dt>
852 <dd></dd>
853 <dt>
854 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-start-async" title="gvir_storage_pool_start_async ()">gvir_storage_pool_start_async</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
855 </dt>
856 <dd></dd>
857 <dt>
858 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-start-finish" title="gvir_storage_pool_start_finish ()">gvir_storage_pool_start_finish</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
859 </dt>
860 <dd></dd>
861 <dt>
862 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-stop" title="gvir_storage_pool_stop ()">gvir_storage_pool_stop</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
863 </dt>
864 <dd></dd>
865 <dt>
866 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-stop-async" title="gvir_storage_pool_stop_async ()">gvir_storage_pool_stop_async</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
867 </dt>
868 <dd></dd>
869 <dt>
870 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-stop-finish" title="gvir_storage_pool_stop_finish ()">gvir_storage_pool_stop_finish</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
871 </dt>
872 <dd></dd>
873 <dt>
874 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-undefine" title="gvir_storage_pool_undefine ()">gvir_storage_pool_undefine</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
875 </dt>
876 <dd></dd>
877 <dt>
878 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-undefine-async" title="gvir_storage_pool_undefine_async ()">gvir_storage_pool_undefine_async</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
879 </dt>
880 <dd></dd>
881 <dt>
882 <a class="link" href="GVirStoragePool.html#gvir-storage-pool-undefine-finish" title="gvir_storage_pool_undefine_finish ()">gvir_storage_pool_undefine_finish</a>, function in <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
883 </dt>
884 <dd></dd>
885 <dt>
886 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-delete" title="gvir_storage_vol_delete ()">gvir_storage_vol_delete</a>, function in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
887 </dt>
888 <dd></dd>
889 <dt>
890 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-download" title="gvir_storage_vol_download ()">gvir_storage_vol_download</a>, function in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
891 </dt>
892 <dd></dd>
893 <dt>
894 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-config" title="gvir_storage_vol_get_config ()">gvir_storage_vol_get_config</a>, function in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
895 </dt>
896 <dd></dd>
897 <dt>
898 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-info" title="gvir_storage_vol_get_info ()">gvir_storage_vol_get_info</a>, function in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
899 </dt>
900 <dd></dd>
901 <dt>
902 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-name" title="gvir_storage_vol_get_name ()">gvir_storage_vol_get_name</a>, function in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
903 </dt>
904 <dd></dd>
905 <dt>
906 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-get-path" title="gvir_storage_vol_get_path ()">gvir_storage_vol_get_path</a>, function in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
907 </dt>
908 <dd></dd>
909 <dt>
910 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-resize" title="gvir_storage_vol_resize ()">gvir_storage_vol_resize</a>, function in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
911 </dt>
912 <dd></dd>
913 <dt>
914 <a class="link" href="GVirStorageVol.html#gvir-storage-vol-upload" title="gvir_storage_vol_upload ()">gvir_storage_vol_upload</a>, function in <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
915 </dt>
916 <dd></dd>
917 <dt>
918 <a class="link" href="GVirStream.html#gvir-stream-add-watch" title="gvir_stream_add_watch ()">gvir_stream_add_watch</a>, function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
919 </dt>
920 <dd></dd>
921 <dt>
922 <a class="link" href="GVirStream.html#gvir-stream-add-watch-full" title="gvir_stream_add_watch_full ()">gvir_stream_add_watch_full</a>, function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
923 </dt>
924 <dd></dd>
925 <dt>
926 <a class="link" href="GVirStream.html#gvir-stream-receive" title="gvir_stream_receive ()">gvir_stream_receive</a>, function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
927 </dt>
928 <dd></dd>
929 <dt>
930 <a class="link" href="GVirStream.html#gvir-stream-receive-all" title="gvir_stream_receive_all ()">gvir_stream_receive_all</a>, function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
931 </dt>
932 <dd></dd>
933 <dt>
934 <a class="link" href="GVirStream.html#gvir-stream-send" title="gvir_stream_send ()">gvir_stream_send</a>, function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
935 </dt>
936 <dd></dd>
937 <dt>
938 <a class="link" href="GVirStream.html#gvir-stream-send-all" title="gvir_stream_send_all ()">gvir_stream_send_all</a>, function in <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
1024939 </dt>
1025940 <dd></dd>
1026941 </div>
1027942 <div class="footer">
1028943 <hr>
1029 Generated by GTK-Doc V1.19</div>
944 Generated by GTK-Doc V1.21</div>
1030945 </body>
1031946 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>Libvirt-gobject</title>
4 <title>Libvirt-gobject Reference Manual: Libvirt-gobject</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="up" href="index.html" title="Libvirt-gobject Reference Manual">
88 <link rel="prev" href="index.html" title="Libvirt-gobject Reference Manual">
99 <link rel="next" href="GVirConnection.html" title="GVirConnection">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
15 <td><a accesskey="p" href="index.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
16 <td> </td>
17 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
18 <th width="100%" align="center">Libvirt-gobject Reference Manual</th>
19 <td><a accesskey="n" href="GVirConnection.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts"></td>
16 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
17 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
18 <td><a accesskey="p" href="index.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
19 <td><a accesskey="n" href="GVirConnection.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
2020 </tr></table>
2121 <div class="chapter">
2222 <div class="titlepage"><div><div><h1 class="title">
3232 <span class="refentrytitle"><a href="GVirDomainSnapshot.html">GVirDomainSnapshot</a></span><span class="refpurpose"></span>
3333 </dt>
3434 <dt>
35 <span class="refentrytitle"><a href="Libvirt-gobject-GVir.html">GVir</a></span><span class="refpurpose"></span>
35 <span class="refentrytitle"><a href="GVirInterface.html">GVirInterface</a></span><span class="refpurpose"></span>
3636 </dt>
3737 <dt>
3838 <span class="refentrytitle"><a href="GVirManager.html">GVirManager</a></span><span class="refpurpose"></span>
6262 </div>
6363 <div class="footer">
6464 <hr>
65 Generated by GTK-Doc V1.19</div>
65 Generated by GTK-Doc V1.21</div>
6666 </body>
6767 </html>
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>Libvirt-gobject Reference Manual</title>
4 <title>Libvirt-gobject Reference Manual: Libvirt-gobject Reference Manual</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="next" href="ch01.html" title="Libvirt-gobject">
8 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
8 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
99 <link rel="stylesheet" href="style.css" type="text/css">
1010 </head>
1111 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
2727 <span class="refentrytitle"><a href="GVirDomainSnapshot.html">GVirDomainSnapshot</a></span><span class="refpurpose"></span>
2828 </dt>
2929 <dt>
30 <span class="refentrytitle"><a href="Libvirt-gobject-GVir.html">GVir</a></span><span class="refpurpose"></span>
30 <span class="refentrytitle"><a href="GVirInterface.html">GVirInterface</a></span><span class="refpurpose"></span>
3131 </dt>
3232 <dt>
3333 <span class="refentrytitle"><a href="GVirManager.html">GVirManager</a></span><span class="refpurpose"></span>
6161 </div>
6262 <div class="footer">
6363 <hr>
64 Generated by GTK-Doc V1.19</div>
64 Generated by GTK-Doc V1.21</div>
6565 </body>
6666 </html>
00 <ANCHOR id="GVirConnection" href="Libvirt-gobject/GVirConnection.html">
1 <ANCHOR id="GVirConnection.synopsis" href="Libvirt-gobject/GVirConnection.html#GVirConnection.synopsis">
1 <ANCHOR id="GVirConnection.functions" href="Libvirt-gobject/GVirConnection.html#GVirConnection.functions">
2 <ANCHOR id="GVirConnection.properties" href="Libvirt-gobject/GVirConnection.html#GVirConnection.properties">
3 <ANCHOR id="GVirConnection.signals" href="Libvirt-gobject/GVirConnection.html#GVirConnection.signals">
24 <ANCHOR id="GVirNodeInfo" href="Libvirt-gobject/GVirConnection.html#GVirNodeInfo">
35 <ANCHOR id="GVirConnection.object-hierarchy" href="Libvirt-gobject/GVirConnection.html#GVirConnection.object-hierarchy">
4 <ANCHOR id="GVirConnection.properties" href="Libvirt-gobject/GVirConnection.html#GVirConnection.properties">
5 <ANCHOR id="GVirConnection.signals" href="Libvirt-gobject/GVirConnection.html#GVirConnection.signals">
66 <ANCHOR id="GVirConnection.description" href="Libvirt-gobject/GVirConnection.html#GVirConnection.description">
7 <ANCHOR id="GVirConnection.details" href="Libvirt-gobject/GVirConnection.html#GVirConnection.details">
8 <ANCHOR id="GVirNodeInfo-struct" href="Libvirt-gobject/GVirConnection.html#GVirNodeInfo-struct">
9 <ANCHOR id="GVirConnection-struct" href="Libvirt-gobject/GVirConnection.html#GVirConnection-struct">
10 <ANCHOR id="GVirConnectionClass" href="Libvirt-gobject/GVirConnection.html#GVirConnectionClass">
7 <ANCHOR id="GVirConnection.functions_details" href="Libvirt-gobject/GVirConnection.html#GVirConnection.functions_details">
118 <ANCHOR id="gvir-connection-new" href="Libvirt-gobject/GVirConnection.html#gvir-connection-new">
129 <ANCHOR id="gvir-connection-open" href="Libvirt-gobject/GVirConnection.html#gvir-connection-open">
1310 <ANCHOR id="gvir-connection-open-read-only" href="Libvirt-gobject/GVirConnection.html#gvir-connection-open-read-only">
5855 <ANCHOR id="gvir-connection-restore-domain-from-file" href="Libvirt-gobject/GVirConnection.html#gvir-connection-restore-domain-from-file">
5956 <ANCHOR id="gvir-connection-restore-domain-from-file-async" href="Libvirt-gobject/GVirConnection.html#gvir-connection-restore-domain-from-file-async">
6057 <ANCHOR id="gvir-connection-restore-domain-from-file-finish" href="Libvirt-gobject/GVirConnection.html#gvir-connection-restore-domain-from-file-finish">
58 <ANCHOR id="GVirConnection.other_details" href="Libvirt-gobject/GVirConnection.html#GVirConnection.other_details">
6159 <ANCHOR id="GVirConnection.property-details" href="Libvirt-gobject/GVirConnection.html#GVirConnection.property-details">
6260 <ANCHOR id="GVirConnection--handle" href="Libvirt-gobject/GVirConnection.html#GVirConnection--handle">
6361 <ANCHOR id="GVirConnection--uri" href="Libvirt-gobject/GVirConnection.html#GVirConnection--uri">
6765 <ANCHOR id="GVirConnection-domain-added" href="Libvirt-gobject/GVirConnection.html#GVirConnection-domain-added">
6866 <ANCHOR id="GVirConnection-domain-removed" href="Libvirt-gobject/GVirConnection.html#GVirConnection-domain-removed">
6967 <ANCHOR id="GVirDomain" href="Libvirt-gobject/GVirDomain.html">
70 <ANCHOR id="GVirDomain.synopsis" href="Libvirt-gobject/GVirDomain.html#GVirDomain.synopsis">
71 <ANCHOR id="GVirDomainInfo" href="Libvirt-gobject/GVirDomain.html#GVirDomainInfo">
72 <ANCHOR id="GVirDomain.object-hierarchy" href="Libvirt-gobject/GVirDomain.html#GVirDomain.object-hierarchy">
68 <ANCHOR id="GVirDomain.functions" href="Libvirt-gobject/GVirDomain.html#GVirDomain.functions">
7369 <ANCHOR id="GVirDomain.properties" href="Libvirt-gobject/GVirDomain.html#GVirDomain.properties">
7470 <ANCHOR id="GVirDomain.signals" href="Libvirt-gobject/GVirDomain.html#GVirDomain.signals">
71 <ANCHOR id="GVirDomainInfo" href="Libvirt-gobject/GVirDomain.html#GVirDomainInfo">
72 <ANCHOR id="GVirDomain.other" href="Libvirt-gobject/GVirDomain.html#GVirDomain.other">
73 <ANCHOR id="GVirDomain.object-hierarchy" href="Libvirt-gobject/GVirDomain.html#GVirDomain.object-hierarchy">
7574 <ANCHOR id="GVirDomain.description" href="Libvirt-gobject/GVirDomain.html#GVirDomain.description">
76 <ANCHOR id="GVirDomain.details" href="Libvirt-gobject/GVirDomain.html#GVirDomain.details">
77 <ANCHOR id="GVirDomain-struct" href="Libvirt-gobject/GVirDomain.html#GVirDomain-struct">
78 <ANCHOR id="GVirDomainClass" href="Libvirt-gobject/GVirDomain.html#GVirDomainClass">
79 <ANCHOR id="GVirDomainState" href="Libvirt-gobject/GVirDomain.html#GVirDomainState">
80 <ANCHOR id="GVIR-DOMAIN-STATE-NONE:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-STATE-NONE:CAPS">
81 <ANCHOR id="GVIR-DOMAIN-STATE-RUNNING:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-STATE-RUNNING:CAPS">
82 <ANCHOR id="GVIR-DOMAIN-STATE-BLOCKED:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-STATE-BLOCKED:CAPS">
83 <ANCHOR id="GVIR-DOMAIN-STATE-PAUSED:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-STATE-PAUSED:CAPS">
84 <ANCHOR id="GVIR-DOMAIN-STATE-SHUTDOWN:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-STATE-SHUTDOWN:CAPS">
85 <ANCHOR id="GVIR-DOMAIN-STATE-SHUTOFF:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-STATE-SHUTOFF:CAPS">
86 <ANCHOR id="GVIR-DOMAIN-STATE-CRASHED:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-STATE-CRASHED:CAPS">
87 <ANCHOR id="GVIR-DOMAIN-STATE-PMSUSPENDED:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-STATE-PMSUSPENDED:CAPS">
88 <ANCHOR id="GVirDomainStartFlags" href="Libvirt-gobject/GVirDomain.html#GVirDomainStartFlags">
89 <ANCHOR id="GVIR-DOMAIN-START-NONE:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-START-NONE:CAPS">
90 <ANCHOR id="GVIR-DOMAIN-START-PAUSED:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-START-PAUSED:CAPS">
91 <ANCHOR id="GVIR-DOMAIN-START-AUTODESTROY:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-START-AUTODESTROY:CAPS">
92 <ANCHOR id="GVIR-DOMAIN-START-BYPASS-CACHE:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-START-BYPASS-CACHE:CAPS">
93 <ANCHOR id="GVIR-DOMAIN-START-FORCE-BOOT:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-START-FORCE-BOOT:CAPS">
94 <ANCHOR id="GVirDomainDeleteFlags" href="Libvirt-gobject/GVirDomain.html#GVirDomainDeleteFlags">
95 <ANCHOR id="GVIR-DOMAIN-DELETE-NONE:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-DELETE-NONE:CAPS">
96 <ANCHOR id="GVIR-DOMAIN-DELETE-SAVED-STATE:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-DELETE-SAVED-STATE:CAPS">
97 <ANCHOR id="GVIR-DOMAIN-DELETE-SNAPSHOTS-METADATA:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-DELETE-SNAPSHOTS-METADATA:CAPS">
98 <ANCHOR id="GVirDomainXMLFlags" href="Libvirt-gobject/GVirDomain.html#GVirDomainXMLFlags">
99 <ANCHOR id="GVIR-DOMAIN-XML-NONE:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-XML-NONE:CAPS">
100 <ANCHOR id="GVIR-DOMAIN-XML-SECURE:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-XML-SECURE:CAPS">
101 <ANCHOR id="GVIR-DOMAIN-XML-INACTIVE:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-XML-INACTIVE:CAPS">
102 <ANCHOR id="GVIR-DOMAIN-XML-UPDATE-CPU:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-XML-UPDATE-CPU:CAPS">
103 <ANCHOR id="GVirDomainShutdownFlags" href="Libvirt-gobject/GVirDomain.html#GVirDomainShutdownFlags">
104 <ANCHOR id="GVIR-DOMAIN-SHUTDOWN-NONE:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-SHUTDOWN-NONE:CAPS">
105 <ANCHOR id="GVIR-DOMAIN-SHUTDOWN-ACPI-POWER-BTN:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-SHUTDOWN-ACPI-POWER-BTN:CAPS">
106 <ANCHOR id="GVIR-DOMAIN-SHUTDOWN-GUEST-AGENT:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-SHUTDOWN-GUEST-AGENT:CAPS">
107 <ANCHOR id="GVirDomainSnapshotCreateFlags" href="Libvirt-gobject/GVirDomain.html#GVirDomainSnapshotCreateFlags">
108 <ANCHOR id="GVIR-DOMAIN-SNAPSHOT-NONE:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-NONE:CAPS">
109 <ANCHOR id="GVIR-DOMAIN-SNAPSHOT-REDEFINE:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-REDEFINE:CAPS">
110 <ANCHOR id="GVIR-DOMAIN-SNAPSHOT-CURRENT:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-CURRENT:CAPS">
111 <ANCHOR id="GVIR-DOMAIN-SNAPSHOT-NO-METADATA:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-NO-METADATA:CAPS">
112 <ANCHOR id="GVIR-DOMAIN-SNAPSHOT-HALT:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-HALT:CAPS">
113 <ANCHOR id="GVIR-DOMAIN-SNAPSHOT-DISK-ONLY:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-DISK-ONLY:CAPS">
114 <ANCHOR id="GVIR-DOMAIN-SNAPSHOT-REUSE-EXT:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-REUSE-EXT:CAPS">
115 <ANCHOR id="GVIR-DOMAIN-SNAPSHOT-QUIESCE:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-QUIESCE:CAPS">
116 <ANCHOR id="GVIR-DOMAIN-SNAPSHOT-ATOMIC:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-SNAPSHOT-ATOMIC:CAPS">
117 <ANCHOR id="GVirDomainUpdateDeviceFlags" href="Libvirt-gobject/GVirDomain.html#GVirDomainUpdateDeviceFlags">
118 <ANCHOR id="GVIR-DOMAIN-UPDATE-DEVICE-CURRENT:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-UPDATE-DEVICE-CURRENT:CAPS">
119 <ANCHOR id="GVIR-DOMAIN-UPDATE-DEVICE-LIVE:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-UPDATE-DEVICE-LIVE:CAPS">
120 <ANCHOR id="GVIR-DOMAIN-UPDATE-DEVICE-CONFIG:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-UPDATE-DEVICE-CONFIG:CAPS">
121 <ANCHOR id="GVirDomainRebootFlags" href="Libvirt-gobject/GVirDomain.html#GVirDomainRebootFlags">
122 <ANCHOR id="GVIR-DOMAIN-REBOOT-NONE:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-REBOOT-NONE:CAPS">
123 <ANCHOR id="GVIR-DOMAIN-REBOOT-ACPI-POWER-BTN:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-REBOOT-ACPI-POWER-BTN:CAPS">
124 <ANCHOR id="GVIR-DOMAIN-REBOOT-GUEST-AGENT:CAPS" href="Libvirt-gobject/GVirDomain.html#GVIR-DOMAIN-REBOOT-GUEST-AGENT:CAPS">
125 <ANCHOR id="GVirDomainInfo-struct" href="Libvirt-gobject/GVirDomain.html#GVirDomainInfo-struct">
75 <ANCHOR id="GVirDomain.functions_details" href="Libvirt-gobject/GVirDomain.html#GVirDomain.functions_details">
12676 <ANCHOR id="gvir-domain-get-name" href="Libvirt-gobject/GVirDomain.html#gvir-domain-get-name">
12777 <ANCHOR id="gvir-domain-get-uuid" href="Libvirt-gobject/GVirDomain.html#gvir-domain-get-uuid">
12878 <ANCHOR id="gvir-domain-get-id" href="Libvirt-gobject/GVirDomain.html#gvir-domain-get-id">
159109 <ANCHOR id="gvir-domain-get-devices" href="Libvirt-gobject/GVirDomain.html#gvir-domain-get-devices">
160110 <ANCHOR id="gvir-domain-update-device" href="Libvirt-gobject/GVirDomain.html#gvir-domain-update-device">
161111 <ANCHOR id="gvir-domain-create-snapshot" href="Libvirt-gobject/GVirDomain.html#gvir-domain-create-snapshot">
112 <ANCHOR id="gvir-domain-create-snapshot-async" href="Libvirt-gobject/GVirDomain.html#gvir-domain-create-snapshot-async">
113 <ANCHOR id="gvir-domain-create-snapshot-finish" href="Libvirt-gobject/GVirDomain.html#gvir-domain-create-snapshot-finish">
114 <ANCHOR id="gvir-domain-fetch-snapshots" href="Libvirt-gobject/GVirDomain.html#gvir-domain-fetch-snapshots">
115 <ANCHOR id="gvir-domain-get-snapshots" href="Libvirt-gobject/GVirDomain.html#gvir-domain-get-snapshots">
116 <ANCHOR id="gvir-domain-fetch-snapshots-async" href="Libvirt-gobject/GVirDomain.html#gvir-domain-fetch-snapshots-async">
117 <ANCHOR id="gvir-domain-fetch-snapshots-finish" href="Libvirt-gobject/GVirDomain.html#gvir-domain-fetch-snapshots-finish">
118 <ANCHOR id="gvir-domain-get-has-current-snapshot" href="Libvirt-gobject/GVirDomain.html#gvir-domain-get-has-current-snapshot">
119 <ANCHOR id="GVirDomain.other_details" href="Libvirt-gobject/GVirDomain.html#GVirDomain.other_details">
120 <ANCHOR id="GVirDomainState" href="Libvirt-gobject/GVirDomain.html#GVirDomainState">
121 <ANCHOR id="GVirDomainStartFlags" href="Libvirt-gobject/GVirDomain.html#GVirDomainStartFlags">
122 <ANCHOR id="GVirDomainDeleteFlags" href="Libvirt-gobject/GVirDomain.html#GVirDomainDeleteFlags">
123 <ANCHOR id="GVirDomainXMLFlags" href="Libvirt-gobject/GVirDomain.html#GVirDomainXMLFlags">
124 <ANCHOR id="GVirDomainShutdownFlags" href="Libvirt-gobject/GVirDomain.html#GVirDomainShutdownFlags">
125 <ANCHOR id="GVirDomainSnapshotCreateFlags" href="Libvirt-gobject/GVirDomain.html#GVirDomainSnapshotCreateFlags">
126 <ANCHOR id="GVirDomainUpdateDeviceFlags" href="Libvirt-gobject/GVirDomain.html#GVirDomainUpdateDeviceFlags">
127 <ANCHOR id="GVirDomainRebootFlags" href="Libvirt-gobject/GVirDomain.html#GVirDomainRebootFlags">
128 <ANCHOR id="GVirDomainSnapshotListFlags" href="Libvirt-gobject/GVirDomain.html#GVirDomainSnapshotListFlags">
162129 <ANCHOR id="GVirDomain.property-details" href="Libvirt-gobject/GVirDomain.html#GVirDomain.property-details">
163130 <ANCHOR id="GVirDomain--handle" href="Libvirt-gobject/GVirDomain.html#GVirDomain--handle">
164131 <ANCHOR id="GVirDomain--persistent" href="Libvirt-gobject/GVirDomain.html#GVirDomain--persistent">
170137 <ANCHOR id="GVirDomain-suspended" href="Libvirt-gobject/GVirDomain.html#GVirDomain-suspended">
171138 <ANCHOR id="GVirDomain-updated" href="Libvirt-gobject/GVirDomain.html#GVirDomain-updated">
172139 <ANCHOR id="GVirDomainSnapshot" href="Libvirt-gobject/GVirDomainSnapshot.html">
173 <ANCHOR id="GVirDomainSnapshot.synopsis" href="Libvirt-gobject/GVirDomainSnapshot.html#GVirDomainSnapshot.synopsis">
140 <ANCHOR id="GVirDomainSnapshot.functions" href="Libvirt-gobject/GVirDomainSnapshot.html#GVirDomainSnapshot.functions">
141 <ANCHOR id="GVirDomainSnapshot.properties" href="Libvirt-gobject/GVirDomainSnapshot.html#GVirDomainSnapshot.properties">
142 <ANCHOR id="GVirDomainSnapshot.other" href="Libvirt-gobject/GVirDomainSnapshot.html#GVirDomainSnapshot.other">
174143 <ANCHOR id="GVirDomainSnapshot.object-hierarchy" href="Libvirt-gobject/GVirDomainSnapshot.html#GVirDomainSnapshot.object-hierarchy">
175 <ANCHOR id="GVirDomainSnapshot.properties" href="Libvirt-gobject/GVirDomainSnapshot.html#GVirDomainSnapshot.properties">
176144 <ANCHOR id="GVirDomainSnapshot.description" href="Libvirt-gobject/GVirDomainSnapshot.html#GVirDomainSnapshot.description">
177 <ANCHOR id="GVirDomainSnapshot.details" href="Libvirt-gobject/GVirDomainSnapshot.html#GVirDomainSnapshot.details">
178 <ANCHOR id="GVirDomainSnapshot-struct" href="Libvirt-gobject/GVirDomainSnapshot.html#GVirDomainSnapshot-struct">
179 <ANCHOR id="GVirDomainSnapshotClass" href="Libvirt-gobject/GVirDomainSnapshot.html#GVirDomainSnapshotClass">
145 <ANCHOR id="GVirDomainSnapshot.functions_details" href="Libvirt-gobject/GVirDomainSnapshot.html#GVirDomainSnapshot.functions_details">
180146 <ANCHOR id="gvir-domain-snapshot-get-name" href="Libvirt-gobject/GVirDomainSnapshot.html#gvir-domain-snapshot-get-name">
181147 <ANCHOR id="gvir-domain-snapshot-get-config" href="Libvirt-gobject/GVirDomainSnapshot.html#gvir-domain-snapshot-get-config">
148 <ANCHOR id="gvir-domain-snapshot-delete" href="Libvirt-gobject/GVirDomainSnapshot.html#gvir-domain-snapshot-delete">
149 <ANCHOR id="gvir-domain-snapshot-delete-async" href="Libvirt-gobject/GVirDomainSnapshot.html#gvir-domain-snapshot-delete-async">
150 <ANCHOR id="gvir-domain-snapshot-delete-finish" href="Libvirt-gobject/GVirDomainSnapshot.html#gvir-domain-snapshot-delete-finish">
151 <ANCHOR id="gvir-domain-snapshot-get-is-current" href="Libvirt-gobject/GVirDomainSnapshot.html#gvir-domain-snapshot-get-is-current">
152 <ANCHOR id="gvir-domain-snapshot-revert-to" href="Libvirt-gobject/GVirDomainSnapshot.html#gvir-domain-snapshot-revert-to">
153 <ANCHOR id="gvir-domain-snapshot-revert-to-async" href="Libvirt-gobject/GVirDomainSnapshot.html#gvir-domain-snapshot-revert-to-async">
154 <ANCHOR id="gvir-domain-snapshot-revert-to-finish" href="Libvirt-gobject/GVirDomainSnapshot.html#gvir-domain-snapshot-revert-to-finish">
155 <ANCHOR id="gvir-domain-snapshot-set-config" href="Libvirt-gobject/GVirDomainSnapshot.html#gvir-domain-snapshot-set-config">
156 <ANCHOR id="GVirDomainSnapshot.other_details" href="Libvirt-gobject/GVirDomainSnapshot.html#GVirDomainSnapshot.other_details">
157 <ANCHOR id="GVirDomainSnapshotDeleteFlags" href="Libvirt-gobject/GVirDomainSnapshot.html#GVirDomainSnapshotDeleteFlags">
158 <ANCHOR id="GVirDomainSnapshotRevertFlags" href="Libvirt-gobject/GVirDomainSnapshot.html#GVirDomainSnapshotRevertFlags">
182159 <ANCHOR id="GVirDomainSnapshot.property-details" href="Libvirt-gobject/GVirDomainSnapshot.html#GVirDomainSnapshot.property-details">
183160 <ANCHOR id="GVirDomainSnapshot--handle" href="Libvirt-gobject/GVirDomainSnapshot.html#GVirDomainSnapshot--handle">
184 <ANCHOR id="Libvirt-gobject-GVir" href="Libvirt-gobject/Libvirt-gobject-GVir.html">
185 <ANCHOR id="Libvirt-gobject-GVir.synopsis" href="Libvirt-gobject/Libvirt-gobject-GVir.html#Libvirt-gobject-GVir.synopsis">
186 <ANCHOR id="GVirInterface" href="Libvirt-gobject/Libvirt-gobject-GVir.html#GVirInterface">
187 <ANCHOR id="Libvirt-gobject-GVir.object-hierarchy" href="Libvirt-gobject/Libvirt-gobject-GVir.html#Libvirt-gobject-GVir.object-hierarchy">
188 <ANCHOR id="Libvirt-gobject-GVir.properties" href="Libvirt-gobject/Libvirt-gobject-GVir.html#Libvirt-gobject-GVir.properties">
189 <ANCHOR id="Libvirt-gobject-GVir.description" href="Libvirt-gobject/Libvirt-gobject-GVir.html#Libvirt-gobject-GVir.description">
190 <ANCHOR id="Libvirt-gobject-GVir.details" href="Libvirt-gobject/Libvirt-gobject-GVir.html#Libvirt-gobject-GVir.details">
191 <ANCHOR id="GVirInterface-struct" href="Libvirt-gobject/Libvirt-gobject-GVir.html#GVirInterface-struct">
192 <ANCHOR id="GVirInterfaceClass" href="Libvirt-gobject/Libvirt-gobject-GVir.html#GVirInterfaceClass">
193 <ANCHOR id="gvir-interface-get-name" href="Libvirt-gobject/Libvirt-gobject-GVir.html#gvir-interface-get-name">
194 <ANCHOR id="gvir-interface-get-config" href="Libvirt-gobject/Libvirt-gobject-GVir.html#gvir-interface-get-config">
195 <ANCHOR id="Libvirt-gobject-GVir.property-details" href="Libvirt-gobject/Libvirt-gobject-GVir.html#Libvirt-gobject-GVir.property-details">
196 <ANCHOR id="GVirInterface--handle" href="Libvirt-gobject/Libvirt-gobject-GVir.html#GVirInterface--handle">
161 <ANCHOR id="GVirInterface" href="Libvirt-gobject/GVirInterface.html">
162 <ANCHOR id="GVirInterface.functions" href="Libvirt-gobject/GVirInterface.html#GVirInterface.functions">
163 <ANCHOR id="GVirInterface.properties" href="Libvirt-gobject/GVirInterface.html#GVirInterface.properties">
164 <ANCHOR id="GVirInterface.object-hierarchy" href="Libvirt-gobject/GVirInterface.html#GVirInterface.object-hierarchy">
165 <ANCHOR id="GVirInterface.description" href="Libvirt-gobject/GVirInterface.html#GVirInterface.description">
166 <ANCHOR id="GVirInterface.functions_details" href="Libvirt-gobject/GVirInterface.html#GVirInterface.functions_details">
167 <ANCHOR id="gvir-interface-get-name" href="Libvirt-gobject/GVirInterface.html#gvir-interface-get-name">
168 <ANCHOR id="gvir-interface-get-config" href="Libvirt-gobject/GVirInterface.html#gvir-interface-get-config">
169 <ANCHOR id="GVirInterface.other_details" href="Libvirt-gobject/GVirInterface.html#GVirInterface.other_details">
170 <ANCHOR id="GVirInterface.property-details" href="Libvirt-gobject/GVirInterface.html#GVirInterface.property-details">
171 <ANCHOR id="GVirInterface--handle" href="Libvirt-gobject/GVirInterface.html#GVirInterface--handle">
197172 <ANCHOR id="GVirManager" href="Libvirt-gobject/GVirManager.html">
198 <ANCHOR id="GVirManager.synopsis" href="Libvirt-gobject/GVirManager.html#GVirManager.synopsis">
173 <ANCHOR id="GVirManager.functions" href="Libvirt-gobject/GVirManager.html#GVirManager.functions">
174 <ANCHOR id="GVirManager.signals" href="Libvirt-gobject/GVirManager.html#GVirManager.signals">
199175 <ANCHOR id="GVirManager.object-hierarchy" href="Libvirt-gobject/GVirManager.html#GVirManager.object-hierarchy">
200 <ANCHOR id="GVirManager.signals" href="Libvirt-gobject/GVirManager.html#GVirManager.signals">
201176 <ANCHOR id="GVirManager.description" href="Libvirt-gobject/GVirManager.html#GVirManager.description">
202 <ANCHOR id="GVirManager.details" href="Libvirt-gobject/GVirManager.html#GVirManager.details">
203 <ANCHOR id="GVirManager-struct" href="Libvirt-gobject/GVirManager.html#GVirManager-struct">
204 <ANCHOR id="GVirManagerClass" href="Libvirt-gobject/GVirManager.html#GVirManagerClass">
177 <ANCHOR id="GVirManager.functions_details" href="Libvirt-gobject/GVirManager.html#GVirManager.functions_details">
205178 <ANCHOR id="gvir-manager-new" href="Libvirt-gobject/GVirManager.html#gvir-manager-new">
206179 <ANCHOR id="gvir-manager-add-connection" href="Libvirt-gobject/GVirManager.html#gvir-manager-add-connection">
207180 <ANCHOR id="gvir-manager-remove-connection" href="Libvirt-gobject/GVirManager.html#gvir-manager-remove-connection">
208181 <ANCHOR id="gvir-manager-get-connections" href="Libvirt-gobject/GVirManager.html#gvir-manager-get-connections">
209182 <ANCHOR id="gvir-manager-find-connection-by-uri" href="Libvirt-gobject/GVirManager.html#gvir-manager-find-connection-by-uri">
183 <ANCHOR id="GVirManager.other_details" href="Libvirt-gobject/GVirManager.html#GVirManager.other_details">
210184 <ANCHOR id="GVirManager.signal-details" href="Libvirt-gobject/GVirManager.html#GVirManager.signal-details">
211185 <ANCHOR id="GVirManager-connection-added" href="Libvirt-gobject/GVirManager.html#GVirManager-connection-added">
212186 <ANCHOR id="GVirManager-connection-removed" href="Libvirt-gobject/GVirManager.html#GVirManager-connection-removed">
213187 <ANCHOR id="GVirNetworkFilter" href="Libvirt-gobject/GVirNetworkFilter.html">
214 <ANCHOR id="GVirNetworkFilter.synopsis" href="Libvirt-gobject/GVirNetworkFilter.html#GVirNetworkFilter.synopsis">
188 <ANCHOR id="GVirNetworkFilter.functions" href="Libvirt-gobject/GVirNetworkFilter.html#GVirNetworkFilter.functions">
189 <ANCHOR id="GVirNetworkFilter.properties" href="Libvirt-gobject/GVirNetworkFilter.html#GVirNetworkFilter.properties">
215190 <ANCHOR id="GVirNetworkFilter.object-hierarchy" href="Libvirt-gobject/GVirNetworkFilter.html#GVirNetworkFilter.object-hierarchy">
216 <ANCHOR id="GVirNetworkFilter.properties" href="Libvirt-gobject/GVirNetworkFilter.html#GVirNetworkFilter.properties">
217191 <ANCHOR id="GVirNetworkFilter.description" href="Libvirt-gobject/GVirNetworkFilter.html#GVirNetworkFilter.description">
218 <ANCHOR id="GVirNetworkFilter.details" href="Libvirt-gobject/GVirNetworkFilter.html#GVirNetworkFilter.details">
219 <ANCHOR id="GVirNetworkFilter-struct" href="Libvirt-gobject/GVirNetworkFilter.html#GVirNetworkFilter-struct">
220 <ANCHOR id="GVirNetworkFilterClass" href="Libvirt-gobject/GVirNetworkFilter.html#GVirNetworkFilterClass">
192 <ANCHOR id="GVirNetworkFilter.functions_details" href="Libvirt-gobject/GVirNetworkFilter.html#GVirNetworkFilter.functions_details">
221193 <ANCHOR id="gvir-network-filter-get-name" href="Libvirt-gobject/GVirNetworkFilter.html#gvir-network-filter-get-name">
222194 <ANCHOR id="gvir-network-filter-get-uuid" href="Libvirt-gobject/GVirNetworkFilter.html#gvir-network-filter-get-uuid">
223195 <ANCHOR id="gvir-network-filter-get-config" href="Libvirt-gobject/GVirNetworkFilter.html#gvir-network-filter-get-config">
196 <ANCHOR id="GVirNetworkFilter.other_details" href="Libvirt-gobject/GVirNetworkFilter.html#GVirNetworkFilter.other_details">
224197 <ANCHOR id="GVirNetworkFilter.property-details" href="Libvirt-gobject/GVirNetworkFilter.html#GVirNetworkFilter.property-details">
225198 <ANCHOR id="GVirNetworkFilter--handle" href="Libvirt-gobject/GVirNetworkFilter.html#GVirNetworkFilter--handle">
226199 <ANCHOR id="GVirNetwork" href="Libvirt-gobject/GVirNetwork.html">
227 <ANCHOR id="GVirNetwork.synopsis" href="Libvirt-gobject/GVirNetwork.html#GVirNetwork.synopsis">
200 <ANCHOR id="GVirNetwork.functions" href="Libvirt-gobject/GVirNetwork.html#GVirNetwork.functions">
201 <ANCHOR id="GVirNetwork.properties" href="Libvirt-gobject/GVirNetwork.html#GVirNetwork.properties">
228202 <ANCHOR id="GVirNetwork.object-hierarchy" href="Libvirt-gobject/GVirNetwork.html#GVirNetwork.object-hierarchy">
229 <ANCHOR id="GVirNetwork.properties" href="Libvirt-gobject/GVirNetwork.html#GVirNetwork.properties">
230203 <ANCHOR id="GVirNetwork.description" href="Libvirt-gobject/GVirNetwork.html#GVirNetwork.description">
231 <ANCHOR id="GVirNetwork.details" href="Libvirt-gobject/GVirNetwork.html#GVirNetwork.details">
232 <ANCHOR id="GVirNetwork-struct" href="Libvirt-gobject/GVirNetwork.html#GVirNetwork-struct">
233 <ANCHOR id="GVirNetworkClass" href="Libvirt-gobject/GVirNetwork.html#GVirNetworkClass">
204 <ANCHOR id="GVirNetwork.functions_details" href="Libvirt-gobject/GVirNetwork.html#GVirNetwork.functions_details">
234205 <ANCHOR id="gvir-network-get-name" href="Libvirt-gobject/GVirNetwork.html#gvir-network-get-name">
235206 <ANCHOR id="gvir-network-get-uuid" href="Libvirt-gobject/GVirNetwork.html#gvir-network-get-uuid">
236207 <ANCHOR id="gvir-network-get-config" href="Libvirt-gobject/GVirNetwork.html#gvir-network-get-config">
208 <ANCHOR id="GVirNetwork.other_details" href="Libvirt-gobject/GVirNetwork.html#GVirNetwork.other_details">
237209 <ANCHOR id="GVirNetwork.property-details" href="Libvirt-gobject/GVirNetwork.html#GVirNetwork.property-details">
238210 <ANCHOR id="GVirNetwork--handle" href="Libvirt-gobject/GVirNetwork.html#GVirNetwork--handle">
239211 <ANCHOR id="GVirNodeDevice" href="Libvirt-gobject/GVirNodeDevice.html">
240 <ANCHOR id="GVirNodeDevice.synopsis" href="Libvirt-gobject/GVirNodeDevice.html#GVirNodeDevice.synopsis">
212 <ANCHOR id="GVirNodeDevice.functions" href="Libvirt-gobject/GVirNodeDevice.html#GVirNodeDevice.functions">
213 <ANCHOR id="GVirNodeDevice.properties" href="Libvirt-gobject/GVirNodeDevice.html#GVirNodeDevice.properties">
241214 <ANCHOR id="GVirNodeDevice.object-hierarchy" href="Libvirt-gobject/GVirNodeDevice.html#GVirNodeDevice.object-hierarchy">
242 <ANCHOR id="GVirNodeDevice.properties" href="Libvirt-gobject/GVirNodeDevice.html#GVirNodeDevice.properties">
243215 <ANCHOR id="GVirNodeDevice.description" href="Libvirt-gobject/GVirNodeDevice.html#GVirNodeDevice.description">
244 <ANCHOR id="GVirNodeDevice.details" href="Libvirt-gobject/GVirNodeDevice.html#GVirNodeDevice.details">
245 <ANCHOR id="GVirNodeDevice-struct" href="Libvirt-gobject/GVirNodeDevice.html#GVirNodeDevice-struct">
246 <ANCHOR id="GVirNodeDeviceClass" href="Libvirt-gobject/GVirNodeDevice.html#GVirNodeDeviceClass">
216 <ANCHOR id="GVirNodeDevice.functions_details" href="Libvirt-gobject/GVirNodeDevice.html#GVirNodeDevice.functions_details">
247217 <ANCHOR id="gvir-node-device-get-name" href="Libvirt-gobject/GVirNodeDevice.html#gvir-node-device-get-name">
248218 <ANCHOR id="gvir-node-device-get-config" href="Libvirt-gobject/GVirNodeDevice.html#gvir-node-device-get-config">
219 <ANCHOR id="GVirNodeDevice.other_details" href="Libvirt-gobject/GVirNodeDevice.html#GVirNodeDevice.other_details">
249220 <ANCHOR id="GVirNodeDevice.property-details" href="Libvirt-gobject/GVirNodeDevice.html#GVirNodeDevice.property-details">
250221 <ANCHOR id="GVirNodeDevice--handle" href="Libvirt-gobject/GVirNodeDevice.html#GVirNodeDevice--handle">
251222 <ANCHOR id="GVirSecret" href="Libvirt-gobject/GVirSecret.html">
252 <ANCHOR id="GVirSecret.synopsis" href="Libvirt-gobject/GVirSecret.html#GVirSecret.synopsis">
223 <ANCHOR id="GVirSecret.functions" href="Libvirt-gobject/GVirSecret.html#GVirSecret.functions">
224 <ANCHOR id="GVirSecret.properties" href="Libvirt-gobject/GVirSecret.html#GVirSecret.properties">
253225 <ANCHOR id="GVirSecret.object-hierarchy" href="Libvirt-gobject/GVirSecret.html#GVirSecret.object-hierarchy">
254 <ANCHOR id="GVirSecret.properties" href="Libvirt-gobject/GVirSecret.html#GVirSecret.properties">
255226 <ANCHOR id="GVirSecret.description" href="Libvirt-gobject/GVirSecret.html#GVirSecret.description">
256 <ANCHOR id="GVirSecret.details" href="Libvirt-gobject/GVirSecret.html#GVirSecret.details">
257 <ANCHOR id="GVirSecret-struct" href="Libvirt-gobject/GVirSecret.html#GVirSecret-struct">
258 <ANCHOR id="GVirSecretClass" href="Libvirt-gobject/GVirSecret.html#GVirSecretClass">
227 <ANCHOR id="GVirSecret.functions_details" href="Libvirt-gobject/GVirSecret.html#GVirSecret.functions_details">
259228 <ANCHOR id="gvir-secret-get-name" href="Libvirt-gobject/GVirSecret.html#gvir-secret-get-name">
260229 <ANCHOR id="gvir-secret-get-uuid" href="Libvirt-gobject/GVirSecret.html#gvir-secret-get-uuid">
261230 <ANCHOR id="gvir-secret-get-config" href="Libvirt-gobject/GVirSecret.html#gvir-secret-get-config">
231 <ANCHOR id="GVirSecret.other_details" href="Libvirt-gobject/GVirSecret.html#GVirSecret.other_details">
262232 <ANCHOR id="GVirSecret.property-details" href="Libvirt-gobject/GVirSecret.html#GVirSecret.property-details">
263233 <ANCHOR id="GVirSecret--handle" href="Libvirt-gobject/GVirSecret.html#GVirSecret--handle">
264234 <ANCHOR id="GVirStoragePool" href="Libvirt-gobject/GVirStoragePool.html">
265 <ANCHOR id="GVirStoragePool.synopsis" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePool.synopsis">
235 <ANCHOR id="GVirStoragePool.functions" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePool.functions">
236 <ANCHOR id="GVirStoragePool.properties" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePool.properties">
266237 <ANCHOR id="GVirStoragePoolInfo" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePoolInfo">
238 <ANCHOR id="GVirStoragePool.other" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePool.other">
267239 <ANCHOR id="GVirStoragePool.object-hierarchy" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePool.object-hierarchy">
268 <ANCHOR id="GVirStoragePool.properties" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePool.properties">
269240 <ANCHOR id="GVirStoragePool.description" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePool.description">
270 <ANCHOR id="GVirStoragePool.details" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePool.details">
271 <ANCHOR id="GVirStoragePool-struct" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePool-struct">
272 <ANCHOR id="GVirStoragePoolClass" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePoolClass">
273 <ANCHOR id="GVirStoragePoolState" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePoolState">
274 <ANCHOR id="GVIR-STORAGE-POOL-STATE-INACTIVE:CAPS" href="Libvirt-gobject/GVirStoragePool.html#GVIR-STORAGE-POOL-STATE-INACTIVE:CAPS">
275 <ANCHOR id="GVIR-STORAGE-POOL-STATE-BUILDING:CAPS" href="Libvirt-gobject/GVirStoragePool.html#GVIR-STORAGE-POOL-STATE-BUILDING:CAPS">
276 <ANCHOR id="GVIR-STORAGE-POOL-STATE-RUNNING:CAPS" href="Libvirt-gobject/GVirStoragePool.html#GVIR-STORAGE-POOL-STATE-RUNNING:CAPS">
277 <ANCHOR id="GVIR-STORAGE-POOL-STATE-DEGRADED:CAPS" href="Libvirt-gobject/GVirStoragePool.html#GVIR-STORAGE-POOL-STATE-DEGRADED:CAPS">
278 <ANCHOR id="GVIR-STORAGE-POOL-STATE-INACCESSIBLE:CAPS" href="Libvirt-gobject/GVirStoragePool.html#GVIR-STORAGE-POOL-STATE-INACCESSIBLE:CAPS">
279 <ANCHOR id="GVirStoragePoolInfo-struct" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePoolInfo-struct">
241 <ANCHOR id="GVirStoragePool.functions_details" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePool.functions_details">
280242 <ANCHOR id="gvir-storage-pool-get-name" href="Libvirt-gobject/GVirStoragePool.html#gvir-storage-pool-get-name">
281243 <ANCHOR id="gvir-storage-pool-get-uuid" href="Libvirt-gobject/GVirStoragePool.html#gvir-storage-pool-get-uuid">
282244 <ANCHOR id="gvir-storage-pool-get-active" href="Libvirt-gobject/GVirStoragePool.html#gvir-storage-pool-get-active">
304266 <ANCHOR id="gvir-storage-pool-delete" href="Libvirt-gobject/GVirStoragePool.html#gvir-storage-pool-delete">
305267 <ANCHOR id="gvir-storage-pool-delete-async" href="Libvirt-gobject/GVirStoragePool.html#gvir-storage-pool-delete-async">
306268 <ANCHOR id="gvir-storage-pool-delete-finish" href="Libvirt-gobject/GVirStoragePool.html#gvir-storage-pool-delete-finish">
269 <ANCHOR id="GVirStoragePool.other_details" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePool.other_details">
270 <ANCHOR id="GVirStoragePoolState" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePoolState">
307271 <ANCHOR id="GVirStoragePool.property-details" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePool.property-details">
308272 <ANCHOR id="GVirStoragePool--handle" href="Libvirt-gobject/GVirStoragePool.html#GVirStoragePool--handle">
309273 <ANCHOR id="GVirStorageVol" href="Libvirt-gobject/GVirStorageVol.html">
310 <ANCHOR id="GVirStorageVol.synopsis" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVol.synopsis">
274 <ANCHOR id="GVirStorageVol.functions" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVol.functions">
275 <ANCHOR id="GVirStorageVol.properties" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVol.properties">
311276 <ANCHOR id="GVirStorageVolInfo" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVolInfo">
277 <ANCHOR id="GVirStorageVol.other" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVol.other">
312278 <ANCHOR id="GVirStorageVol.object-hierarchy" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVol.object-hierarchy">
313 <ANCHOR id="GVirStorageVol.properties" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVol.properties">
314279 <ANCHOR id="GVirStorageVol.description" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVol.description">
315 <ANCHOR id="GVirStorageVol.details" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVol.details">
316 <ANCHOR id="GVirStorageVol-struct" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVol-struct">
317 <ANCHOR id="GVirStorageVolClass" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVolClass">
318 <ANCHOR id="GVirStorageVolType" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVolType">
319 <ANCHOR id="GVIR-STORAGE-VOL-STATE-FILE:CAPS" href="Libvirt-gobject/GVirStorageVol.html#GVIR-STORAGE-VOL-STATE-FILE:CAPS">
320 <ANCHOR id="GVIR-STORAGE-VOL-STATE-BLOCK:CAPS" href="Libvirt-gobject/GVirStorageVol.html#GVIR-STORAGE-VOL-STATE-BLOCK:CAPS">
321 <ANCHOR id="GVIR-STORAGE-VOL-STATE-DIR:CAPS" href="Libvirt-gobject/GVirStorageVol.html#GVIR-STORAGE-VOL-STATE-DIR:CAPS">
322 <ANCHOR id="GVirStorageVolResizeFlags" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVolResizeFlags">
323 <ANCHOR id="GVIR-STORAGE-VOL-RESIZE-NONE:CAPS" href="Libvirt-gobject/GVirStorageVol.html#GVIR-STORAGE-VOL-RESIZE-NONE:CAPS">
324 <ANCHOR id="GVIR-STORAGE-VOL-RESIZE-ALLOCATE:CAPS" href="Libvirt-gobject/GVirStorageVol.html#GVIR-STORAGE-VOL-RESIZE-ALLOCATE:CAPS">
325 <ANCHOR id="GVIR-STORAGE-VOL-RESIZE-DELTA:CAPS" href="Libvirt-gobject/GVirStorageVol.html#GVIR-STORAGE-VOL-RESIZE-DELTA:CAPS">
326 <ANCHOR id="GVIR-STORAGE-VOL-RESIZE-SHRINK:CAPS" href="Libvirt-gobject/GVirStorageVol.html#GVIR-STORAGE-VOL-RESIZE-SHRINK:CAPS">
327 <ANCHOR id="GVirStorageVolInfo-struct" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVolInfo-struct">
280 <ANCHOR id="GVirStorageVol.functions_details" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVol.functions_details">
328281 <ANCHOR id="gvir-storage-vol-get-name" href="Libvirt-gobject/GVirStorageVol.html#gvir-storage-vol-get-name">
329282 <ANCHOR id="gvir-storage-vol-get-path" href="Libvirt-gobject/GVirStorageVol.html#gvir-storage-vol-get-path">
330283 <ANCHOR id="gvir-storage-vol-delete" href="Libvirt-gobject/GVirStorageVol.html#gvir-storage-vol-delete">
333286 <ANCHOR id="gvir-storage-vol-resize" href="Libvirt-gobject/GVirStorageVol.html#gvir-storage-vol-resize">
334287 <ANCHOR id="gvir-storage-vol-download" href="Libvirt-gobject/GVirStorageVol.html#gvir-storage-vol-download">
335288 <ANCHOR id="gvir-storage-vol-upload" href="Libvirt-gobject/GVirStorageVol.html#gvir-storage-vol-upload">
289 <ANCHOR id="GVirStorageVol.other_details" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVol.other_details">
290 <ANCHOR id="GVirStorageVolType" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVolType">
291 <ANCHOR id="GVirStorageVolResizeFlags" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVolResizeFlags">
336292 <ANCHOR id="GVirStorageVol.property-details" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVol.property-details">
337293 <ANCHOR id="GVirStorageVol--handle" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVol--handle">
338294 <ANCHOR id="GVirStorageVol--pool" href="Libvirt-gobject/GVirStorageVol.html#GVirStorageVol--pool">
339295 <ANCHOR id="GVirStream" href="Libvirt-gobject/GVirStream.html">
340 <ANCHOR id="GVirStream.synopsis" href="Libvirt-gobject/GVirStream.html#GVirStream.synopsis">
296 <ANCHOR id="GVirStream.functions" href="Libvirt-gobject/GVirStream.html#GVirStream.functions">
297 <ANCHOR id="GVirStream.properties" href="Libvirt-gobject/GVirStream.html#GVirStream.properties">
298 <ANCHOR id="GVirStream.other" href="Libvirt-gobject/GVirStream.html#GVirStream.other">
341299 <ANCHOR id="GVirStream.object-hierarchy" href="Libvirt-gobject/GVirStream.html#GVirStream.object-hierarchy">
342 <ANCHOR id="GVirStream.properties" href="Libvirt-gobject/GVirStream.html#GVirStream.properties">
343300 <ANCHOR id="GVirStream.description" href="Libvirt-gobject/GVirStream.html#GVirStream.description">
344 <ANCHOR id="GVirStream.details" href="Libvirt-gobject/GVirStream.html#GVirStream.details">
345 <ANCHOR id="GVirStream-struct" href="Libvirt-gobject/GVirStream.html#GVirStream-struct">
346 <ANCHOR id="GVirStreamClass" href="Libvirt-gobject/GVirStream.html#GVirStreamClass">
301 <ANCHOR id="GVirStream.functions_details" href="Libvirt-gobject/GVirStream.html#GVirStream.functions_details">
347302 <ANCHOR id="GVirStreamSinkFunc" href="Libvirt-gobject/GVirStream.html#GVirStreamSinkFunc">
348303 <ANCHOR id="GVirStreamSourceFunc" href="Libvirt-gobject/GVirStream.html#GVirStreamSourceFunc">
349 <ANCHOR id="GVirStreamIOCondition" href="Libvirt-gobject/GVirStream.html#GVirStreamIOCondition">
350 <ANCHOR id="GVIR-STREAM-IO-CONDITION-READABLE:CAPS" href="Libvirt-gobject/GVirStream.html#GVIR-STREAM-IO-CONDITION-READABLE:CAPS">
351 <ANCHOR id="GVIR-STREAM-IO-CONDITION-WRITABLE:CAPS" href="Libvirt-gobject/GVirStream.html#GVIR-STREAM-IO-CONDITION-WRITABLE:CAPS">
352 <ANCHOR id="GVIR-STREAM-IO-CONDITION-HANGUP:CAPS" href="Libvirt-gobject/GVirStream.html#GVIR-STREAM-IO-CONDITION-HANGUP:CAPS">
353 <ANCHOR id="GVIR-STREAM-IO-CONDITION-ERROR:CAPS" href="Libvirt-gobject/GVirStream.html#GVIR-STREAM-IO-CONDITION-ERROR:CAPS">
354304 <ANCHOR id="GVirStreamIOFunc" href="Libvirt-gobject/GVirStream.html#GVirStreamIOFunc">
355305 <ANCHOR id="gvir-stream-add-watch" href="Libvirt-gobject/GVirStream.html#gvir-stream-add-watch">
356306 <ANCHOR id="gvir-stream-add-watch-full" href="Libvirt-gobject/GVirStream.html#gvir-stream-add-watch-full">
358308 <ANCHOR id="gvir-stream-receive" href="Libvirt-gobject/GVirStream.html#gvir-stream-receive">
359309 <ANCHOR id="gvir-stream-send-all" href="Libvirt-gobject/GVirStream.html#gvir-stream-send-all">
360310 <ANCHOR id="gvir-stream-send" href="Libvirt-gobject/GVirStream.html#gvir-stream-send">
311 <ANCHOR id="GVirStream.other_details" href="Libvirt-gobject/GVirStream.html#GVirStream.other_details">
312 <ANCHOR id="GVirStreamIOCondition" href="Libvirt-gobject/GVirStream.html#GVirStreamIOCondition">
361313 <ANCHOR id="GVirStream.property-details" href="Libvirt-gobject/GVirStream.html#GVirStream.property-details">
362314 <ANCHOR id="GVirStream--handle" href="Libvirt-gobject/GVirStream.html#GVirStream--handle">
315 <ANCHOR id="annotation-glossterm-allow-none" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-allow-none">
316 <ANCHOR id="annotation-glossterm-array" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-array">
317 <ANCHOR id="annotation-glossterm-closure" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-closure">
318 <ANCHOR id="annotation-glossterm-element-type" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-element-type">
319 <ANCHOR id="annotation-glossterm-inout" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-inout">
363320 <ANCHOR id="annotation-glossterm-out" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-out">
364321 <ANCHOR id="annotation-glossterm-scope async" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-scope async">
365 <ANCHOR id="annotation-glossterm-allow-none" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-allow-none">
366 <ANCHOR id="annotation-glossterm-inout" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-inout">
367 <ANCHOR id="annotation-glossterm-closure" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-closure">
322 <ANCHOR id="annotation-glossterm-scope notified" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-scope notified">
323 <ANCHOR id="annotation-glossterm-transfer full" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-transfer full">
368324 <ANCHOR id="annotation-glossterm-transfer none" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-transfer none">
369 <ANCHOR id="annotation-glossterm-array" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-array">
370 <ANCHOR id="annotation-glossterm-element-type" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-element-type">
371 <ANCHOR id="annotation-glossterm-transfer full" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-transfer full">
372325 <ANCHOR id="annotation-glossterm-type" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-type">
373 <ANCHOR id="annotation-glossterm-scope notified" href="Libvirt-gobject/annotation-glossary.html#annotation-glossterm-scope notified">
11 <html>
22 <head>
33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <title>Object Hierarchy</title>
4 <title>Libvirt-gobject Reference Manual: Object Hierarchy</title>
55 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
66 <link rel="home" href="index.html" title="Libvirt-gobject Reference Manual">
77 <link rel="up" href="index.html" title="Libvirt-gobject Reference Manual">
88 <link rel="prev" href="GVirStream.html" title="GVirStream">
99 <link rel="next" href="api-index-full.html" title="API Index">
10 <meta name="generator" content="GTK-Doc V1.19 (XML mode)">
10 <meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1111 <link rel="stylesheet" href="style.css" type="text/css">
1212 </head>
1313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
15 <td><a accesskey="p" href="GVirStream.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
16 <td> </td>
17 <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
18 <th width="100%" align="center">Libvirt-gobject Reference Manual</th>
19 <td><a accesskey="n" href="api-index-full.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
14 <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
15 <td width="100%" align="left" class="shortcuts"></td>
16 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
17 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
18 <td><a accesskey="p" href="GVirStream.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
19 <td><a accesskey="n" href="api-index-full.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
2020 </tr></table>
2121 <div class="chapter">
2222 <div class="titlepage"><div><div><h1 class="title">
2323 <a name="object-tree"></a>Object Hierarchy</h1></div></div></div>
2424 <pre class="screen">
25 GObject
26 <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
27 GVirDomainDevice
28 GVirDomainDisk
29 GVirDomainInterface
30 <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
31 <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
32 <a class="link" href="Libvirt-gobject-GVir.html#GVirInterface">GVirInterface</a>
33 <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
34 <a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter">GVirNetworkFilter</a>
35 <a class="link" href="GVirNetwork.html" title="GVirNetwork">GVirNetwork</a>
36 <a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice">GVirNodeDevice</a>
37 <a class="link" href="GVirSecret.html" title="GVirSecret">GVirSecret</a>
38 <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
39 <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
40 GIOStream
41 <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
42 GBoxed
43 GVirDomainDiskStats
44 <a class="link" href="GVirDomain.html#GVirDomainInfo">GVirDomainInfo</a>
45 GVirDomainInterfaceStats
46 <a class="link" href="GVirConnection.html#GVirNodeInfo">GVirNodeInfo</a>
47 <a class="link" href="GVirStoragePool.html#GVirStoragePoolInfo">GVirStoragePoolInfo</a>
48 <a class="link" href="GVirStorageVol.html#GVirStorageVolInfo">GVirStorageVolInfo</a>
25 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
26 <span class="lineart">├──</span> <a class="link" href="GVirConnection.html" title="GVirConnection">GVirConnection</a>
27 <span class="lineart">├──</span> GVirDomainDevice
28 <span class="lineart">│</span> <span class="lineart">├──</span> GVirDomainDisk
29 <span class="lineart">│</span> <span class="lineart">╰──</span> GVirDomainInterface
30 <span class="lineart">├──</span> <a class="link" href="GVirDomain.html" title="GVirDomain">GVirDomain</a>
31 <span class="lineart">├──</span> <a class="link" href="GVirDomainSnapshot.html" title="GVirDomainSnapshot">GVirDomainSnapshot</a>
32 <span class="lineart">├──</span> <a class="link" href="GVirInterface.html" title="GVirInterface">GVirInterface</a>
33 <span class="lineart">├──</span> <a class="link" href="GVirManager.html" title="GVirManager">GVirManager</a>
34 <span class="lineart">├──</span> <a class="link" href="GVirNetworkFilter.html" title="GVirNetworkFilter">GVirNetworkFilter</a>
35 <span class="lineart">├──</span> <a class="link" href="GVirNetwork.html" title="GVirNetwork">GVirNetwork</a>
36 <span class="lineart">├──</span> <a class="link" href="GVirNodeDevice.html" title="GVirNodeDevice">GVirNodeDevice</a>
37 <span class="lineart">├──</span> <a class="link" href="GVirSecret.html" title="GVirSecret">GVirSecret</a>
38 <span class="lineart">├──</span> <a class="link" href="GVirStoragePool.html" title="GVirStoragePool">GVirStoragePool</a>
39 <span class="lineart">├──</span> <a class="link" href="GVirStorageVol.html" title="GVirStorageVol">GVirStorageVol</a>
40 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gio/unstable/GIOStream.html">GIOStream</a>
41 <span class="lineart">╰──</span> <a class="link" href="GVirStream.html" title="GVirStream">GVirStream</a>
42 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html">GBoxed</a>
43 <span class="lineart">├──</span> GVirDomainDiskStats
44 <span class="lineart">├──</span> <a class="link" href="GVirDomain.html#GVirDomainInfo">GVirDomainInfo</a>
45 <span class="lineart">├──</span> GVirDomainInterfaceStats
46 <span class="lineart">├──</span> <a class="link" href="GVirConnection.html#GVirNodeInfo">GVirNodeInfo</a>
47 <span class="lineart">├──</span> <a class="link" href="GVirStoragePool.html#GVirStoragePoolInfo">GVirStoragePoolInfo</a>
48 <span class="lineart">╰──</span> <a class="link" href="GVirStorageVol.html#GVirStorageVolInfo">GVirStorageVolInfo</a>
4949 </pre>
5050 </div>
5151 <div class="footer">
5252 <hr>
53 Generated by GTK-Doc V1.19</div>
53 Generated by GTK-Doc V1.21</div>
5454 </body>
5555 </html>
0 body
1 {
2 font-family: cantarell, sans-serif;
3 }
04 .synopsis, .classsynopsis
15 {
26 /* tango:aluminium 1/2 */
37 background: #eeeeec;
4 border: solid 1px #d3d7cf;
8 background: rgba(238, 238, 236, 0.5);
9 border: solid 1px rgb(238, 238, 236);
510 padding: 0.5em;
611 }
712 .programlisting
813 {
914 /* tango:sky blue 0/1 */
15 /* fallback for no rgba support */
1016 background: #e6f3ff;
1117 border: solid 1px #729fcf;
18 background: rgba(114, 159, 207, 0.1);
19 border: solid 1px rgba(114, 159, 207, 0.2);
1220 padding: 0.5em;
1321 }
1422 .variablelist
2129 vertical-align: top;
2230 }
2331
32 div.gallery-float
33 {
34 float: left;
35 padding: 10px;
36 }
37 div.gallery-float img
38 {
39 border-style: none;
40 }
41 div.gallery-spacer
42 {
43 clear: both;
44 }
45
46 a, a:visited
47 {
48 text-decoration: none;
49 /* tango:sky blue 2 */
50 color: #3465a4;
51 }
52 a:hover
53 {
54 text-decoration: underline;
55 /* tango:sky blue 1 */
56 color: #729fcf;
57 }
58
59 div.informaltable table
60 {
61 border-collapse: separate;
62 border-spacing: 1em 0.5em;
63 border: none;
64 }
65
66 div.informaltable table td, div.informaltable table th
67 {
68 vertical-align: top;
69 }
70
71 .function_type,
72 .variable_type,
73 .property_type,
74 .signal_type,
75 .parameter_name,
76 .struct_member_name,
77 .union_member_name,
78 .define_keyword,
79 .datatype_keyword,
80 .typedef_keyword
81 {
82 text-align: right;
83 }
84
85 /* dim non-primary columns */
86 .c_punctuation,
87 .function_type,
88 .variable_type,
89 .property_type,
90 .signal_type,
91 .define_keyword,
92 .datatype_keyword,
93 .typedef_keyword,
94 .property_flags,
95 .signal_flags,
96 .parameter_annotations,
97 .enum_member_annotations,
98 .struct_member_annotations,
99 .union_member_annotations
100 {
101 color: #888a85;
102 }
103
104 .function_type a,
105 .function_type a:visited,
106 .function_type a:hover,
107 .property_type a,
108 .property_type a:visited,
109 .property_type a:hover,
110 .signal_type a,
111 .signal_type a:visited,
112 .signal_type a:hover,
113 .signal_flags a,
114 .signal_flags a:visited,
115 .signal_flags a:hover
116 {
117 color: #729fcf;
118 }
119
120 td p
121 {
122 margin: 0.25em;
123 }
124
125 div.table table
126 {
127 border-collapse: collapse;
128 border-spacing: 0px;
129 /* tango:aluminium 3 */
130 border: solid 1px #babdb6;
131 }
132
133 div.table table td, div.table table th
134 {
135 /* tango:aluminium 3 */
136 border: solid 1px #babdb6;
137 padding: 3px;
138 vertical-align: top;
139 }
140
141 div.table table th
142 {
143 /* tango:aluminium 2 */
144 background-color: #d3d7cf;
145 }
146
147 h4
148 {
149 color: #555753;
150 }
151
152 hr
153 {
154 /* tango:aluminium 1 */
155 color: #d3d7cf;
156 background: #d3d7cf;
157 border: none 0px;
158 height: 1px;
159 clear: both;
160 margin: 2.0em 0em 2.0em 0em;
161 }
162
163 dl.toc dt
164 {
165 padding-bottom: 0.25em;
166 }
167
168 dl.toc > dd > dl > dt
169 {
170 padding-top: 0.25em;
171 padding-bottom: 0.25em;
172 }
173
174 dl.toc > dt
175 {
176 padding-top: 1em;
177 padding-bottom: 0.5em;
178 font-weight: bold;
179 }
180
181 .parameter
182 {
183 font-style: normal;
184 }
185
186 .footer
187 {
188 padding-top: 3.5em;
189 /* tango:aluminium 3 */
190 color: #babdb6;
191 text-align: center;
192 font-size: 80%;
193 }
194
195 .informalfigure,
196 .figure
197 {
198 margin: 1em;
199 }
200
201 .informalexample,
202 .example
203 {
204 margin-top: 1em;
205 margin-bottom: 1em;
206 }
207
208 .warning
209 {
210 /* tango:orange 0/1 */
211 background: #ffeed9;
212 background: rgba(252, 175, 62, 0.1);
213 border-color: #ffb04f;
214 border-color: rgba(252, 175, 62, 0.2);
215 }
216 .note
217 {
218 /* tango:chameleon 0/0.5 */
219 background: #d8ffb2;
220 background: rgba(138, 226, 52, 0.1);
221 border-color: #abf562;
222 border-color: rgba(138, 226, 52, 0.2);
223 }
224 div.blockquote
225 {
226 border-color: #eeeeec;
227 }
228 .note, .warning, div.blockquote
229 {
230 padding: 0.5em;
231 border-width: 1px;
232 border-style: solid;
233 margin: 2em;
234 }
235 .note p, .warning p
236 {
237 margin: 0;
238 }
239
240 div.warning h3.title,
241 div.note h3.title
242 {
243 display: none;
244 }
245
246 p + div.section
247 {
248 margin-top: 1em;
249 }
250
251 div.refnamediv,
252 div.refsynopsisdiv,
253 div.refsect1,
254 div.refsect2,
255 div.toc,
256 div.section
257 {
258 margin-bottom: 1em;
259 }
260
261 /* blob links */
262 h2 .extralinks, h3 .extralinks
263 {
264 float: right;
265 /* tango:aluminium 3 */
266 color: #babdb6;
267 font-size: 80%;
268 font-weight: normal;
269 }
270
271 .lineart
272 {
273 color: #d3d7cf;
274 font-weight: normal;
275 }
276
277 .annotation
278 {
279 /* tango:aluminium 5 */
280 color: #555753;
281 font-weight: normal;
282 }
283
284 .structfield
285 {
286 font-style: normal;
287 font-weight: normal;
288 }
289
290 acronym,abbr
291 {
292 border-bottom: 1px dotted gray;
293 }
294
295 /* code listings */
296
297 .listing_code .programlisting .normal,
298 .listing_code .programlisting .normal a,
299 .listing_code .programlisting .number,
300 .listing_code .programlisting .cbracket,
301 .listing_code .programlisting .symbol { color: #555753; }
302 .listing_code .programlisting .comment,
303 .listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */
304 .listing_code .programlisting .function,
305 .listing_code .programlisting .function a,
306 .listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */
307 .listing_code .programlisting .string { color: #ad7fa8; } /* tango: plum */
308 .listing_code .programlisting .keyword,
309 .listing_code .programlisting .usertype,
310 .listing_code .programlisting .type,
311 .listing_code .programlisting .type a { color: #4e9a06; } /* tango: chameleon 3 */
312
313 .listing_frame {
314 /* tango:sky blue 1 */
315 border: solid 1px #729fcf;
316 border: solid 1px rgba(114, 159, 207, 0.2);
317 padding: 0px;
318 }
319
320 .listing_lines, .listing_code {
321 margin-top: 0px;
322 margin-bottom: 0px;
323 padding: 0.5em;
324 }
325 .listing_lines {
326 /* tango:sky blue 0.5 */
327 background: #a6c5e3;
328 background: rgba(114, 159, 207, 0.2);
329 /* tango:aluminium 6 */
330 color: #2e3436;
331 }
332 .listing_code {
333 /* tango:sky blue 0 */
334 background: #e6f3ff;
335 background: rgba(114, 159, 207, 0.1);
336 }
337 .listing_code .programlisting {
338 /* override from previous */
339 border: none 0px;
340 padding: 0px;
341 background: none;
342 }
343 .listing_lines pre, .listing_code pre {
344 margin: 0px;
345 }
346
24347 @media screen {
25348 sup a.footnote
26349 {
27350 position: relative;
28351 top: 0em ! important;
29
30352 }
31353 /* this is needed so that the local anchors are displayed below the naviagtion */
32354 div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name]
45367 */
46368 body
47369 {
48 padding-top: 3.2em;
49 padding-bottom: 20em;
370 padding-top: 2.5em;
371 padding-bottom: 500px;
372 max-width: 60em;
373 }
374 p
375 {
376 max-width: 60em;
50377 }
51378 /* style and size the navigation bar */
52379 table.navigation#top
53380 {
54381 position: fixed;
55 /* tango:scarlet red 0/1 */
56 background: #ffe6e6;
57 border: solid 1px #ef2929;
382 background: #e2e2e2;
383 border-bottom: solid 1px #babdb6;
384 border-spacing: 5px;
385 margin-top: 0;
386 margin-bottom: 0;
387 top: 0;
388 left: 0;
389 z-index: 10;
390 }
391 table.navigation#top td
392 {
393 padding-left: 6px;
394 padding-right: 6px;
395 }
396 .navigation a, .navigation a:visited
397 {
398 /* tango:sky blue 3 */
399 color: #204a87;
400 }
401 .navigation a:hover
402 {
403 /* tango:sky blue 2 */
404 color: #3465a4;
405 }
406 td.shortcuts
407 {
408 /* tango:sky blue 2 */
409 color: #3465a4;
410 font-size: 80%;
411 white-space: nowrap;
412 }
413 td.shortcuts .dim
414 {
415 color: #babdb6;
416 }
417 .navigation .title
418 {
419 font-size: 80%;
420 max-width: none;
421 margin: 0px;
422 font-weight: normal;
423 }
424 }
425 @media screen and (min-width: 60em) {
426 /* screen larger than 60em */
427 body { margin: auto; }
428 }
429 @media screen and (max-width: 60em) {
430 /* screen less than 60em */
431 #nav_hierarchy { display: none; }
432 #nav_interfaces { display: none; }
433 #nav_prerequisites { display: none; }
434 #nav_derived_interfaces { display: none; }
435 #nav_implementations { display: none; }
436 #nav_child_properties { display: none; }
437 #nav_style_properties { display: none; }
438 #nav_index { display: none; }
439 #nav_glossary { display: none; }
440 .gallery_image { display: none; }
441 .property_flags { display: none; }
442 .signal_flags { display: none; }
443 .parameter_annotations { display: none; }
444 .enum_member_annotations { display: none; }
445 .struct_member_annotations { display: none; }
446 .union_member_annotations { display: none; }
447 /* now that a column is hidden, optimize space */
448 col.parameters_name { width: auto; }
449 col.parameters_description { width: auto; }
450 col.struct_members_name { width: auto; }
451 col.struct_members_description { width: auto; }
452 col.enum_members_name { width: auto; }
453 col.enum_members_description { width: auto; }
454 col.union_members_name { width: auto; }
455 col.union_members_description { width: auto; }
456 .listing_lines { display: none; }
457 }
458 @media print {
459 table.navigation {
460 visibility: collapse;
461 display: none;
462 }
463 div.titlepage table.navigation {
464 visibility: visible;
465 display: table;
466 background: #e2e2e2;
467 border: solid 1px #babdb6;
58468 margin-top: 0;
59469 margin-bottom: 0;
60470 top: 0;
61471 left: 0;
62472 height: 3em;
63 z-index: 10;
64 }
65 .navigation a, .navigation a:visited
66 {
67 /* tango:scarlet red 3 */
68 color: #a40000;
69 }
70 .navigation a:hover
71 {
72 /* tango:scarlet red 1 */
73 color: #ef2929;
74 }
75 td.shortcuts
76 {
77 /* tango:scarlet red 1 */
78 color: #ef2929;
79 font-size: 80%;
80 white-space: nowrap;
81 }
82 }
83 @media print {
84 table.navigation {
85 visibility: collapse;
86 display: none;
87 }
88 div.titlepage table.navigation {
89 visibility: visible;
90 display: table;
91 /* tango:scarlet red 0/1 */
92 background: #ffe6e6;
93 border: solid 1px #ef2929;
94 margin-top: 0;
95 margin-bottom: 0;
96 top: 0;
97 left: 0;
98 height: 3em;
99 }
100 }
101
102 .navigation .title
103 {
104 font-size: 200%;
105 }
106
107 div.gallery-float
108 {
109 float: left;
110 padding: 10px;
111 }
112 div.gallery-float img
113 {
114 border-style: none;
115 }
116 div.gallery-spacer
117 {
118 clear: both;
119 }
120
121 a, a:visited
122 {
123 text-decoration: none;
124 /* tango:sky blue 2 */
125 color: #3465a4;
126 }
127 a:hover
128 {
129 text-decoration: underline;
130 /* tango:sky blue 1 */
131 color: #729fcf;
132 }
133
134 div.table table
135 {
136 border-collapse: collapse;
137 border-spacing: 0px;
138 /* tango:aluminium 3 */
139 border: solid 1px #babdb6;
140 }
141
142 div.table table td, div.table table th
143 {
144 /* tango:aluminium 3 */
145 border: solid 1px #babdb6;
146 padding: 3px;
147 vertical-align: top;
148 }
149
150 div.table table th
151 {
152 /* tango:aluminium 2 */
153 background-color: #d3d7cf;
154 }
155
156 hr
157 {
158 /* tango:aluminium 3 */
159 color: #babdb6;
160 background: #babdb6;
161 border: none 0px;
162 height: 1px;
163 clear: both;
164 }
165
166 .footer
167 {
168 padding-top: 3.5em;
169 /* tango:aluminium 3 */
170 color: #babdb6;
171 text-align: center;
172 font-size: 80%;
173 }
174
175 .warning
176 {
177 /* tango:orange 0/1 */
178 background: #ffeed9;
179 border-color: #ffb04f;
180 }
181 .note
182 {
183 /* tango:chameleon 0/0.5 */
184 background: #d8ffb2;
185 border-color: #abf562;
186 }
187 .note, .warning
188 {
189 padding: 0.5em;
190 border-width: 1px;
191 border-style: solid;
192 }
193 .note h3, .warning h3
194 {
195 margin-top: 0.0em
196 }
197 .note p, .warning p
198 {
199 margin-bottom: 0.0em
200 }
201
202 /* blob links */
203 h2 .extralinks, h3 .extralinks
204 {
205 float: right;
206 /* tango:aluminium 3 */
207 color: #babdb6;
208 font-size: 80%;
209 font-weight: normal;
210 }
211
212 .annotation
213 {
214 /* tango:aluminium 5 */
215 color: #555753;
216 font-size: 80%;
217 font-weight: normal;
218 }
219
220 /* code listings */
221
222 .listing_code .programlisting .cbracket { color: #a40000; } /* tango: scarlet red 3 */
223 .listing_code .programlisting .comment { color: #a1a39d; } /* tango: aluminium 4 */
224 .listing_code .programlisting .function { color: #000000; font-weight: bold; }
225 .listing_code .programlisting .function a { color: #11326b; font-weight: bold; } /* tango: sky blue 4 */
226 .listing_code .programlisting .keyword { color: #4e9a06; } /* tango: chameleon 3 */
227 .listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */
228 .listing_code .programlisting .normal { color: #000000; }
229 .listing_code .programlisting .number { color: #75507b; } /* tango: plum 2 */
230 .listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */
231 .listing_code .programlisting .string { color: #c17d11; } /* tango: chocolate 2 */
232 .listing_code .programlisting .type { color: #000000; }
233 .listing_code .programlisting .type a { color: #11326b; } /* tango: sky blue 4 */
234 .listing_code .programlisting .symbol { color: #ce5c00; } /* tango: orange 3 */
235
236 .listing_frame {
237 /* tango:sky blue 1 */
238 border: solid 1px #729fcf;
239 padding: 0px;
240 }
241
242 .listing_lines, .listing_code {
243 margin-top: 0px;
244 margin-bottom: 0px;
245 padding: 0.5em;
246 }
247 .listing_lines {
248 /* tango:sky blue 0.5 */
249 background: #a6c5e3;
250 /* tango:aluminium 6 */
251 color: #2e3436;
252 }
253 .listing_code {
254 /* tango:sky blue 0 */
255 background: #e6f3ff;
256 }
257 .listing_code .programlisting {
258 /* override from previous */
259 border: none 0px;
260 padding: 0px;
261 }
262 .listing_lines pre, .listing_code pre {
263 margin: 0px;
264 }
265
473 }
474 }
475
0 # Makefile.in generated by automake 1.13.2 from Makefile.am.
0 # Makefile.in generated by automake 1.13.4 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
8282 DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
8383 $(top_srcdir)/build-aux/depcomp
8484 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
85 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
86 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
87 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
88 $(top_srcdir)/m4/lt~obsolete.m4 \
85 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
86 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
87 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
88 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
8989 $(top_srcdir)/m4/manywarnings.m4 \
9090 $(top_srcdir)/m4/virt-compile-warnings.m4 \
9191 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
218218 GIO2_LIBS = @GIO2_LIBS@
219219 GLIB2_CFLAGS = @GLIB2_CFLAGS@
220220 GLIB2_LIBS = @GLIB2_LIBS@
221 GLIB2_REQUIRED = @GLIB2_REQUIRED@
221222 GLIB_MKENUMS = @GLIB_MKENUMS@
222223 GMSGFMT = @GMSGFMT@
223224 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
224225 GOBJECT2_LIBS = @GOBJECT2_LIBS@
225 GOBJECT_INTROSPECTION_CFLAGS = @GOBJECT_INTROSPECTION_CFLAGS@
226 GOBJECT_INTROSPECTION_LIBS = @GOBJECT_INTROSPECTION_LIBS@
227226 GREP = @GREP@
228227 GTHREAD2_CFLAGS = @GTHREAD2_CFLAGS@
229228 GTHREAD2_LIBS = @GTHREAD2_LIBS@
230229 GTKDOC_CHECK = @GTKDOC_CHECK@
230 GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
231231 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
232232 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
233233 GTKDOC_MKPDF = @GTKDOC_MKPDF@
234234 GTKDOC_REBASE = @GTKDOC_REBASE@
235 G_IR_COMPILER = @G_IR_COMPILER@
236 G_IR_SCANNER = @G_IR_SCANNER@
237235 HTML_DIR = @HTML_DIR@
238236 INSTALL = @INSTALL@
239237 INSTALL_DATA = @INSTALL_DATA@
248246 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
249247 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
250248 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
249 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
250 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
251 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
252 INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
253 INTROSPECTION_LIBS = @INTROSPECTION_LIBS@
254 INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@
255 INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
256 INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
251257 LD = @LD@
252258 LDFLAGS = @LDFLAGS@
253259 LIBOBJS = @LIBOBJS@
338344 includedir = @includedir@
339345 infodir = @infodir@
340346 install_sh = @install_sh@
347 installed_test_metadir = @installed_test_metadir@
348 installed_testdir = @installed_testdir@
341349 intltool__v_merge_options_ = @intltool__v_merge_options_@
342350 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
343351 libdir = @libdir@
2727 disk.set_guest_device_type(LibvirtGConfig.DomainDiskGuestDeviceType.DISK)
2828 disk.set_source("/tmp/foo/bar")
2929 disk.set_driver_name("qemu")
30 disk.set_driver_format(LibvirtGConfig.DriverType.QCOW2)
30 disk.set_driver_format(LibvirtGConfig.DomainDiskFormat.QCOW2)
3131 disk.set_target_bus(LibvirtGConfig.DomainDiskBus.IDE)
3232 disk.set_target_dev("hda")
3333 domain.add_device(disk)
3434
3535 interface = LibvirtGConfig.DomainInterfaceNetwork.new()
3636 interface.set_source("default")
37 filterref = LibvirtGConfig.DomainInterfaceFilterref.new()
38 filterref.set_name("clean-traffic")
39 parameter = LibvirtGConfig.DomainInterfaceFilterrefParameter.new()
40 parameter.set_name("IP")
41 parameter.set_value("205.23.12.40")
42 filterref.add_parameter(parameter)
43 interface.set_filterref(filterref)
3744 domain.add_device(interface)
3845
3946 interface = LibvirtGConfig.DomainInterfaceUser.new()
1414 libvirt-gconfig-capabilities-host.h \
1515 libvirt-gconfig-capabilities-cpu.h \
1616 libvirt-gconfig-capabilities-cpu-feature.h \
17 libvirt-gconfig-capabilities-cpu-model.h \
1718 libvirt-gconfig-capabilities-cpu-topology.h \
1819 libvirt-gconfig-capabilities-guest.h \
1920 libvirt-gconfig-capabilities-guest-arch.h \
2021 libvirt-gconfig-capabilities-guest-domain.h \
2122 libvirt-gconfig-capabilities-guest-feature.h \
23 libvirt-gconfig-capabilities-host-secmodel.h \
2224 libvirt-gconfig-domain.h \
2325 libvirt-gconfig-domain-address.h \
2426 libvirt-gconfig-domain-address-pci.h \
2729 libvirt-gconfig-domain-chardev.h \
2830 libvirt-gconfig-domain-chardev-source.h \
2931 libvirt-gconfig-domain-chardev-source-pty.h \
32 libvirt-gconfig-domain-chardev-source-spiceport.h \
3033 libvirt-gconfig-domain-chardev-source-spicevmc.h \
3134 libvirt-gconfig-domain-clock.h \
3235 libvirt-gconfig-domain-console.h \
3437 libvirt-gconfig-domain-controller-usb.h \
3538 libvirt-gconfig-domain-cpu.h \
3639 libvirt-gconfig-domain-cpu-feature.h \
40 libvirt-gconfig-domain-cpu-model.h \
3741 libvirt-gconfig-domain-device.h \
3842 libvirt-gconfig-domain-disk.h \
43 libvirt-gconfig-domain-disk-driver.h \
3944 libvirt-gconfig-domain-filesys.h \
4045 libvirt-gconfig-domain-graphics.h \
4146 libvirt-gconfig-domain-graphics-desktop.h \
4651 libvirt-gconfig-domain-input.h \
4752 libvirt-gconfig-domain-interface.h \
4853 libvirt-gconfig-domain-interface-bridge.h \
54 libvirt-gconfig-domain-interface-filterref.h \
55 libvirt-gconfig-domain-interface-filterref-parameter.h \
4956 libvirt-gconfig-domain-interface-network.h \
5057 libvirt-gconfig-domain-interface-user.h \
5158 libvirt-gconfig-domain-memballoon.h \
6370 libvirt-gconfig-domain-snapshot-disk.h \
6471 libvirt-gconfig-domain-sound.h \
6572 libvirt-gconfig-domain-timer.h \
73 libvirt-gconfig-domain-timer-hpet.h \
6674 libvirt-gconfig-domain-timer-pit.h \
6775 libvirt-gconfig-domain-timer-rtc.h \
6876 libvirt-gconfig-domain-video.h \
96104 libvirt-gconfig-capabilities-host.c \
97105 libvirt-gconfig-capabilities-cpu.c \
98106 libvirt-gconfig-capabilities-cpu-feature.c \
107 libvirt-gconfig-capabilities-cpu-model.c \
99108 libvirt-gconfig-capabilities-cpu-topology.c \
100109 libvirt-gconfig-capabilities-guest.c \
101110 libvirt-gconfig-capabilities-guest-arch.c \
102111 libvirt-gconfig-capabilities-guest-domain.c \
103112 libvirt-gconfig-capabilities-guest-feature.c \
113 libvirt-gconfig-capabilities-host-secmodel.c \
104114 libvirt-gconfig-domain.c \
105115 libvirt-gconfig-domain-address.c \
106116 libvirt-gconfig-domain-address-pci.c \
109119 libvirt-gconfig-domain-chardev.c \
110120 libvirt-gconfig-domain-chardev-source.c \
111121 libvirt-gconfig-domain-chardev-source-pty.c \
122 libvirt-gconfig-domain-chardev-source-spiceport.c \
112123 libvirt-gconfig-domain-chardev-source-spicevmc.c \
113124 libvirt-gconfig-domain-clock.c \
114125 libvirt-gconfig-domain-console.c \
116127 libvirt-gconfig-domain-controller-usb.c \
117128 libvirt-gconfig-domain-cpu.c \
118129 libvirt-gconfig-domain-cpu-feature.c \
130 libvirt-gconfig-domain-cpu-model.c \
119131 libvirt-gconfig-domain-device.c \
120132 libvirt-gconfig-domain-disk.c \
133 libvirt-gconfig-domain-disk-driver.c \
121134 libvirt-gconfig-domain-filesys.c \
122135 libvirt-gconfig-domain-graphics.c \
123136 libvirt-gconfig-domain-graphics-desktop.c \
128141 libvirt-gconfig-domain-input.c \
129142 libvirt-gconfig-domain-interface.c \
130143 libvirt-gconfig-domain-interface-bridge.c \
144 libvirt-gconfig-domain-interface-filterref.c \
145 libvirt-gconfig-domain-interface-filterref-parameter.c \
131146 libvirt-gconfig-domain-interface-network.c \
132147 libvirt-gconfig-domain-interface-user.c \
133148 libvirt-gconfig-domain-memballoon.c \
145160 libvirt-gconfig-domain-snapshot-disk.c \
146161 libvirt-gconfig-domain-sound.c \
147162 libvirt-gconfig-domain-timer.c \
163 libvirt-gconfig-domain-timer-hpet.c \
148164 libvirt-gconfig-domain-timer-pit.c \
149165 libvirt-gconfig-domain-timer-rtc.c \
150166 libvirt-gconfig-domain-video.c \
163179 libvirt-gconfig-storage-vol-target.c \
164180 libvirt-gconfig-xml-doc.c
165181
182 GCONFIG_GENERATED_FILES = \
183 libvirt-gconfig-enum-types.c \
184 libvirt-gconfig-enum-types.h
185
166186 libvirt_gconfig_1_0_ladir = $(includedir)/libvirt-gconfig-1.0/libvirt-gconfig
167187 libvirt_gconfig_1_0_la_HEADERS = \
168188 $(GCONFIG_HEADER_FILES)
172192 $(libvirt_gconfig_1_0_la_HEADERS) \
173193 $(GCONFIG_SOURCE_FILES)
174194 nodist_libvirt_gconfig_1_0_la_SOURCES = \
175 $(builddir)/libvirt-gconfig-enum-types.c
195 $(GCONFIG_GENERATED_FILES)
176196 libvirt_gconfig_1_0_la_CFLAGS = \
177197 -DG_LOG_DOMAIN="\"Libvirt.GConfig\"" \
178198 -DDATADIR="\"$(datadir)\"" \
179199 -DLIBVIRT_GCONFIG_BUILD \
180200 $(COVERAGE_CFLAGS) \
181201 -I$(top_srcdir) \
202 -I$(top_builddir) \
182203 $(GOBJECT2_CFLAGS) \
183204 $(LIBXML2_CFLAGS) \
184205 $(WARN_CFLAGS)
194215 -Wl,--version-script=$(srcdir)/libvirt-gconfig.sym \
195216 -version-info $(LIBVIRT_GLIB_VERSION_INFO)
196217
197 BUILT_SOURCES = \
198 libvirt-gconfig-enum-types.c \
199 libvirt-gconfig-enum-types.h
218 BUILT_SOURCES = $(GCONFIG_GENERATED_FILES)
200219
201220 CLEANFILES = $(BUILT_SOURCES)
202221
208227 $(AM_V_GEN) ( $(GLIB_MKENUMS) --template $(srcdir)/libvirt-gconfig-enum-types.c.template $(GCONFIG_HEADER_FILES:%=$(srcdir)/%) ) | \
209228 sed -e "s/G_TYPE_VIR_CONFIG/GVIR_CONFIG_TYPE/" -e "s/g_vir/gvir/" > libvirt-gconfig-enum-types.c
210229
211 if WITH_GOBJECT_INTROSPECTION
212
213 LibvirtGConfig-1.0.gir: libvirt-gconfig-1.0.la $(G_IR_SCANNER) Makefile.am
214 $(AM_V_GEN)$(G_IR_SCANNER) \
215 --quiet \
216 --warn-all \
217 --namespace LibvirtGConfig \
218 --nsversion 1.0 \
219 --include GObject-2.0 \
220 --identifier-prefix=GVirConfig \
221 --symbol-prefix=gvir_config \
222 --library=$(builddir)/libvirt-gconfig-1.0.la \
223 --output $@ \
224 -I$(top_builddir) \
225 -I$(top_srcdir) \
226 --verbose \
227 --c-include="libvirt-gconfig/libvirt-gconfig.h" \
228 --pkg=libxml-2.0 \
229 --pkg-export=libvirt-gconfig-1.0 \
230 $(srcdir)/libvirt-gconfig.h \
231 $(GCONFIG_SOURCE_FILES:%=$(srcdir)/%) \
232 $(GCONFIG_HEADER_FILES:%=$(srcdir)/%) \
233 $(builddir)/libvirt-gconfig-enum-types.c \
234 $(builddir)/libvirt-gconfig-enum-types.h
235
230 # .libs/libvirt-gconfig.so is built by libtool as a side-effect of the Makefile
231 # rule for libosvirt-gconfig.la. However, checking symbols relies on Linux ELF layout
232 if WITH_LINUX
233 check-symfile: libvirt-gconfig.sym libvirt-gconfig-1.0.la
234 $(AM_V_GEN)$(PERL) $(top_srcdir)/build-aux/check-symfile.pl $(srcdir)/libvirt-gconfig.sym \
235 .libs/libvirt-gconfig-1.0.so
236 else ! WITH_LINUX
237 check-symfile:
238 endif ! WITH_LINUX
239 check-symsorting:
240 $(AM_V_GEN)$(PERL) $(top_srcdir)/build-aux/check-symsorting.pl \
241 $(srcdir)/libvirt-gconfig.sym
242 check-local: check-symfile check-symsorting
243
244 -include $(INTROSPECTION_MAKEFILE)
245 INTROSPECTION_GIRS =
246
247 if HAVE_INTROSPECTION
248 LibvirtGConfig-1.0.gir: libvirt-gconfig-1.0.la
249 LibvirtGConfig_1_0_gir_INCLUDES = GObject-2.0
250 LibvirtGConfig_1_0_gir_PACKAGES = gobject-2.0
251 LibvirtGConfig_1_0_gir_EXPORT_PACKAGES = libvirt-gconfig-1.0
252 LibvirtGConfig_1_0_gir_LIBS = libvirt-gconfig-1.0.la
253 LibvirtGConfig_1_0_gir_FILES = \
254 $(GCONFIG_SOURCE_FILES) \
255 $(GCONFIG_HEADER_FILES) \
256 $(GCONFIG_GENERATED_FILES) \
257 $(NULL)
258 LibvirtGConfig_1_0_gir_CFLAGS = $(libvirt_gconfig_1_0_la_CFLAGS)
259 LibvirtGConfig_1_0_gir_SCANNERFLAGS = \
260 --identifier-prefix=GVirConfig \
261 --symbol-prefix=gvir_config \
262 --c-include="libvirt-gconfig/libvirt-gconfig.h" \
263 $(NULL)
264 INTROSPECTION_GIRS += LibvirtGConfig-1.0.gir
236265
237266 girdir = $(datadir)/gir-1.0
238267 gir_DATA = LibvirtGConfig-1.0.gir
239268
240 typelibsdir = $(libdir)/girepository-1.0
241 typelibs_DATA = LibvirtGConfig-1.0.typelib
242
243 %.typelib: %.gir
244 $(AM_V_GEN)$(G_IR_COMPILER) \
245 --includedir=$(builddir) \
246 --includedir=$(girdir) \
247 -o $@ $<
248
249 CLEANFILES += $(gir_DATA) $(typelibs_DATA)
250
251 endif # WITH_GOBJECT_INTROSPECTION
269 typelibdir = $(libdir)/girepository-1.0
270 typelib_DATA = LibvirtGConfig-1.0.typelib
271
272 CLEANFILES += $(gir_DATA) $(typelib_DATA)
273 endif # HAVE_INTROSPECTION
0 # Makefile.in generated by automake 1.13.2 from Makefile.am.
0 # Makefile.in generated by automake 1.13.4 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
7979 POST_UNINSTALL = :
8080 build_triplet = @build@
8181 host_triplet = @host@
82 @WITH_GOBJECT_INTROSPECTION_TRUE@am__append_1 = $(gir_DATA) $(typelibs_DATA)
82 @HAVE_INTROSPECTION_TRUE@am__append_1 = LibvirtGConfig-1.0.gir
83 @HAVE_INTROSPECTION_TRUE@am__append_2 = $(gir_DATA) $(typelib_DATA)
8384 subdir = libvirt-gconfig
8485 DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
8586 $(top_srcdir)/build-aux/depcomp \
8687 $(libvirt_gconfig_1_0_la_HEADERS) $(noinst_HEADERS)
8788 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
88 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
89 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
90 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
91 $(top_srcdir)/m4/lt~obsolete.m4 \
89 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
90 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
91 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
92 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
9293 $(top_srcdir)/m4/manywarnings.m4 \
9394 $(top_srcdir)/m4/virt-compile-warnings.m4 \
9495 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
127128 $(am__cd) "$$dir" && rm -f $$files; }; \
128129 }
129130 am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(girdir)" \
130 "$(DESTDIR)$(typelibsdir)" \
131 "$(DESTDIR)$(typelibdir)" \
131132 "$(DESTDIR)$(libvirt_gconfig_1_0_ladir)" \
132133 "$(DESTDIR)$(libvirt_gconfig_1_0_ladir)"
133134 LTLIBRARIES = $(lib_LTLIBRARIES)
140141 libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host.lo \
141142 libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu.lo \
142143 libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-feature.lo \
144 libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-model.lo \
143145 libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-topology.lo \
144146 libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest.lo \
145147 libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-arch.lo \
146148 libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-domain.lo \
147149 libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-feature.lo \
150 libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host-secmodel.lo \
148151 libvirt_gconfig_1_0_la-libvirt-gconfig-domain.lo \
149152 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address.lo \
150153 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address-pci.lo \
153156 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev.lo \
154157 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source.lo \
155158 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-pty.lo \
159 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spiceport.lo \
156160 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spicevmc.lo \
157161 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-clock.lo \
158162 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-console.lo \
160164 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-controller-usb.lo \
161165 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu.lo \
162166 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-feature.lo \
167 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-model.lo \
163168 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-device.lo \
164169 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk.lo \
170 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk-driver.lo \
165171 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-filesys.lo \
166172 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics.lo \
167173 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-desktop.lo \
172178 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-input.lo \
173179 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface.lo \
174180 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-bridge.lo \
181 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref.lo \
182 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref-parameter.lo \
175183 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-network.lo \
176184 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-user.lo \
177185 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-memballoon.lo \
189197 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-snapshot-disk.lo \
190198 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-sound.lo \
191199 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer.lo \
200 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-hpet.lo \
192201 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-pit.lo \
193202 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-rtc.lo \
194203 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-video.lo \
207216 libvirt_gconfig_1_0_la-libvirt-gconfig-storage-vol-target.lo \
208217 libvirt_gconfig_1_0_la-libvirt-gconfig-xml-doc.lo
209218 am_libvirt_gconfig_1_0_la_OBJECTS = $(am__objects_2) $(am__objects_3)
210 nodist_libvirt_gconfig_1_0_la_OBJECTS = \
211 libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.lo
219 am__objects_4 = libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.lo
220 nodist_libvirt_gconfig_1_0_la_OBJECTS = $(am__objects_4)
212221 libvirt_gconfig_1_0_la_OBJECTS = $(am_libvirt_gconfig_1_0_la_OBJECTS) \
213222 $(nodist_libvirt_gconfig_1_0_la_OBJECTS)
214223 AM_V_lt = $(am__v_lt_@AM_V@)
269278 n|no|NO) false;; \
270279 *) (install-info --version) >/dev/null 2>&1;; \
271280 esac
272 DATA = $(gir_DATA) $(typelibs_DATA)
281 DATA = $(gir_DATA) $(typelib_DATA)
273282 HEADERS = $(libvirt_gconfig_1_0_la_HEADERS) \
274283 $(nodist_libvirt_gconfig_1_0_la_HEADERS) $(noinst_HEADERS)
275284 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
365374 GIO2_LIBS = @GIO2_LIBS@
366375 GLIB2_CFLAGS = @GLIB2_CFLAGS@
367376 GLIB2_LIBS = @GLIB2_LIBS@
377 GLIB2_REQUIRED = @GLIB2_REQUIRED@
368378 GLIB_MKENUMS = @GLIB_MKENUMS@
369379 GMSGFMT = @GMSGFMT@
370380 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
371381 GOBJECT2_LIBS = @GOBJECT2_LIBS@
372 GOBJECT_INTROSPECTION_CFLAGS = @GOBJECT_INTROSPECTION_CFLAGS@
373 GOBJECT_INTROSPECTION_LIBS = @GOBJECT_INTROSPECTION_LIBS@
374382 GREP = @GREP@
375383 GTHREAD2_CFLAGS = @GTHREAD2_CFLAGS@
376384 GTHREAD2_LIBS = @GTHREAD2_LIBS@
377385 GTKDOC_CHECK = @GTKDOC_CHECK@
386 GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
378387 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
379388 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
380389 GTKDOC_MKPDF = @GTKDOC_MKPDF@
381390 GTKDOC_REBASE = @GTKDOC_REBASE@
382 G_IR_COMPILER = @G_IR_COMPILER@
383 G_IR_SCANNER = @G_IR_SCANNER@
384391 HTML_DIR = @HTML_DIR@
385392 INSTALL = @INSTALL@
386393 INSTALL_DATA = @INSTALL_DATA@
395402 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
396403 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
397404 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
405 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
406 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
407 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
408 INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
409 INTROSPECTION_LIBS = @INTROSPECTION_LIBS@
410 INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@
411 INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
412 INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
398413 LD = @LD@
399414 LDFLAGS = @LDFLAGS@
400415 LIBOBJS = @LIBOBJS@
485500 includedir = @includedir@
486501 infodir = @infodir@
487502 install_sh = @install_sh@
503 installed_test_metadir = @installed_test_metadir@
504 installed_testdir = @installed_testdir@
488505 intltool__v_merge_options_ = @intltool__v_merge_options_@
489506 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
490507 libdir = @libdir@
522539 libvirt-gconfig-capabilities-host.h \
523540 libvirt-gconfig-capabilities-cpu.h \
524541 libvirt-gconfig-capabilities-cpu-feature.h \
542 libvirt-gconfig-capabilities-cpu-model.h \
525543 libvirt-gconfig-capabilities-cpu-topology.h \
526544 libvirt-gconfig-capabilities-guest.h \
527545 libvirt-gconfig-capabilities-guest-arch.h \
528546 libvirt-gconfig-capabilities-guest-domain.h \
529547 libvirt-gconfig-capabilities-guest-feature.h \
548 libvirt-gconfig-capabilities-host-secmodel.h \
530549 libvirt-gconfig-domain.h \
531550 libvirt-gconfig-domain-address.h \
532551 libvirt-gconfig-domain-address-pci.h \
535554 libvirt-gconfig-domain-chardev.h \
536555 libvirt-gconfig-domain-chardev-source.h \
537556 libvirt-gconfig-domain-chardev-source-pty.h \
557 libvirt-gconfig-domain-chardev-source-spiceport.h \
538558 libvirt-gconfig-domain-chardev-source-spicevmc.h \
539559 libvirt-gconfig-domain-clock.h \
540560 libvirt-gconfig-domain-console.h \
542562 libvirt-gconfig-domain-controller-usb.h \
543563 libvirt-gconfig-domain-cpu.h \
544564 libvirt-gconfig-domain-cpu-feature.h \
565 libvirt-gconfig-domain-cpu-model.h \
545566 libvirt-gconfig-domain-device.h \
546567 libvirt-gconfig-domain-disk.h \
568 libvirt-gconfig-domain-disk-driver.h \
547569 libvirt-gconfig-domain-filesys.h \
548570 libvirt-gconfig-domain-graphics.h \
549571 libvirt-gconfig-domain-graphics-desktop.h \
554576 libvirt-gconfig-domain-input.h \
555577 libvirt-gconfig-domain-interface.h \
556578 libvirt-gconfig-domain-interface-bridge.h \
579 libvirt-gconfig-domain-interface-filterref.h \
580 libvirt-gconfig-domain-interface-filterref-parameter.h \
557581 libvirt-gconfig-domain-interface-network.h \
558582 libvirt-gconfig-domain-interface-user.h \
559583 libvirt-gconfig-domain-memballoon.h \
571595 libvirt-gconfig-domain-snapshot-disk.h \
572596 libvirt-gconfig-domain-sound.h \
573597 libvirt-gconfig-domain-timer.h \
598 libvirt-gconfig-domain-timer-hpet.h \
574599 libvirt-gconfig-domain-timer-pit.h \
575600 libvirt-gconfig-domain-timer-rtc.h \
576601 libvirt-gconfig-domain-video.h \
606631 libvirt-gconfig-capabilities-host.c \
607632 libvirt-gconfig-capabilities-cpu.c \
608633 libvirt-gconfig-capabilities-cpu-feature.c \
634 libvirt-gconfig-capabilities-cpu-model.c \
609635 libvirt-gconfig-capabilities-cpu-topology.c \
610636 libvirt-gconfig-capabilities-guest.c \
611637 libvirt-gconfig-capabilities-guest-arch.c \
612638 libvirt-gconfig-capabilities-guest-domain.c \
613639 libvirt-gconfig-capabilities-guest-feature.c \
640 libvirt-gconfig-capabilities-host-secmodel.c \
614641 libvirt-gconfig-domain.c \
615642 libvirt-gconfig-domain-address.c \
616643 libvirt-gconfig-domain-address-pci.c \
619646 libvirt-gconfig-domain-chardev.c \
620647 libvirt-gconfig-domain-chardev-source.c \
621648 libvirt-gconfig-domain-chardev-source-pty.c \
649 libvirt-gconfig-domain-chardev-source-spiceport.c \
622650 libvirt-gconfig-domain-chardev-source-spicevmc.c \
623651 libvirt-gconfig-domain-clock.c \
624652 libvirt-gconfig-domain-console.c \
626654 libvirt-gconfig-domain-controller-usb.c \
627655 libvirt-gconfig-domain-cpu.c \
628656 libvirt-gconfig-domain-cpu-feature.c \
657 libvirt-gconfig-domain-cpu-model.c \
629658 libvirt-gconfig-domain-device.c \
630659 libvirt-gconfig-domain-disk.c \
660 libvirt-gconfig-domain-disk-driver.c \
631661 libvirt-gconfig-domain-filesys.c \
632662 libvirt-gconfig-domain-graphics.c \
633663 libvirt-gconfig-domain-graphics-desktop.c \
638668 libvirt-gconfig-domain-input.c \
639669 libvirt-gconfig-domain-interface.c \
640670 libvirt-gconfig-domain-interface-bridge.c \
671 libvirt-gconfig-domain-interface-filterref.c \
672 libvirt-gconfig-domain-interface-filterref-parameter.c \
641673 libvirt-gconfig-domain-interface-network.c \
642674 libvirt-gconfig-domain-interface-user.c \
643675 libvirt-gconfig-domain-memballoon.c \
655687 libvirt-gconfig-domain-snapshot-disk.c \
656688 libvirt-gconfig-domain-sound.c \
657689 libvirt-gconfig-domain-timer.c \
690 libvirt-gconfig-domain-timer-hpet.c \
658691 libvirt-gconfig-domain-timer-pit.c \
659692 libvirt-gconfig-domain-timer-rtc.c \
660693 libvirt-gconfig-domain-video.c \
673706 libvirt-gconfig-storage-vol-target.c \
674707 libvirt-gconfig-xml-doc.c
675708
709 GCONFIG_GENERATED_FILES = \
710 libvirt-gconfig-enum-types.c \
711 libvirt-gconfig-enum-types.h
712
676713 libvirt_gconfig_1_0_ladir = $(includedir)/libvirt-gconfig-1.0/libvirt-gconfig
677714 libvirt_gconfig_1_0_la_HEADERS = \
678715 $(GCONFIG_HEADER_FILES)
685722 $(GCONFIG_SOURCE_FILES)
686723
687724 nodist_libvirt_gconfig_1_0_la_SOURCES = \
688 $(builddir)/libvirt-gconfig-enum-types.c
725 $(GCONFIG_GENERATED_FILES)
689726
690727 libvirt_gconfig_1_0_la_CFLAGS = \
691728 -DG_LOG_DOMAIN="\"Libvirt.GConfig\"" \
693730 -DLIBVIRT_GCONFIG_BUILD \
694731 $(COVERAGE_CFLAGS) \
695732 -I$(top_srcdir) \
733 -I$(top_builddir) \
696734 $(GOBJECT2_CFLAGS) \
697735 $(LIBXML2_CFLAGS) \
698736 $(WARN_CFLAGS)
711749 -Wl,--version-script=$(srcdir)/libvirt-gconfig.sym \
712750 -version-info $(LIBVIRT_GLIB_VERSION_INFO)
713751
714 BUILT_SOURCES = \
715 libvirt-gconfig-enum-types.c \
716 libvirt-gconfig-enum-types.h
717
718 CLEANFILES = $(BUILT_SOURCES) $(am__append_1)
719 @WITH_GOBJECT_INTROSPECTION_TRUE@girdir = $(datadir)/gir-1.0
720 @WITH_GOBJECT_INTROSPECTION_TRUE@gir_DATA = LibvirtGConfig-1.0.gir
721 @WITH_GOBJECT_INTROSPECTION_TRUE@typelibsdir = $(libdir)/girepository-1.0
722 @WITH_GOBJECT_INTROSPECTION_TRUE@typelibs_DATA = LibvirtGConfig-1.0.typelib
752 BUILT_SOURCES = $(GCONFIG_GENERATED_FILES)
753 CLEANFILES = $(BUILT_SOURCES) $(am__append_2)
754 INTROSPECTION_GIRS = $(am__append_1)
755 @HAVE_INTROSPECTION_TRUE@LibvirtGConfig_1_0_gir_INCLUDES = GObject-2.0
756 @HAVE_INTROSPECTION_TRUE@LibvirtGConfig_1_0_gir_PACKAGES = gobject-2.0
757 @HAVE_INTROSPECTION_TRUE@LibvirtGConfig_1_0_gir_EXPORT_PACKAGES = libvirt-gconfig-1.0
758 @HAVE_INTROSPECTION_TRUE@LibvirtGConfig_1_0_gir_LIBS = libvirt-gconfig-1.0.la
759 @HAVE_INTROSPECTION_TRUE@LibvirtGConfig_1_0_gir_FILES = \
760 @HAVE_INTROSPECTION_TRUE@ $(GCONFIG_SOURCE_FILES) \
761 @HAVE_INTROSPECTION_TRUE@ $(GCONFIG_HEADER_FILES) \
762 @HAVE_INTROSPECTION_TRUE@ $(GCONFIG_GENERATED_FILES) \
763 @HAVE_INTROSPECTION_TRUE@ $(NULL)
764
765 @HAVE_INTROSPECTION_TRUE@LibvirtGConfig_1_0_gir_CFLAGS = $(libvirt_gconfig_1_0_la_CFLAGS)
766 @HAVE_INTROSPECTION_TRUE@LibvirtGConfig_1_0_gir_SCANNERFLAGS = \
767 @HAVE_INTROSPECTION_TRUE@ --identifier-prefix=GVirConfig \
768 @HAVE_INTROSPECTION_TRUE@ --symbol-prefix=gvir_config \
769 @HAVE_INTROSPECTION_TRUE@ --c-include="libvirt-gconfig/libvirt-gconfig.h" \
770 @HAVE_INTROSPECTION_TRUE@ $(NULL)
771
772 @HAVE_INTROSPECTION_TRUE@girdir = $(datadir)/gir-1.0
773 @HAVE_INTROSPECTION_TRUE@gir_DATA = LibvirtGConfig-1.0.gir
774 @HAVE_INTROSPECTION_TRUE@typelibdir = $(libdir)/girepository-1.0
775 @HAVE_INTROSPECTION_TRUE@typelib_DATA = LibvirtGConfig-1.0.typelib
723776 all: $(BUILT_SOURCES)
724777 $(MAKE) $(AM_MAKEFLAGS) all-recursive
725778
801854 -rm -f *.tab.c
802855
803856 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-feature.Plo@am__quote@
857 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-model.Plo@am__quote@
804858 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-topology.Plo@am__quote@
805859 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu.Plo@am__quote@
806860 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-arch.Plo@am__quote@
807861 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-domain.Plo@am__quote@
808862 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-feature.Plo@am__quote@
809863 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest.Plo@am__quote@
864 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host-secmodel.Plo@am__quote@
810865 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host.Plo@am__quote@
811866 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities.Plo@am__quote@
812867 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address-pci.Plo@am__quote@
814869 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-address.Plo@am__quote@
815870 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-channel.Plo@am__quote@
816871 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-pty.Plo@am__quote@
872 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spiceport.Plo@am__quote@
817873 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spicevmc.Plo@am__quote@
818874 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source.Plo@am__quote@
819875 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev.Plo@am__quote@
822878 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-controller-usb.Plo@am__quote@
823879 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-controller.Plo@am__quote@
824880 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-feature.Plo@am__quote@
881 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-model.Plo@am__quote@
825882 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu.Plo@am__quote@
826883 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-device.Plo@am__quote@
884 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk-driver.Plo@am__quote@
827885 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk.Plo@am__quote@
828886 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-filesys.Plo@am__quote@
829887 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics-desktop.Plo@am__quote@
834892 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-graphics.Plo@am__quote@
835893 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-input.Plo@am__quote@
836894 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-bridge.Plo@am__quote@
895 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref-parameter.Plo@am__quote@
896 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref.Plo@am__quote@
837897 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-network.Plo@am__quote@
838898 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-user.Plo@am__quote@
839899 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface.Plo@am__quote@
851911 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-snapshot-disk.Plo@am__quote@
852912 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-snapshot.Plo@am__quote@
853913 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-sound.Plo@am__quote@
914 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-hpet.Plo@am__quote@
854915 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-pit.Plo@am__quote@
855916 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-rtc.Plo@am__quote@
856917 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer.Plo@am__quote@
937998 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
938999 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-feature.lo `test -f 'libvirt-gconfig-capabilities-cpu-feature.c' || echo '$(srcdir)/'`libvirt-gconfig-capabilities-cpu-feature.c
9391000
1001 libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-model.lo: libvirt-gconfig-capabilities-cpu-model.c
1002 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-model.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-model.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-model.lo `test -f 'libvirt-gconfig-capabilities-cpu-model.c' || echo '$(srcdir)/'`libvirt-gconfig-capabilities-cpu-model.c
1003 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-model.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-model.Plo
1004 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libvirt-gconfig-capabilities-cpu-model.c' object='libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-model.lo' libtool=yes @AMDEPBACKSLASH@
1005 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1006 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-model.lo `test -f 'libvirt-gconfig-capabilities-cpu-model.c' || echo '$(srcdir)/'`libvirt-gconfig-capabilities-cpu-model.c
1007
9401008 libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-topology.lo: libvirt-gconfig-capabilities-cpu-topology.c
9411009 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-topology.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-topology.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-topology.lo `test -f 'libvirt-gconfig-capabilities-cpu-topology.c' || echo '$(srcdir)/'`libvirt-gconfig-capabilities-cpu-topology.c
9421010 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-topology.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-cpu-topology.Plo
9721040 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
9731041 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-guest-feature.lo `test -f 'libvirt-gconfig-capabilities-guest-feature.c' || echo '$(srcdir)/'`libvirt-gconfig-capabilities-guest-feature.c
9741042
1043 libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host-secmodel.lo: libvirt-gconfig-capabilities-host-secmodel.c
1044 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host-secmodel.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host-secmodel.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host-secmodel.lo `test -f 'libvirt-gconfig-capabilities-host-secmodel.c' || echo '$(srcdir)/'`libvirt-gconfig-capabilities-host-secmodel.c
1045 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host-secmodel.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host-secmodel.Plo
1046 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libvirt-gconfig-capabilities-host-secmodel.c' object='libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host-secmodel.lo' libtool=yes @AMDEPBACKSLASH@
1047 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1048 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-capabilities-host-secmodel.lo `test -f 'libvirt-gconfig-capabilities-host-secmodel.c' || echo '$(srcdir)/'`libvirt-gconfig-capabilities-host-secmodel.c
1049
9751050 libvirt_gconfig_1_0_la-libvirt-gconfig-domain.lo: libvirt-gconfig-domain.c
9761051 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-domain.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain.lo `test -f 'libvirt-gconfig-domain.c' || echo '$(srcdir)/'`libvirt-gconfig-domain.c
9771052 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain.Plo
10281103 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10291104 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-pty.lo `test -f 'libvirt-gconfig-domain-chardev-source-pty.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-chardev-source-pty.c
10301105
1106 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spiceport.lo: libvirt-gconfig-domain-chardev-source-spiceport.c
1107 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spiceport.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spiceport.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spiceport.lo `test -f 'libvirt-gconfig-domain-chardev-source-spiceport.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-chardev-source-spiceport.c
1108 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spiceport.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spiceport.Plo
1109 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libvirt-gconfig-domain-chardev-source-spiceport.c' object='libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spiceport.lo' libtool=yes @AMDEPBACKSLASH@
1110 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1111 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spiceport.lo `test -f 'libvirt-gconfig-domain-chardev-source-spiceport.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-chardev-source-spiceport.c
1112
10311113 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spicevmc.lo: libvirt-gconfig-domain-chardev-source-spicevmc.c
10321114 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spicevmc.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spicevmc.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spicevmc.lo `test -f 'libvirt-gconfig-domain-chardev-source-spicevmc.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-chardev-source-spicevmc.c
10331115 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spicevmc.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-chardev-source-spicevmc.Plo
10771159 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10781160 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-feature.lo `test -f 'libvirt-gconfig-domain-cpu-feature.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-cpu-feature.c
10791161
1162 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-model.lo: libvirt-gconfig-domain-cpu-model.c
1163 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-model.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-model.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-model.lo `test -f 'libvirt-gconfig-domain-cpu-model.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-cpu-model.c
1164 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-model.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-model.Plo
1165 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libvirt-gconfig-domain-cpu-model.c' object='libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-model.lo' libtool=yes @AMDEPBACKSLASH@
1166 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1167 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-cpu-model.lo `test -f 'libvirt-gconfig-domain-cpu-model.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-cpu-model.c
1168
10801169 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-device.lo: libvirt-gconfig-domain-device.c
10811170 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-domain-device.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-device.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-device.lo `test -f 'libvirt-gconfig-domain-device.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-device.c
10821171 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-device.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-device.Plo
10911180 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
10921181 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk.lo `test -f 'libvirt-gconfig-domain-disk.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-disk.c
10931182
1183 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk-driver.lo: libvirt-gconfig-domain-disk-driver.c
1184 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk-driver.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk-driver.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk-driver.lo `test -f 'libvirt-gconfig-domain-disk-driver.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-disk-driver.c
1185 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk-driver.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk-driver.Plo
1186 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libvirt-gconfig-domain-disk-driver.c' object='libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk-driver.lo' libtool=yes @AMDEPBACKSLASH@
1187 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1188 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-disk-driver.lo `test -f 'libvirt-gconfig-domain-disk-driver.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-disk-driver.c
1189
10941190 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-filesys.lo: libvirt-gconfig-domain-filesys.c
10951191 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-domain-filesys.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-filesys.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-filesys.lo `test -f 'libvirt-gconfig-domain-filesys.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-filesys.c
10961192 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-filesys.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-filesys.Plo
11611257 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
11621258 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-bridge.lo `test -f 'libvirt-gconfig-domain-interface-bridge.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-interface-bridge.c
11631259
1260 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref.lo: libvirt-gconfig-domain-interface-filterref.c
1261 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref.lo `test -f 'libvirt-gconfig-domain-interface-filterref.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-interface-filterref.c
1262 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref.Plo
1263 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libvirt-gconfig-domain-interface-filterref.c' object='libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref.lo' libtool=yes @AMDEPBACKSLASH@
1264 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1265 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref.lo `test -f 'libvirt-gconfig-domain-interface-filterref.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-interface-filterref.c
1266
1267 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref-parameter.lo: libvirt-gconfig-domain-interface-filterref-parameter.c
1268 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref-parameter.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref-parameter.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref-parameter.lo `test -f 'libvirt-gconfig-domain-interface-filterref-parameter.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-interface-filterref-parameter.c
1269 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref-parameter.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref-parameter.Plo
1270 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libvirt-gconfig-domain-interface-filterref-parameter.c' object='libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref-parameter.lo' libtool=yes @AMDEPBACKSLASH@
1271 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1272 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-filterref-parameter.lo `test -f 'libvirt-gconfig-domain-interface-filterref-parameter.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-interface-filterref-parameter.c
1273
11641274 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-network.lo: libvirt-gconfig-domain-interface-network.c
11651275 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-network.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-network.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-network.lo `test -f 'libvirt-gconfig-domain-interface-network.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-interface-network.c
11661276 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-network.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-interface-network.Plo
12801390 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
12811391 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer.lo `test -f 'libvirt-gconfig-domain-timer.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-timer.c
12821392
1393 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-hpet.lo: libvirt-gconfig-domain-timer-hpet.c
1394 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-hpet.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-hpet.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-hpet.lo `test -f 'libvirt-gconfig-domain-timer-hpet.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-timer-hpet.c
1395 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-hpet.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-hpet.Plo
1396 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libvirt-gconfig-domain-timer-hpet.c' object='libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-hpet.lo' libtool=yes @AMDEPBACKSLASH@
1397 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1398 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-hpet.lo `test -f 'libvirt-gconfig-domain-timer-hpet.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-timer-hpet.c
1399
12831400 libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-pit.lo: libvirt-gconfig-domain-timer-pit.c
12841401 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-pit.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-pit.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-pit.lo `test -f 'libvirt-gconfig-domain-timer-pit.c' || echo '$(srcdir)/'`libvirt-gconfig-domain-timer-pit.c
12851402 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-pit.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-domain-timer-pit.Plo
13991516 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
14001517 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-xml-doc.lo `test -f 'libvirt-gconfig-xml-doc.c' || echo '$(srcdir)/'`libvirt-gconfig-xml-doc.c
14011518
1402 libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.lo: $(builddir)/libvirt-gconfig-enum-types.c
1403 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.lo `test -f '$(builddir)/libvirt-gconfig-enum-types.c' || echo '$(srcdir)/'`$(builddir)/libvirt-gconfig-enum-types.c
1519 libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.lo: libvirt-gconfig-enum-types.c
1520 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -MT libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.lo -MD -MP -MF $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.Tpo -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.lo `test -f 'libvirt-gconfig-enum-types.c' || echo '$(srcdir)/'`libvirt-gconfig-enum-types.c
14041521 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.Tpo $(DEPDIR)/libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.Plo
1405 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$(builddir)/libvirt-gconfig-enum-types.c' object='libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.lo' libtool=yes @AMDEPBACKSLASH@
1406 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1407 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.lo `test -f '$(builddir)/libvirt-gconfig-enum-types.c' || echo '$(srcdir)/'`$(builddir)/libvirt-gconfig-enum-types.c
1522 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='libvirt-gconfig-enum-types.c' object='libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.lo' libtool=yes @AMDEPBACKSLASH@
1523 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1524 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_gconfig_1_0_la_CFLAGS) $(CFLAGS) -c -o libvirt_gconfig_1_0_la-libvirt-gconfig-enum-types.lo `test -f 'libvirt-gconfig-enum-types.c' || echo '$(srcdir)/'`libvirt-gconfig-enum-types.c
14081525
14091526 mostlyclean-libtool:
14101527 -rm -f *.lo
14321549 @list='$(gir_DATA)'; test -n "$(girdir)" || list=; \
14331550 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
14341551 dir='$(DESTDIR)$(girdir)'; $(am__uninstall_files_from_dir)
1435 install-typelibsDATA: $(typelibs_DATA)
1552 install-typelibDATA: $(typelib_DATA)
14361553 @$(NORMAL_INSTALL)
1437 @list='$(typelibs_DATA)'; test -n "$(typelibsdir)" || list=; \
1554 @list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \
14381555 if test -n "$$list"; then \
1439 echo " $(MKDIR_P) '$(DESTDIR)$(typelibsdir)'"; \
1440 $(MKDIR_P) "$(DESTDIR)$(typelibsdir)" || exit 1; \
1556 echo " $(MKDIR_P) '$(DESTDIR)$(typelibdir)'"; \
1557 $(MKDIR_P) "$(DESTDIR)$(typelibdir)" || exit 1; \
14411558 fi; \
14421559 for p in $$list; do \
14431560 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
14441561 echo "$$d$$p"; \
14451562 done | $(am__base_list) | \
14461563 while read files; do \
1447 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(typelibsdir)'"; \
1448 $(INSTALL_DATA) $$files "$(DESTDIR)$(typelibsdir)" || exit $$?; \
1564 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(typelibdir)'"; \
1565 $(INSTALL_DATA) $$files "$(DESTDIR)$(typelibdir)" || exit $$?; \
14491566 done
14501567
1451 uninstall-typelibsDATA:
1568 uninstall-typelibDATA:
14521569 @$(NORMAL_UNINSTALL)
1453 @list='$(typelibs_DATA)'; test -n "$(typelibsdir)" || list=; \
1570 @list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \
14541571 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1455 dir='$(DESTDIR)$(typelibsdir)'; $(am__uninstall_files_from_dir)
1572 dir='$(DESTDIR)$(typelibdir)'; $(am__uninstall_files_from_dir)
14561573 install-libvirt_gconfig_1_0_laHEADERS: $(libvirt_gconfig_1_0_la_HEADERS)
14571574 @$(NORMAL_INSTALL)
14581575 @list='$(libvirt_gconfig_1_0_la_HEADERS)'; test -n "$(libvirt_gconfig_1_0_ladir)" || list=; \
16511768 fi; \
16521769 done
16531770 check-am: all-am
1771 $(MAKE) $(AM_MAKEFLAGS) check-local
16541772 check: $(BUILT_SOURCES)
16551773 $(MAKE) $(AM_MAKEFLAGS) check-recursive
16561774 all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS)
16571775 installdirs: installdirs-recursive
16581776 installdirs-am:
1659 for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(girdir)" "$(DESTDIR)$(typelibsdir)" "$(DESTDIR)$(libvirt_gconfig_1_0_ladir)" "$(DESTDIR)$(libvirt_gconfig_1_0_ladir)"; do \
1777 for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(girdir)" "$(DESTDIR)$(typelibdir)" "$(DESTDIR)$(libvirt_gconfig_1_0_ladir)" "$(DESTDIR)$(libvirt_gconfig_1_0_ladir)"; do \
16601778 test -z "$$dir" || $(MKDIR_P) "$$dir"; \
16611779 done
16621780 install: $(BUILT_SOURCES)
17171835
17181836 install-data-am: install-girDATA install-libvirt_gconfig_1_0_laHEADERS \
17191837 install-nodist_libvirt_gconfig_1_0_laHEADERS \
1720 install-typelibsDATA
1838 install-typelibDATA
17211839
17221840 install-dvi: install-dvi-recursive
17231841
17661884 uninstall-am: uninstall-girDATA uninstall-libLTLIBRARIES \
17671885 uninstall-libvirt_gconfig_1_0_laHEADERS \
17681886 uninstall-nodist_libvirt_gconfig_1_0_laHEADERS \
1769 uninstall-typelibsDATA
1770
1771 .MAKE: $(am__recursive_targets) all check install install-am \
1887 uninstall-typelibDATA
1888
1889 .MAKE: $(am__recursive_targets) all check check-am install install-am \
17721890 install-strip
17731891
17741892 .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
1775 check-am clean clean-generic clean-libLTLIBRARIES \
1893 check-am check-local clean clean-generic clean-libLTLIBRARIES \
17761894 clean-libtool cscopelist-am ctags ctags-am distclean \
17771895 distclean-compile distclean-generic distclean-libtool \
17781896 distclean-tags distdir dvi dvi-am html html-am info info-am \
17821900 install-libLTLIBRARIES install-libvirt_gconfig_1_0_laHEADERS \
17831901 install-man install-nodist_libvirt_gconfig_1_0_laHEADERS \
17841902 install-pdf install-pdf-am install-ps install-ps-am \
1785 install-strip install-typelibsDATA installcheck \
1786 installcheck-am installdirs installdirs-am maintainer-clean \
1903 install-strip install-typelibDATA installcheck installcheck-am \
1904 installdirs installdirs-am maintainer-clean \
17871905 maintainer-clean-generic mostlyclean mostlyclean-compile \
17881906 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
17891907 tags tags-am uninstall uninstall-am uninstall-girDATA \
17901908 uninstall-libLTLIBRARIES \
17911909 uninstall-libvirt_gconfig_1_0_laHEADERS \
17921910 uninstall-nodist_libvirt_gconfig_1_0_laHEADERS \
1793 uninstall-typelibsDATA
1911 uninstall-typelibDATA
17941912
17951913
17961914 libvirt-gconfig-enum-types.h: $(GCONFIG_HEADER_FILES) libvirt-gconfig-enum-types.h.template
18011919 $(AM_V_GEN) ( $(GLIB_MKENUMS) --template $(srcdir)/libvirt-gconfig-enum-types.c.template $(GCONFIG_HEADER_FILES:%=$(srcdir)/%) ) | \
18021920 sed -e "s/G_TYPE_VIR_CONFIG/GVIR_CONFIG_TYPE/" -e "s/g_vir/gvir/" > libvirt-gconfig-enum-types.c
18031921
1804 @WITH_GOBJECT_INTROSPECTION_TRUE@LibvirtGConfig-1.0.gir: libvirt-gconfig-1.0.la $(G_IR_SCANNER) Makefile.am
1805 @WITH_GOBJECT_INTROSPECTION_TRUE@ $(AM_V_GEN)$(G_IR_SCANNER) \
1806 @WITH_GOBJECT_INTROSPECTION_TRUE@ --quiet \
1807 @WITH_GOBJECT_INTROSPECTION_TRUE@ --warn-all \
1808 @WITH_GOBJECT_INTROSPECTION_TRUE@ --namespace LibvirtGConfig \
1809 @WITH_GOBJECT_INTROSPECTION_TRUE@ --nsversion 1.0 \
1810 @WITH_GOBJECT_INTROSPECTION_TRUE@ --include GObject-2.0 \
1811 @WITH_GOBJECT_INTROSPECTION_TRUE@ --identifier-prefix=GVirConfig \
1812 @WITH_GOBJECT_INTROSPECTION_TRUE@ --symbol-prefix=gvir_config \
1813 @WITH_GOBJECT_INTROSPECTION_TRUE@ --library=$(builddir)/libvirt-gconfig-1.0.la \
1814 @WITH_GOBJECT_INTROSPECTION_TRUE@ --output $@ \
1815 @WITH_GOBJECT_INTROSPECTION_TRUE@ -I$(top_builddir) \
1816 @WITH_GOBJECT_INTROSPECTION_TRUE@ -I$(top_srcdir) \
1817 @WITH_GOBJECT_INTROSPECTION_TRUE@ --verbose \
1818 @WITH_GOBJECT_INTROSPECTION_TRUE@ --c-include="libvirt-gconfig/libvirt-gconfig.h" \
1819 @WITH_GOBJECT_INTROSPECTION_TRUE@ --pkg=libxml-2.0 \
1820 @WITH_GOBJECT_INTROSPECTION_TRUE@ --pkg-export=libvirt-gconfig-1.0 \
1821 @WITH_GOBJECT_INTROSPECTION_TRUE@ $(srcdir)/libvirt-gconfig.h \
1822 @WITH_GOBJECT_INTROSPECTION_TRUE@ $(GCONFIG_SOURCE_FILES:%=$(srcdir)/%) \
1823 @WITH_GOBJECT_INTROSPECTION_TRUE@ $(GCONFIG_HEADER_FILES:%=$(srcdir)/%) \
1824 @WITH_GOBJECT_INTROSPECTION_TRUE@ $(builddir)/libvirt-gconfig-enum-types.c \
1825 @WITH_GOBJECT_INTROSPECTION_TRUE@ $(builddir)/libvirt-gconfig-enum-types.h
1826
1827 @WITH_GOBJECT_INTROSPECTION_TRUE@%.typelib: %.gir
1828 @WITH_GOBJECT_INTROSPECTION_TRUE@ $(AM_V_GEN)$(G_IR_COMPILER) \
1829 @WITH_GOBJECT_INTROSPECTION_TRUE@ --includedir=$(builddir) \
1830 @WITH_GOBJECT_INTROSPECTION_TRUE@ --includedir=$(girdir) \
1831 @WITH_GOBJECT_INTROSPECTION_TRUE@ -o $@ $<
1922 # .libs/libvirt-gconfig.so is built by libtool as a side-effect of the Makefile
1923 # rule for libosvirt-gconfig.la. However, checking symbols relies on Linux ELF layout
1924 @WITH_LINUX_TRUE@check-symfile: libvirt-gconfig.sym libvirt-gconfig-1.0.la
1925 @WITH_LINUX_TRUE@ $(AM_V_GEN)$(PERL) $(top_srcdir)/build-aux/check-symfile.pl $(srcdir)/libvirt-gconfig.sym \
1926 @WITH_LINUX_TRUE@ .libs/libvirt-gconfig-1.0.so
1927 @WITH_LINUX_FALSE@check-symfile:
1928 check-symsorting:
1929 $(AM_V_GEN)$(PERL) $(top_srcdir)/build-aux/check-symsorting.pl \
1930 $(srcdir)/libvirt-gconfig.sym
1931 check-local: check-symfile check-symsorting
1932
1933 -include $(INTROSPECTION_MAKEFILE)
1934
1935 @HAVE_INTROSPECTION_TRUE@LibvirtGConfig-1.0.gir: libvirt-gconfig-1.0.la
18321936
18331937 # Tell versions [3.59,3.63) of GNU make to not export all variables.
18341938 # Otherwise a system limit (for SysV at least) may be exceeded.
0 /*
1 * libvirt-gconfig-capabilities-cpu-model.c: libvirt CPU model capabilities
2 *
3 * Copyright (C) 2014 Red Hat, Inc.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * Authors: Zeeshan Ali <zeenix@redhat.com>
20 */
21
22 #include <config.h>
23
24 #include "libvirt-gconfig/libvirt-gconfig.h"
25 #include "libvirt-gconfig/libvirt-gconfig-private.h"
26
27 #define GVIR_CONFIG_CAPABILITIES_CPU_MODEL_GET_PRIVATE(obj) \
28 (G_TYPE_INSTANCE_GET_PRIVATE((obj), GVIR_CONFIG_TYPE_CAPABILITIES_CPU_MODEL, GVirConfigCapabilitiesCpuModelPrivate))
29
30 struct _GVirConfigCapabilitiesCpuModelPrivate
31 {
32 gboolean unused;
33 };
34
35 G_DEFINE_TYPE(GVirConfigCapabilitiesCpuModel, gvir_config_capabilities_cpu_model, GVIR_CONFIG_TYPE_OBJECT);
36
37 static void gvir_config_capabilities_cpu_model_class_init(GVirConfigCapabilitiesCpuModelClass *klass)
38 {
39 g_type_class_add_private(klass, sizeof(GVirConfigCapabilitiesCpuModelPrivate));
40 }
41
42 static void gvir_config_capabilities_cpu_model_init(GVirConfigCapabilitiesCpuModel *model)
43 {
44 g_debug("Init GVirConfigCapabilitiesCpuModel=%p", model);
45
46 model->priv = GVIR_CONFIG_CAPABILITIES_CPU_MODEL_GET_PRIVATE(model);
47 }
48
49 GVirConfigCapabilitiesCpuModel *gvir_config_capabilities_cpu_model_new(void)
50 {
51 GVirConfigObject *object;
52
53 object = gvir_config_object_new(GVIR_CONFIG_TYPE_CAPABILITIES_CPU_MODEL,
54 "model",
55 NULL);
56
57 return GVIR_CONFIG_CAPABILITIES_CPU_MODEL(object);
58 }
59
60 GVirConfigCapabilitiesCpuModel *
61 gvir_config_capabilities_cpu_model_new_from_xml(const gchar *xml, GError **error)
62 {
63 GVirConfigObject *object;
64
65 object = gvir_config_object_new_from_xml(GVIR_CONFIG_TYPE_CAPABILITIES_CPU_MODEL,
66 "model",
67 NULL,
68 xml,
69 error);
70
71 return GVIR_CONFIG_CAPABILITIES_CPU_MODEL(object);
72 }
73
74 void
75 gvir_config_capabilities_cpu_model_set_name(GVirConfigCapabilitiesCpuModel *model,
76 const gchar *name)
77 {
78 g_return_if_fail(GVIR_CONFIG_IS_CAPABILITIES_CPU_MODEL(model));
79
80 gvir_config_object_set_node_content
81 (GVIR_CONFIG_OBJECT(model),
82 NULL,
83 name);
84 }
85
86 const gchar *
87 gvir_config_capabilities_cpu_model_get_name(GVirConfigCapabilitiesCpuModel *model)
88 {
89 g_return_val_if_fail(GVIR_CONFIG_IS_CAPABILITIES_CPU_MODEL(model), NULL);
90
91 return gvir_config_object_get_node_content (GVIR_CONFIG_OBJECT(model),
92 NULL);
93 }
0 /*
1 * libvirt-gconfig-capabilities-cpu-model.h: libvirt CPU model capabilities
2 *
3 * Copyright (C) 2014 Red Hat, Inc.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * Authors: Zeeshan Ali <zeenix@redhat.com>
20 */
21
22 #if !defined(__LIBVIRT_GCONFIG_H__) && !defined(LIBVIRT_GCONFIG_BUILD)
23 #error "Only <libvirt-gconfig/libvirt-gconfig.h> can be included directly."
24 #endif
25
26 #ifndef __LIBVIRT_GCONFIG_CAPABILITIES_CPU_MODEL_H__
27 #define __LIBVIRT_GCONFIG_CAPABILITIES_CPU_MODEL_H__
28
29 G_BEGIN_DECLS
30
31 #define GVIR_CONFIG_TYPE_CAPABILITIES_CPU_MODEL (gvir_config_capabilities_cpu_model_get_type ())
32 #define GVIR_CONFIG_CAPABILITIES_CPU_MODEL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GVIR_CONFIG_TYPE_CAPABILITIES_CPU_MODEL, GVirConfigCapabilitiesCpuModel))
33 #define GVIR_CONFIG_CAPABILITIES_CPU_MODEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GVIR_CONFIG_TYPE_CAPABILITIES_CPU_MODEL, GVirConfigCapabilitiesCpuModelClass))
34 #define GVIR_CONFIG_IS_CAPABILITIES_CPU_MODEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GVIR_CONFIG_TYPE_CAPABILITIES_CPU_MODEL))
35 #define GVIR_CONFIG_IS_CAPABILITIES_CPU_MODEL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GVIR_CONFIG_TYPE_CAPABILITIES_CPU_MODEL))
36 #define GVIR_CONFIG_CAPABILITIES_CPU_MODEL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GVIR_CONFIG_TYPE_CAPABILITIES_CPU_MODEL, GVirConfigCapabilitiesCpuModelClass))
37
38 typedef struct _GVirConfigCapabilitiesCpuModel GVirConfigCapabilitiesCpuModel;
39 typedef struct _GVirConfigCapabilitiesCpuModelPrivate GVirConfigCapabilitiesCpuModelPrivate;
40 typedef struct _GVirConfigCapabilitiesCpuModelClass GVirConfigCapabilitiesCpuModelClass;
41
42 struct _GVirConfigCapabilitiesCpuModel
43 {
44 GVirConfigObject parent;
45
46 GVirConfigCapabilitiesCpuModelPrivate *priv;
47
48 /* Do not add fields to this struct */
49 };
50
51 struct _GVirConfigCapabilitiesCpuModelClass
52 {
53 GVirConfigObjectClass parent_class;
54
55 gpointer padding[20];
56 };
57
58 GType gvir_config_capabilities_cpu_model_get_type(void);
59 GVirConfigCapabilitiesCpuModel *gvir_config_capabilities_cpu_model_new(void);
60 GVirConfigCapabilitiesCpuModel *
61 gvir_config_capabilities_cpu_model_new_from_xml(const gchar *xml, GError **error);
62
63 void
64 gvir_config_capabilities_cpu_model_set_name(GVirConfigCapabilitiesCpuModel *model,
65 const gchar *name);
66 const gchar *
67 gvir_config_capabilities_cpu_model_get_name(GVirConfigCapabilitiesCpuModel *model);
68
69 G_END_DECLS
70
71 #endif /* __LIBVIRT_GCONFIG_CAPABILITIES_CPU_MODEL_H__ */
178178 GVirConfigCapabilitiesCpuTopology *topology)
179179 {
180180 g_return_if_fail(GVIR_CONFIG_IS_CAPABILITIES_CPU(cpu));
181 g_return_if_fail(GVIR_CONFIG_IS_CAPABILITIES_CPU_TOPOLOGY(topology));
181 g_return_if_fail(topology == NULL || GVIR_CONFIG_IS_CAPABILITIES_CPU_TOPOLOGY(topology));
182182
183183 gvir_config_object_attach_replace(GVIR_CONFIG_OBJECT(cpu),
184184 "topology",
185185 GVIR_CONFIG_OBJECT(topology));
186186 }
187
188 /**
189 * gvir_config_capabilities_cpu_get_model:
190 *
191 * Gets the model of the cpu.
192 *
193 * Returns: (transfer full): a new #GVirConfigCapabilitiesCpuModel.
194 */
195 GVirConfigCapabilitiesCpuModel *
196 gvir_config_capabilities_cpu_get_model(GVirConfigCapabilitiesCpu *cpu)
197 {
198 GVirConfigObject *object;
199
200 g_return_val_if_fail(GVIR_CONFIG_IS_CAPABILITIES_CPU(cpu), NULL);
201
202 object = gvir_config_object_get_child_with_type
203 (GVIR_CONFIG_OBJECT(cpu),
204 "model",
205 GVIR_CONFIG_TYPE_CAPABILITIES_CPU_MODEL);
206
207 return GVIR_CONFIG_CAPABILITIES_CPU_MODEL(object);
208 }
2929
3030 #include "libvirt-gconfig-capabilities-cpu-topology.h"
3131 #include "libvirt-gconfig-capabilities-cpu-feature.h"
32 #include "libvirt-gconfig-capabilities-cpu-model.h"
3233
3334 G_BEGIN_DECLS
3435
7475 void
7576 gvir_config_capabilities_cpu_set_topology(GVirConfigCapabilitiesCpu *cpu,
7677 GVirConfigCapabilitiesCpuTopology *topology);
78 GVirConfigCapabilitiesCpuModel *
79 gvir_config_capabilities_cpu_get_model(GVirConfigCapabilitiesCpu *cpu);
7780
7881 G_END_DECLS
7982
0 /*
1 * libvirt-gconfig-capabilities-host-secmodel.c: libvirt security model capabilities
2 *
3 * Copyright (C) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * Authors: Cédric Bosdonnat <cbosdonnat@suse.com>
20 */
21
22 #include <config.h>
23
24 #include "libvirt-gconfig/libvirt-gconfig.h"
25 #include "libvirt-gconfig/libvirt-gconfig-private.h"
26
27 #define GVIR_CONFIG_CAPABILITIES_HOST_SECMODEL_GET_PRIVATE(obj) \
28 (G_TYPE_INSTANCE_GET_PRIVATE((obj), GVIR_CONFIG_TYPE_CAPABILITIES_HOST_SECMODEL, GVirConfigCapabilitiesHostSecModelPrivate))
29
30 struct _GVirConfigCapabilitiesHostSecModelPrivate
31 {
32 gboolean unused;
33 };
34
35 G_DEFINE_TYPE(GVirConfigCapabilitiesHostSecModel, gvir_config_capabilities_host_secmodel, GVIR_CONFIG_TYPE_OBJECT);
36
37 static void gvir_config_capabilities_host_secmodel_class_init(GVirConfigCapabilitiesHostSecModelClass *klass)
38 {
39 g_type_class_add_private(klass, sizeof(GVirConfigCapabilitiesHostSecModelPrivate));
40 }
41
42 static void gvir_config_capabilities_host_secmodel_init(GVirConfigCapabilitiesHostSecModel *secmodel)
43 {
44 g_debug("Init GVirConfigCapabilitiesHostSecModel=%p", secmodel);
45
46 secmodel->priv = GVIR_CONFIG_CAPABILITIES_HOST_SECMODEL_GET_PRIVATE(secmodel);
47 }
48
49 const gchar *
50 gvir_config_capabilities_host_secmodel_get_model(GVirConfigCapabilitiesHostSecModel *secmodel)
51 {
52 return gvir_config_object_get_node_content(GVIR_CONFIG_OBJECT(secmodel),
53 "model");
54 }
55
56 const gchar *
57 gvir_config_capabilities_host_secmodel_get_doi(GVirConfigCapabilitiesHostSecModel *secmodel)
58 {
59 return gvir_config_object_get_node_content(GVIR_CONFIG_OBJECT(secmodel),
60 "doi");
61 }
0 /*
1 * libvirt-gconfig-capabilities-host-secmodel.h: libvirt security model capabilities
2 *
3 * Copyright (C) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * Authors: Cédric Bosdonnat <cbosdonnat@suse.com>
20 */
21
22 #if !defined(__LIBVIRT_GCONFIG_H__) && !defined(LIBVIRT_GCONFIG_BUILD)
23 #error "Only <libvirt-gconfig/libvirt-gconfig.h> can be included directly."
24 #endif
25
26 #ifndef __LIBVIRT_GCONFIG_CAPABILITIES_HOST_SECMODEL_H__
27 #define __LIBVIRT_GCONFIG_CAPABILITIES_HOST_SECMODEL_H__
28
29 G_BEGIN_DECLS
30
31 #define GVIR_CONFIG_TYPE_CAPABILITIES_HOST_SECMODEL (gvir_config_capabilities_host_secmodel_get_type ())
32 #define GVIR_CONFIG_CAPABILITIES_HOST_SECMODEL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GVIR_CONFIG_TYPE_CAPABILITIES_HOST_SECMODEL, GVirConfigCapabilitiesHostSecModel))
33 #define GVIR_CONFIG_CAPABILITIES_HOST_SECMODEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GVIR_CONFIG_TYPE_CAPABILITIES_HOST_SECMODEL, GVirConfigCapabilitiesHostSecModelClass))
34 #define GVIR_CONFIG_IS_CAPABILITIES_HOST_SECMODEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GVIR_CONFIG_TYPE_CAPABILITIES_HOST_SECMODEL))
35 #define GVIR_CONFIG_IS_CAPABILITIES_HOST_SECMODEL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GVIR_CONFIG_TYPE_CAPABILITIES_HOST_SECMODEL))
36 #define GVIR_CONFIG_CAPABILITIES_HOST_SECMODEL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GVIR_CONFIG_TYPE_CAPABILITIES_HOST_SECMODEL, GVirConfigCapabilitiesHostSecModelClass))
37
38 typedef struct _GVirConfigCapabilitiesHostSecModel GVirConfigCapabilitiesHostSecModel;
39 typedef struct _GVirConfigCapabilitiesHostSecModelPrivate GVirConfigCapabilitiesHostSecModelPrivate;
40 typedef struct _GVirConfigCapabilitiesHostSecModelClass GVirConfigCapabilitiesHostSecModelClass;
41
42 struct _GVirConfigCapabilitiesHostSecModel
43 {
44 GVirConfigObject parent;
45
46 GVirConfigCapabilitiesHostSecModelPrivate *priv;
47
48 /* Do not add fields to this struct */
49 };
50
51 struct _GVirConfigCapabilitiesHostSecModelClass
52 {
53 GVirConfigObjectClass parent_class;
54
55 gpointer padding[20];
56 };
57
58 GType gvir_config_capabilities_host_secmodel_get_type(void);
59
60 const gchar *
61 gvir_config_capabilities_host_secmodel_get_model(GVirConfigCapabilitiesHostSecModel *secmodel);
62
63 const gchar *
64 gvir_config_capabilities_host_secmodel_get_doi(GVirConfigCapabilitiesHostSecModel *secmodel);
65
66 G_END_DECLS
67
68 #endif /* __LIBVIRT_GCONFIG_CAPABILITIES_HOST_SECMODEL_H__ */
7676
7777 return GVIR_CONFIG_CAPABILITIES_CPU(object);
7878 }
79
80 struct GetSecModelData {
81 GVirConfigXmlDoc *doc;
82 const gchar *schema;
83 GList *secmodels;
84 GType type;
85 };
86
87 static gboolean add_secmodel(xmlNodePtr node, gpointer opaque)
88 {
89 struct GetSecModelData* data = (struct GetSecModelData*)opaque;
90 GVirConfigObject *secmodel;
91
92 if (g_strcmp0((const gchar *)node->name, "secmodel") != 0)
93 return TRUE;
94
95 secmodel = gvir_config_object_new_from_tree
96 (data->type,
97 data->doc,
98 data->schema,
99 node);
100 if (secmodel != NULL)
101 data->secmodels = g_list_append(data->secmodels, secmodel);
102 else
103 g_debug("Failed to parse %s node", node->name);
104
105 return TRUE;
106 }
107
108 /**
109 * gvir_config_capabilities_host_get_secmodels:
110 * @host: a #GVirConfigCapabilitiesHost
111 *
112 * Get the security models listed in @host capabilities.
113 *
114 * Returns: (element-type LibvirtGConfig.CapabilitiesHostSecModel) (transfer full):
115 * a newly allocated #GList of #GVirConfigCapabilitiesHostSecModel.
116 */
117 GList *
118 gvir_config_capabilities_host_get_secmodels(GVirConfigCapabilitiesHost *host)
119 {
120 struct GetSecModelData data;
121
122 g_return_val_if_fail(GVIR_CONFIG_IS_CAPABILITIES_HOST(host), NULL);
123
124 data.schema = gvir_config_object_get_schema(GVIR_CONFIG_OBJECT(host));
125 g_object_get(G_OBJECT(host), "doc", &data.doc, NULL);
126 g_return_val_if_fail(data.doc != NULL, NULL);
127 data.secmodels = NULL;
128 data.type = GVIR_CONFIG_TYPE_CAPABILITIES_HOST_SECMODEL;
129
130 gvir_config_object_foreach_child(GVIR_CONFIG_OBJECT(host),
131 NULL,
132 add_secmodel,
133 &data);
134
135 g_clear_object(&data.doc);
136
137 return data.secmodels;
138 }
6666 GVirConfigCapabilitiesCpu *
6767 gvir_config_capabilities_host_get_cpu(GVirConfigCapabilitiesHost *host);
6868
69 GList *
70 gvir_config_capabilities_host_get_secmodels(GVirConfigCapabilitiesHost *host);
71
6972 G_END_DECLS
7073
7174 #endif /* __LIBVIRT_GCONFIG_CAPABILITIES_HOST_H__ */
5858 typedef enum {
5959 GVIR_CONFIG_DOMAIN_CHANNEL_TARGET_GUESTFWD,
6060 GVIR_CONFIG_DOMAIN_CHANNEL_TARGET_VIRTIO,
61 GVIR_CONFIG_DOMAIN_CHANNEL_TARGET_SPICEPORT,
6162 } GVirConfigDomainChannelTargetType;
6263
6364
0 /*
1 * libvirt-gconfig-domain-chardev-source-spiceport.c: libvirt domain chardev spiceport configuration
2 *
3 * Copyright (C) 2014 Red Hat, Inc.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 */
19
20 #include <config.h>
21
22 #include "libvirt-gconfig/libvirt-gconfig.h"
23 #include "libvirt-gconfig/libvirt-gconfig-private.h"
24
25 #define GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE_SPICE_PORT_GET_PRIVATE(obj) \
26 (G_TYPE_INSTANCE_GET_PRIVATE((obj), GVIR_CONFIG_TYPE_DOMAIN_CHARDEV_SOURCE_SPICE_PORT, GVirConfigDomainChardevSourceSpicePortPrivate))
27
28 struct _GVirConfigDomainChardevSourceSpicePortPrivate
29 {
30 gboolean unused;
31 };
32
33 G_DEFINE_TYPE(GVirConfigDomainChardevSourceSpicePort, gvir_config_domain_chardev_source_spiceport, GVIR_CONFIG_TYPE_DOMAIN_CHARDEV_SOURCE);
34
35
36 static void gvir_config_domain_chardev_source_spiceport_class_init(GVirConfigDomainChardevSourceSpicePortClass *klass)
37 {
38 g_type_class_add_private(klass, sizeof(GVirConfigDomainChardevSourceSpicePortPrivate));
39 }
40
41
42 static void gvir_config_domain_chardev_source_spiceport_init(GVirConfigDomainChardevSourceSpicePort *source)
43 {
44 g_debug("Init GVirConfigDomainChardevSourceSpicePort=%p", source);
45
46 source->priv = GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE_SPICE_PORT_GET_PRIVATE(source);
47 }
48
49
50 GVirConfigDomainChardevSourceSpicePort *gvir_config_domain_chardev_source_spiceport_new(void)
51 {
52 GVirConfigObject *object;
53
54 /* the name of the root node is just a placeholder, it will be
55 * overwritten when the GVirConfigDomainChardevSourceSpicePort is attached to a
56 * GVirConfigDomainChardev
57 */
58 object = gvir_config_object_new(GVIR_CONFIG_TYPE_DOMAIN_CHARDEV_SOURCE_SPICE_PORT, "dummy", NULL);
59 gvir_config_object_set_attribute(object, "type", "spiceport", NULL);
60 return GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE_SPICE_PORT(object);
61 }
62
63
64 GVirConfigDomainChardevSourceSpicePort *gvir_config_domain_chardev_source_spiceport_new_from_xml(const gchar *xml,
65 GError **error)
66 {
67 GVirConfigObject *object;
68
69 /* the name of the root node is just a placeholder, it will be
70 * overwritten when the GVirConfigDomainChardevSourceSpicePort is attached to a
71 * GVirConfigDomainChardev
72 */
73 object = gvir_config_object_new_from_xml(GVIR_CONFIG_TYPE_DOMAIN_CHARDEV_SOURCE_SPICE_PORT,
74 "dummy", NULL, xml, error);
75 if (g_strcmp0(gvir_config_object_get_attribute(object, NULL, "type"), "spiceport") != 0) {
76 g_object_unref(G_OBJECT(object));
77 g_return_val_if_reached(NULL);
78 }
79 return GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE_SPICE_PORT(object);
80 }
81
82 void gvir_config_domain_chardev_source_spiceport_set_channel(GVirConfigDomainChardevSourceSpicePort *port,
83 const char *channel)
84 {
85 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_CHARDEV_SOURCE_SPICE_PORT(port));
86
87 gvir_config_object_replace_child_with_attribute(GVIR_CONFIG_OBJECT(port),
88 "source",
89 "channel",
90 channel);
91
92 }
93
94 const gchar * gvir_config_domain_chardev_source_spiceport_get_channel(GVirConfigDomainChardevSourceSpicePort *port)
95 {
96 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_CHARDEV_SOURCE_SPICE_PORT(port), NULL);
97
98 return gvir_config_object_get_attribute(GVIR_CONFIG_OBJECT(port),
99 "source", "channel");
100 }
0 /*
1 * libvirt-gconfig-domain-chardev-source-spiceport.h: libvirt domain chardev spiceport configuration
2 *
3 * Copyright (C) 2014 Red Hat, Inc.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 */
19
20 #if !defined(__LIBVIRT_GCONFIG_H__) && !defined(LIBVIRT_GCONFIG_BUILD)
21 #error "Only <libvirt-gconfig/libvirt-gconfig.h> can be included directly."
22 #endif
23
24 #ifndef __LIBVIRT_GCONFIG_DOMAIN_CHARDEV_SOURCE_SPICE_PORT_H__
25 #define __LIBVIRT_GCONFIG_DOMAIN_CHARDEV_SOURCE_SPICE_PORT_H__
26
27 G_BEGIN_DECLS
28
29 #define GVIR_CONFIG_TYPE_DOMAIN_CHARDEV_SOURCE_SPICE_PORT (gvir_config_domain_chardev_source_spiceport_get_type ())
30 #define GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE_SPICE_PORT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GVIR_CONFIG_TYPE_DOMAIN_CHARDEV_SOURCE_SPICE_PORT, GVirConfigDomainChardevSourceSpicePort))
31 #define GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE_SPICE_PORT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GVIR_CONFIG_TYPE_DOMAIN_CHARDEV_SOURCE_SPICE_PORT, GVirConfigDomainChardevSourceSpicePortClass))
32 #define GVIR_CONFIG_IS_DOMAIN_CHARDEV_SOURCE_SPICE_PORT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GVIR_CONFIG_TYPE_DOMAIN_CHARDEV_SOURCE_SPICE_PORT))
33 #define GVIR_CONFIG_IS_DOMAIN_CHARDEV_SOURCE_SPICE_PORT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GVIR_CONFIG_TYPE_DOMAIN_CHARDEV_SOURCE_SPICE_PORT))
34 #define GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE_SPICE_PORT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GVIR_CONFIG_TYPE_DOMAIN_CHARDEV_SOURCE_SPICE_PORT, GVirConfigDomainChardevSourceSpicePortClass))
35
36 typedef struct _GVirConfigDomainChardevSourceSpicePort GVirConfigDomainChardevSourceSpicePort;
37 typedef struct _GVirConfigDomainChardevSourceSpicePortPrivate GVirConfigDomainChardevSourceSpicePortPrivate;
38 typedef struct _GVirConfigDomainChardevSourceSpicePortClass GVirConfigDomainChardevSourceSpicePortClass;
39
40 struct _GVirConfigDomainChardevSourceSpicePort
41 {
42 GVirConfigDomainChardevSource parent;
43
44 GVirConfigDomainChardevSourceSpicePortPrivate *priv;
45
46 /* Do not add fields to this struct */
47 };
48
49 struct _GVirConfigDomainChardevSourceSpicePortClass
50 {
51 GVirConfigDomainChardevSourceClass parent_class;
52
53 gpointer padding[20];
54 };
55
56
57 GType gvir_config_domain_chardev_source_spiceport_get_type(void);
58
59 GVirConfigDomainChardevSourceSpicePort *gvir_config_domain_chardev_source_spiceport_new(void);
60 GVirConfigDomainChardevSourceSpicePort *gvir_config_domain_chardev_source_spiceport_new_from_xml(const gchar *xml,
61 GError **error);
62
63 void gvir_config_domain_chardev_source_spiceport_set_channel(GVirConfigDomainChardevSourceSpicePort *port,
64 const char *channel);
65
66 const gchar * gvir_config_domain_chardev_source_spiceport_get_channel(GVirConfigDomainChardevSourceSpicePort *port);
67
68 G_END_DECLS
69
70 #endif /* __LIBVIRT_GCONFIG_DOMAIN_CHARDEV_SOURCE_SPICE_PORT_H__ */
6868 return GVIR_CONFIG_DOMAIN_CLOCK(object);
6969 }
7070
71
72 GVirConfigDomainClockOffset
73 gvir_config_domain_clock_get_offset(GVirConfigDomainClock *klock)
74 {
75 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_CLOCK(klock),
76 GVIR_CONFIG_DOMAIN_CLOCK_UTC);
77
78 return gvir_config_object_get_attribute_genum(GVIR_CONFIG_OBJECT(klock),
79 NULL, "offset",
80 GVIR_CONFIG_TYPE_DOMAIN_CLOCK_OFFSET,
81 GVIR_CONFIG_DOMAIN_CLOCK_UTC);
82 }
83
84
7185 void gvir_config_domain_clock_set_offset(GVirConfigDomainClock *klock,
7286 GVirConfigDomainClockOffset offset)
7387 {
8094 NULL);
8195 }
8296
97
98 const char *gvir_config_domain_clock_get_timezone(GVirConfigDomainClock *klock)
99 {
100 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_CLOCK(klock), NULL);
101
102 return gvir_config_object_get_attribute(GVIR_CONFIG_OBJECT(klock),
103 NULL, "timezone");
104 }
105
106
83107 void gvir_config_domain_clock_set_timezone(GVirConfigDomainClock *klock,
84108 const char *tz)
85109 {
89113 gvir_config_object_set_attribute(GVIR_CONFIG_OBJECT(klock),
90114 "timezone", tz, NULL);
91115 }
116
117
118 int gvir_config_domain_clock_get_variable_offset(GVirConfigDomainClock *klock)
119 {
120 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_CLOCK(klock), 0);
121
122 return gvir_config_object_get_attribute_uint64(GVIR_CONFIG_OBJECT(klock),
123 NULL, "adjustment", 0);
124 }
125
92126
93127 void gvir_config_domain_clock_set_variable_offset(GVirConfigDomainClock *klock,
94128 gint seconds)
101135 NULL);
102136 }
103137
138
104139 void gvir_config_domain_clock_add_timer(GVirConfigDomainClock *klock,
105140 GVirConfigDomainTimer *timer)
106141 {
6969 GVirConfigDomainClock *gvir_config_domain_clock_new(void);
7070 GVirConfigDomainClock *gvir_config_domain_clock_new_from_xml(const gchar *xml,
7171 GError **error);
72 GVirConfigDomainClockOffset gvir_config_domain_clock_get_offset(GVirConfigDomainClock *klock);
7273 void gvir_config_domain_clock_set_offset(GVirConfigDomainClock *klock,
7374 GVirConfigDomainClockOffset offset);
75 const char *gvir_config_domain_clock_get_timezone(GVirConfigDomainClock *klock);
7476 void gvir_config_domain_clock_set_timezone(GVirConfigDomainClock *klock,
7577 const char *tz);
78 gint gvir_config_domain_clock_get_variable_offset(GVirConfigDomainClock *klock);
7679 void gvir_config_domain_clock_set_variable_offset(GVirConfigDomainClock *klock,
7780 gint seconds);
7881 void gvir_config_domain_clock_add_timer(GVirConfigDomainClock *klock,
0 /*
1 * libvirt-gconfig-domain-cpu-model.c: libvirt domain CPU model
2 *
3 * Copyright (C) 2014 Red Hat, Inc.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * Authors: Zeeshan Ali <zeenix@redhat.com>
20 */
21
22 #include <config.h>
23
24 #include "libvirt-gconfig/libvirt-gconfig.h"
25 #include "libvirt-gconfig/libvirt-gconfig-private.h"
26
27 #define GVIR_CONFIG_DOMAIN_CPU_MODEL_GET_PRIVATE(obj) \
28 (G_TYPE_INSTANCE_GET_PRIVATE((obj), GVIR_CONFIG_TYPE_DOMAIN_CPU_MODEL, GVirConfigDomainCpuModelPrivate))
29
30 struct _GVirConfigDomainCpuModelPrivate
31 {
32 gboolean unused;
33 };
34
35 G_DEFINE_TYPE(GVirConfigDomainCpuModel,
36 gvir_config_domain_cpu_model,
37 GVIR_CONFIG_TYPE_CAPABILITIES_CPU_MODEL);
38
39 static void gvir_config_domain_cpu_model_class_init(GVirConfigDomainCpuModelClass *klass)
40 {
41 g_type_class_add_private(klass, sizeof(GVirConfigDomainCpuModelPrivate));
42 }
43
44 static void gvir_config_domain_cpu_model_init(GVirConfigDomainCpuModel *model)
45 {
46 g_debug("Init GVirConfigDomainCpuModel=%p", model);
47
48 model->priv = GVIR_CONFIG_DOMAIN_CPU_MODEL_GET_PRIVATE(model);
49 }
50
51 GVirConfigDomainCpuModel *gvir_config_domain_cpu_model_new(void)
52 {
53 GVirConfigObject *object;
54
55 object = gvir_config_object_new(GVIR_CONFIG_TYPE_DOMAIN_CPU_MODEL,
56 "model",
57 NULL);
58
59 return GVIR_CONFIG_DOMAIN_CPU_MODEL(object);
60 }
61
62 GVirConfigDomainCpuModel *
63 gvir_config_domain_cpu_model_new_from_xml(const gchar *xml, GError **error)
64 {
65 GVirConfigObject *object;
66
67 object = gvir_config_object_new_from_xml(GVIR_CONFIG_TYPE_DOMAIN_CPU_MODEL,
68 "model",
69 NULL,
70 xml,
71 error);
72
73 return GVIR_CONFIG_DOMAIN_CPU_MODEL(object);
74 }
0 /*
1 * libvirt-gconfig-domain-cpu-model.h: libvirt domain CPU model
2 *
3 * Copyright (C) 2014 Red Hat, Inc.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * Authors: Zeeshan Ali <zeenix@redhat.com>
20 */
21
22 #if !defined(__LIBVIRT_GCONFIG_H__) && !defined(LIBVIRT_GCONFIG_BUILD)
23 #error "Only <libvirt-gconfig/libvirt-gconfig.h> can be included directly."
24 #endif
25
26 #ifndef __LIBVIRT_GCONFIG_DOMAIN_CPU_MODEL_H__
27 #define __LIBVIRT_GCONFIG_DOMAIN_CPU_MODEL_H__
28
29 #include "libvirt-gconfig-capabilities-cpu-model.h"
30
31 G_BEGIN_DECLS
32
33 #define GVIR_CONFIG_TYPE_DOMAIN_CPU_MODEL (gvir_config_domain_cpu_model_get_type ())
34 #define GVIR_CONFIG_DOMAIN_CPU_MODEL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GVIR_CONFIG_TYPE_DOMAIN_CPU_MODEL, GVirConfigDomainCpuModel))
35 #define GVIR_CONFIG_DOMAIN_CPU_MODEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GVIR_CONFIG_TYPE_DOMAIN_CPU_MODEL, GVirConfigDomainCpuModelClass))
36 #define GVIR_CONFIG_IS_DOMAIN_CPU_MODEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GVIR_CONFIG_TYPE_DOMAIN_CPU_MODEL))
37 #define GVIR_CONFIG_IS_DOMAIN_CPU_MODEL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GVIR_CONFIG_TYPE_DOMAIN_CPU_MODEL))
38 #define GVIR_CONFIG_DOMAIN_CPU_MODEL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GVIR_CONFIG_TYPE_DOMAIN_CPU_MODEL, GVirConfigDomainCpuModelClass))
39
40 typedef struct _GVirConfigDomainCpuModel GVirConfigDomainCpuModel;
41 typedef struct _GVirConfigDomainCpuModelPrivate GVirConfigDomainCpuModelPrivate;
42 typedef struct _GVirConfigDomainCpuModelClass GVirConfigDomainCpuModelClass;
43
44 struct _GVirConfigDomainCpuModel
45 {
46 GVirConfigCapabilitiesCpuModel parent;
47
48 GVirConfigDomainCpuModelPrivate *priv;
49
50 /* Do not add fields to this struct */
51 };
52
53 struct _GVirConfigDomainCpuModelClass
54 {
55 GVirConfigCapabilitiesCpuModelClass parent_class;
56
57 gpointer padding[20];
58 };
59
60 GType gvir_config_domain_cpu_model_get_type(void);
61 GVirConfigDomainCpuModel *gvir_config_domain_cpu_model_new(void);
62 GVirConfigDomainCpuModel *
63 gvir_config_domain_cpu_model_new_from_xml(const gchar *xml, GError **error);
64
65 G_END_DECLS
66
67 #endif /* __LIBVIRT_GCONFIG_DOMAIN_CPU_MODEL_H__ */
135135 "mode", GVIR_CONFIG_TYPE_DOMAIN_CPU_MODE, mode,
136136 NULL);
137137 }
138
139 void gvir_config_domain_cpu_set_model(GVirConfigDomainCpu *cpu,
140 GVirConfigDomainCpuModel *model)
141 {
142 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_CPU(cpu));
143 g_return_if_fail(model == NULL || GVIR_CONFIG_IS_DOMAIN_CPU_MODEL(model));
144
145 gvir_config_object_attach_replace(GVIR_CONFIG_OBJECT(cpu),
146 "model",
147 GVIR_CONFIG_OBJECT(model));
148 }
2626
2727 #ifndef __LIBVIRT_GCONFIG_DOMAIN_CPU_H__
2828 #define __LIBVIRT_GCONFIG_DOMAIN_CPU_H__
29
30 #include <libvirt-gconfig/libvirt-gconfig-domain-cpu-model.h>
2931
3032 G_BEGIN_DECLS
3133
7981 gvir_config_domain_cpu_get_match_policy(GVirConfigDomainCpu *cpu);
8082 void gvir_config_domain_cpu_set_mode(GVirConfigDomainCpu *cpu,
8183 GVirConfigDomainCpuMode mode);
84 void gvir_config_domain_cpu_set_model(GVirConfigDomainCpu *cpu,
85 GVirConfigDomainCpuModel *model);
8286 GVirConfigDomainCpuMode
8387 gvir_config_domain_cpu_get_mode(GVirConfigDomainCpu *cpu);
8488
0 /*
1 * libvirt-gconfig-domain-disk-driver.c: libvirt domain disk driver configuration
2 *
3 * Copyright (C) 2011, 2013 Red Hat, Inc.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * Author: Christophe Fergeau <cfergeau@redhat.com>
20 */
21
22 #include <config.h>
23
24 #include "libvirt-gconfig/libvirt-gconfig.h"
25 #include "libvirt-gconfig/libvirt-gconfig-private.h"
26
27 #define GVIR_CONFIG_DOMAIN_DISK_DRIVER_GET_PRIVATE(obj) \
28 (G_TYPE_INSTANCE_GET_PRIVATE((obj), GVIR_CONFIG_TYPE_DOMAIN_DISK_DRIVER, GVirConfigDomainDiskDriverPrivate))
29
30 struct _GVirConfigDomainDiskDriverPrivate
31 {
32 gboolean unused;
33 };
34
35 G_DEFINE_TYPE(GVirConfigDomainDiskDriver, gvir_config_domain_disk_driver, GVIR_CONFIG_TYPE_OBJECT);
36
37
38 static void gvir_config_domain_disk_driver_class_init(GVirConfigDomainDiskDriverClass *klass)
39 {
40 g_type_class_add_private(klass, sizeof(GVirConfigDomainDiskDriverPrivate));
41 }
42
43
44 static void gvir_config_domain_disk_driver_init(GVirConfigDomainDiskDriver *driver)
45 {
46 g_debug("Init GVirConfigDomainDiskDriver=%p", driver);
47
48 driver->priv = GVIR_CONFIG_DOMAIN_DISK_DRIVER_GET_PRIVATE(driver);
49 }
50
51
52 GVirConfigDomainDiskDriver *gvir_config_domain_disk_driver_new(void)
53 {
54 GVirConfigObject *object;
55
56 object = gvir_config_object_new(GVIR_CONFIG_TYPE_DOMAIN_DISK_DRIVER,
57 "driver", NULL);
58 return GVIR_CONFIG_DOMAIN_DISK_DRIVER(object);
59 }
60
61 GVirConfigDomainDiskDriver *gvir_config_domain_disk_driver_new_from_xml(const gchar *xml,
62 GError **error)
63 {
64 GVirConfigObject *object;
65
66 object = gvir_config_object_new_from_xml(GVIR_CONFIG_TYPE_DOMAIN_DISK_DRIVER,
67 "driver", NULL, xml, error);
68 return GVIR_CONFIG_DOMAIN_DISK_DRIVER(object);
69 }
70
71
72 void gvir_config_domain_disk_driver_set_cache(GVirConfigDomainDiskDriver *driver,
73 GVirConfigDomainDiskCacheType cache_type)
74 {
75 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER(driver));
76
77 gvir_config_object_set_attribute_with_type(GVIR_CONFIG_OBJECT(driver),
78 "cache",
79 GVIR_CONFIG_TYPE_DOMAIN_DISK_CACHE_TYPE,
80 cache_type,
81 NULL);
82 }
83
84
85 GVirConfigDomainDiskCacheType gvir_config_domain_disk_driver_get_cache(GVirConfigDomainDiskDriver *driver)
86 {
87 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER(driver),
88 GVIR_CONFIG_DOMAIN_DISK_CACHE_DEFAULT);
89
90 return gvir_config_object_get_attribute_genum(GVIR_CONFIG_OBJECT(driver),
91 NULL, "cache",
92 GVIR_CONFIG_TYPE_DOMAIN_DISK_CACHE_TYPE,
93 GVIR_CONFIG_DOMAIN_DISK_CACHE_DEFAULT);
94 }
95
96
97 void gvir_config_domain_disk_driver_set_name(GVirConfigDomainDiskDriver *driver,
98 const char *name)
99 {
100 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER(driver));
101
102 gvir_config_object_set_attribute(GVIR_CONFIG_OBJECT(driver),
103 "name", name, NULL);
104 }
105
106
107 const char *gvir_config_domain_disk_driver_get_name(GVirConfigDomainDiskDriver *driver)
108
109 {
110 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER(driver), NULL);
111
112 return gvir_config_object_get_attribute(GVIR_CONFIG_OBJECT(driver),
113 NULL, "name");
114 }
115
116
117 void gvir_config_domain_disk_driver_set_error_policy(GVirConfigDomainDiskDriver *driver,
118 GVirConfigDomainDiskDriverErrorPolicy policy)
119 {
120 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER(driver));
121
122 gvir_config_object_set_attribute_with_type(GVIR_CONFIG_OBJECT(driver),
123 "error_policy",
124 GVIR_CONFIG_TYPE_DOMAIN_DISK_DRIVER_ERROR_POLICY,
125 policy,
126 NULL);
127 }
128
129
130 GVirConfigDomainDiskDriverErrorPolicy gvir_config_domain_disk_driver_get_error_policy(GVirConfigDomainDiskDriver *driver)
131 {
132 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER(driver),
133 GVIR_CONFIG_DOMAIN_DISK_DRIVER_ERROR_POLICY_REPORT);
134
135 return gvir_config_object_get_attribute_genum(GVIR_CONFIG_OBJECT(driver),
136 NULL, "error_policy",
137 GVIR_CONFIG_TYPE_DOMAIN_DISK_DRIVER_ERROR_POLICY,
138 GVIR_CONFIG_DOMAIN_DISK_DRIVER_ERROR_POLICY_REPORT);
139 }
140
141
142 void gvir_config_domain_disk_driver_set_format(GVirConfigDomainDiskDriver *driver,
143 GVirConfigDomainDiskFormat format)
144 {
145 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER(driver));
146
147 gvir_config_object_set_attribute_with_type(GVIR_CONFIG_OBJECT(driver),
148 "type",
149 GVIR_CONFIG_TYPE_DOMAIN_DISK_FORMAT,
150 format,
151 NULL);
152 }
153
154
155 GVirConfigDomainDiskFormat gvir_config_domain_disk_driver_get_format(GVirConfigDomainDiskDriver *driver)
156 {
157 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER(driver),
158 GVIR_CONFIG_DOMAIN_DISK_FORMAT_RAW);
159
160 return gvir_config_object_get_attribute_genum(GVIR_CONFIG_OBJECT(driver),
161 NULL, "type",
162 GVIR_CONFIG_TYPE_DOMAIN_DISK_FORMAT,
163 GVIR_CONFIG_DOMAIN_DISK_FORMAT_RAW);
164 }
165
166
167 void gvir_config_domain_disk_driver_set_io_policy(GVirConfigDomainDiskDriver *driver,
168 GVirConfigDomainDiskDriverIoPolicy policy)
169 {
170 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER(driver));
171
172 gvir_config_object_set_attribute_with_type(GVIR_CONFIG_OBJECT(driver),
173 "io",
174 GVIR_CONFIG_TYPE_DOMAIN_DISK_DRIVER_IO_POLICY,
175 policy,
176 NULL);
177 }
178
179
180 GVirConfigDomainDiskDriverIoPolicy gvir_config_domain_disk_driver_get_io_policy(GVirConfigDomainDiskDriver *driver)
181 {
182 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER(driver),
183 GVIR_CONFIG_DOMAIN_DISK_DRIVER_IO_POLICY_THREADS);
184
185 return gvir_config_object_get_attribute_genum(GVIR_CONFIG_OBJECT(driver),
186 NULL, "io",
187 GVIR_CONFIG_TYPE_DOMAIN_DISK_DRIVER_IO_POLICY,
188 GVIR_CONFIG_DOMAIN_DISK_DRIVER_IO_POLICY_THREADS);
189 }
190
191
192 void gvir_config_domain_disk_driver_set_copy_on_read(GVirConfigDomainDiskDriver *driver,
193 gboolean copy_on_read)
194 {
195 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER(driver));
196
197 /* gvir_config_object_set_attribute_with_type(..., G_TYPE_BOOLEAN, ...)
198 * cannot be used here as it translates into "yes"/"no", but what we
199 * want is "on"/"off"
200 */
201 gvir_config_object_set_attribute(GVIR_CONFIG_OBJECT(driver),
202 "copy_on_read",
203 copy_on_read?"on":"off",
204 NULL);
205 }
206
207
208 gboolean gvir_config_domain_disk_driver_get_copy_on_read(GVirConfigDomainDiskDriver *driver)
209 {
210 const char *copy_on_read;
211
212 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER(driver), FALSE);
213
214 copy_on_read = gvir_config_object_get_attribute(GVIR_CONFIG_OBJECT(driver),
215 NULL, "copy_on_read");
216
217 return (g_strcmp0(copy_on_read, "on") == 0);
218 }
219
220
221 void gvir_config_domain_disk_driver_set_discard(GVirConfigDomainDiskDriver *driver,
222 GVirConfigDomainDiskDriverDiscard discard)
223 {
224 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER(driver));
225
226 gvir_config_object_set_attribute_with_type(GVIR_CONFIG_OBJECT(driver),
227 "discard",
228 GVIR_CONFIG_TYPE_DOMAIN_DISK_DRIVER_DISCARD,
229 discard,
230 NULL);
231 }
232
233
234 GVirConfigDomainDiskDriverDiscard gvir_config_domain_disk_driver_get_discard(GVirConfigDomainDiskDriver *driver)
235 {
236 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER(driver),
237 GVIR_CONFIG_DOMAIN_DISK_DRIVER_DISCARD_IGNORE);
238
239 return gvir_config_object_get_attribute_genum(GVIR_CONFIG_OBJECT(driver),
240 NULL, "discard",
241 GVIR_CONFIG_TYPE_DOMAIN_DISK_DRIVER_DISCARD,
242 GVIR_CONFIG_DOMAIN_DISK_DRIVER_DISCARD_IGNORE);
243 }
0 /*
1 * libvirt-gconfig-domain-disk-driver.h: libvirt disk driver configuration
2 *
3 * Copyright (C) 2011, 2013 Red Hat, Inc.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * Author: Christophe Fergeau <cfergeau@redhat.com>
20 */
21
22 #if !defined(__LIBVIRT_GCONFIG_H__) && !defined(LIBVIRT_GCONFIG_BUILD)
23 #error "Only <libvirt-gconfig/libvirt-gconfig.h> can be included directly."
24 #endif
25
26 #ifndef __LIBVIRT_GCONFIG_DOMAIN_DISK_DRIVER_H__
27 #define __LIBVIRT_GCONFIG_DOMAIN_DISK_DRIVER_H__
28
29 G_BEGIN_DECLS
30
31 #define GVIR_CONFIG_TYPE_DOMAIN_DISK_DRIVER (gvir_config_domain_disk_driver_get_type ())
32 #define GVIR_CONFIG_DOMAIN_DISK_DRIVER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GVIR_CONFIG_TYPE_DOMAIN_DISK_DRIVER, GVirConfigDomainDiskDriver))
33 #define GVIR_CONFIG_DOMAIN_DISK_DRIVER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GVIR_CONFIG_TYPE_DOMAIN_DISK_DRIVER, GVirConfigDomainDiskDriverClass))
34 #define GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GVIR_CONFIG_TYPE_DOMAIN_DISK_DRIVER))
35 #define GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GVIR_CONFIG_TYPE_DOMAIN_DISK_DRIVER))
36 #define GVIR_CONFIG_DOMAIN_DISK_DRIVER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GVIR_CONFIG_TYPE_DOMAIN_DISK_DRIVER, GVirConfigDomainDiskDriverClass))
37
38 typedef struct _GVirConfigDomainDiskDriver GVirConfigDomainDiskDriver;
39 typedef struct _GVirConfigDomainDiskDriverPrivate GVirConfigDomainDiskDriverPrivate;
40 typedef struct _GVirConfigDomainDiskDriverClass GVirConfigDomainDiskDriverClass;
41
42 struct _GVirConfigDomainDiskDriver
43 {
44 GVirConfigObject parent;
45
46 GVirConfigDomainDiskDriverPrivate *priv;
47
48 /* Do not add fields to this struct */
49 };
50
51 struct _GVirConfigDomainDiskDriverClass
52 {
53 GVirConfigObjectClass parent_class;
54
55 gpointer padding[20];
56 };
57
58
59 typedef enum {
60 GVIR_CONFIG_DOMAIN_DISK_CACHE_DEFAULT,
61 GVIR_CONFIG_DOMAIN_DISK_CACHE_NONE,
62 GVIR_CONFIG_DOMAIN_DISK_CACHE_WRITETHROUGH,
63 GVIR_CONFIG_DOMAIN_DISK_CACHE_WRITEBACK,
64 GVIR_CONFIG_DOMAIN_DISK_CACHE_DIRECTSYNC,
65 GVIR_CONFIG_DOMAIN_DISK_CACHE_UNSAFE
66 } GVirConfigDomainDiskCacheType;
67
68
69 typedef enum {
70 GVIR_CONFIG_DOMAIN_DISK_FORMAT_RAW,
71 GVIR_CONFIG_DOMAIN_DISK_FORMAT_DIR,
72 GVIR_CONFIG_DOMAIN_DISK_FORMAT_BOCHS,
73 GVIR_CONFIG_DOMAIN_DISK_FORMAT_CLOOP,
74 GVIR_CONFIG_DOMAIN_DISK_FORMAT_COW,
75 GVIR_CONFIG_DOMAIN_DISK_FORMAT_DMG,
76 GVIR_CONFIG_DOMAIN_DISK_FORMAT_ISO,
77 GVIR_CONFIG_DOMAIN_DISK_FORMAT_QCOW,
78 GVIR_CONFIG_DOMAIN_DISK_FORMAT_QCOW2,
79 GVIR_CONFIG_DOMAIN_DISK_FORMAT_QED,
80 GVIR_CONFIG_DOMAIN_DISK_FORMAT_VMDK,
81 GVIR_CONFIG_DOMAIN_DISK_FORMAT_VPC,
82 GVIR_CONFIG_DOMAIN_DISK_FORMAT_FAT,
83 GVIR_CONFIG_DOMAIN_DISK_FORMAT_VHD,
84 } GVirConfigDomainDiskFormat;
85
86
87 typedef enum {
88 GVIR_CONFIG_DOMAIN_DISK_DRIVER_ERROR_POLICY_STOP,
89 GVIR_CONFIG_DOMAIN_DISK_DRIVER_ERROR_POLICY_REPORT,
90 GVIR_CONFIG_DOMAIN_DISK_DRIVER_ERROR_POLICY_IGNORE,
91 GVIR_CONFIG_DOMAIN_DISK_DRIVER_ERROR_POLICY_ENOSPACE
92 } GVirConfigDomainDiskDriverErrorPolicy;
93
94
95 typedef enum {
96 GVIR_CONFIG_DOMAIN_DISK_DRIVER_IO_POLICY_THREADS,
97 GVIR_CONFIG_DOMAIN_DISK_DRIVER_IO_POLICY_NATIVE
98 } GVirConfigDomainDiskDriverIoPolicy;
99
100
101 typedef enum {
102 GVIR_CONFIG_DOMAIN_DISK_DRIVER_DISCARD_UNMAP,
103 GVIR_CONFIG_DOMAIN_DISK_DRIVER_DISCARD_IGNORE
104 } GVirConfigDomainDiskDriverDiscard;
105
106
107 GType gvir_config_domain_disk_driver_get_type(void);
108
109 GVirConfigDomainDiskDriver *gvir_config_domain_disk_driver_new(void);
110 GVirConfigDomainDiskDriver *gvir_config_domain_disk_driver_new_from_xml(const gchar *xml,
111 GError **error);
112
113 void gvir_config_domain_disk_driver_set_cache(GVirConfigDomainDiskDriver *driver,
114 GVirConfigDomainDiskCacheType cache_type);
115 GVirConfigDomainDiskCacheType gvir_config_domain_disk_driver_get_cache(GVirConfigDomainDiskDriver *driver);
116
117 void gvir_config_domain_disk_driver_set_name(GVirConfigDomainDiskDriver *driver,
118 const char *name);
119 const char *gvir_config_domain_disk_driver_get_name(GVirConfigDomainDiskDriver *driver);
120
121 void gvir_config_domain_disk_driver_set_error_policy(GVirConfigDomainDiskDriver *driver,
122 GVirConfigDomainDiskDriverErrorPolicy policy);
123 GVirConfigDomainDiskDriverErrorPolicy gvir_config_domain_disk_driver_get_error_policy(GVirConfigDomainDiskDriver *driver);
124
125 void gvir_config_domain_disk_driver_set_format(GVirConfigDomainDiskDriver *driver,
126 GVirConfigDomainDiskFormat format);
127 GVirConfigDomainDiskFormat gvir_config_domain_disk_driver_get_format(GVirConfigDomainDiskDriver *driver);
128
129 void gvir_config_domain_disk_driver_set_io_policy(GVirConfigDomainDiskDriver *driver,
130 GVirConfigDomainDiskDriverIoPolicy policy);
131 GVirConfigDomainDiskDriverIoPolicy gvir_config_domain_disk_driver_get_io_policy(GVirConfigDomainDiskDriver *driver);
132
133 void gvir_config_domain_disk_driver_set_copy_on_read(GVirConfigDomainDiskDriver *driver,
134 gboolean copy_on_read);
135 gboolean gvir_config_domain_disk_driver_get_copy_on_read(GVirConfigDomainDiskDriver *driver);
136
137 void gvir_config_domain_disk_driver_set_discard(GVirConfigDomainDiskDriver *driver,
138 GVirConfigDomainDiskDriverDiscard discard);
139 GVirConfigDomainDiskDriverDiscard gvir_config_domain_disk_driver_get_discard(GVirConfigDomainDiskDriver *driver);
140
141 G_END_DECLS
142
143 #endif /* __LIBVIRT_GCONFIG_DOMAIN_DISK_DRIVER_H__ */
352352 GVIR_CONFIG_DOMAIN_DISK_CACHE_DEFAULT);
353353 }
354354
355
355356 GVirConfigDomainDiskBus
356357 gvir_config_domain_disk_get_target_bus(GVirConfigDomainDisk *disk)
357358 {
367368 GVIR_CONFIG_DOMAIN_DISK_BUS_IDE);
368369 }
369370
371
370372 const char *
371373 gvir_config_domain_disk_get_target_dev(GVirConfigDomainDisk *disk)
372374 {
375377 return gvir_config_object_get_attribute(GVIR_CONFIG_OBJECT(disk),
376378 "target", "dev");
377379 }
380
378381
379382 void
380383 gvir_config_domain_disk_set_readonly(GVirConfigDomainDisk *disk,
386389 } else
387390 gvir_config_object_delete_child(GVIR_CONFIG_OBJECT(disk), "readonly", NULL);
388391 }
392
393
394 /**
395 * gvir_config_domain_disk_set_driver:
396 * @disk: a #GVirConfigDomainDisk
397 * @driver: (allow-none): a #GVirConfigDomainDiskDriver
398 *
399 * Uses @driver as the driver configuration for @disk.
400 */
401 void gvir_config_domain_disk_set_driver(GVirConfigDomainDisk *disk,
402 GVirConfigDomainDiskDriver *driver)
403 {
404 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_DISK(disk));
405 g_return_if_fail(driver == NULL || GVIR_CONFIG_IS_DOMAIN_DISK_DRIVER(driver));
406
407 gvir_config_object_attach_replace(GVIR_CONFIG_OBJECT(disk),
408 "driver",
409 GVIR_CONFIG_OBJECT(driver));
410 }
411
412
413 /**
414 * gvir_config_domain_disk_get_driver:
415 * @disk: a #GVirConfigDomainDisk
416 *
417 * Gets the driver configuration for @disk.
418 *
419 * Returns: (transfer full): A #GVirConfigDomainDiskDriver. The returned
420 * object should be unreffed with g_object_unref() when no longer needed.
421 */
422 GVirConfigDomainDiskDriver *gvir_config_domain_disk_get_driver(GVirConfigDomainDisk *disk)
423 {
424 GVirConfigObject *object;
425
426 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_DISK(disk), NULL);
427
428 object = gvir_config_object_get_child_with_type(GVIR_CONFIG_OBJECT(disk),
429 "driver",
430 GVIR_CONFIG_TYPE_DOMAIN_DISK_DRIVER);
431
432 return GVIR_CONFIG_DOMAIN_DISK_DRIVER(object);
433 }
2727 #define __LIBVIRT_GCONFIG_DOMAIN_DISK_H__
2828
2929 G_BEGIN_DECLS
30
31 #include <libvirt-gconfig/libvirt-gconfig-domain-disk-driver.h>
3032
3133 #define GVIR_CONFIG_TYPE_DOMAIN_DISK (gvir_config_domain_disk_get_type ())
3234 #define GVIR_CONFIG_DOMAIN_DISK(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GVIR_CONFIG_TYPE_DOMAIN_DISK, GVirConfigDomainDisk))
7476 } GVirConfigDomainDiskBus;
7577
7678 typedef enum {
77 GVIR_CONFIG_DOMAIN_DISK_CACHE_DEFAULT,
78 GVIR_CONFIG_DOMAIN_DISK_CACHE_NONE,
79 GVIR_CONFIG_DOMAIN_DISK_CACHE_WRITETHROUGH,
80 GVIR_CONFIG_DOMAIN_DISK_CACHE_WRITEBACK,
81 GVIR_CONFIG_DOMAIN_DISK_CACHE_DIRECTSYNC,
82 GVIR_CONFIG_DOMAIN_DISK_CACHE_UNSAFE
83 } GVirConfigDomainDiskCacheType;
84
85 typedef enum {
8679 GVIR_CONFIG_DOMAIN_DISK_GUEST_DEVICE_DISK,
8780 GVIR_CONFIG_DOMAIN_DISK_GUEST_DEVICE_FLOPPY,
8881 GVIR_CONFIG_DOMAIN_DISK_GUEST_DEVICE_CDROM
9992 GVIR_CONFIG_DOMAIN_DISK_STARTUP_POLICY_REQUISITE,
10093 GVIR_CONFIG_DOMAIN_DISK_STARTUP_POLICY_OPTIONAL
10194 } GVirConfigDomainDiskStartupPolicy;
102
103 typedef enum {
104 GVIR_CONFIG_DOMAIN_DISK_FORMAT_RAW,
105 GVIR_CONFIG_DOMAIN_DISK_FORMAT_DIR,
106 GVIR_CONFIG_DOMAIN_DISK_FORMAT_BOCHS,
107 GVIR_CONFIG_DOMAIN_DISK_FORMAT_CLOOP,
108 GVIR_CONFIG_DOMAIN_DISK_FORMAT_COW,
109 GVIR_CONFIG_DOMAIN_DISK_FORMAT_DMG,
110 GVIR_CONFIG_DOMAIN_DISK_FORMAT_ISO,
111 GVIR_CONFIG_DOMAIN_DISK_FORMAT_QCOW,
112 GVIR_CONFIG_DOMAIN_DISK_FORMAT_QCOW2,
113 GVIR_CONFIG_DOMAIN_DISK_FORMAT_QED,
114 GVIR_CONFIG_DOMAIN_DISK_FORMAT_VMDK,
115 GVIR_CONFIG_DOMAIN_DISK_FORMAT_VPC,
116 GVIR_CONFIG_DOMAIN_DISK_FORMAT_FAT,
117 GVIR_CONFIG_DOMAIN_DISK_FORMAT_VHD,
118 } GVirConfigDomainDiskFormat;
11995
12096 /* backward compatibility */
12197 #define GVIR_CONFIG_DOMAIN_DISK_FORMAT_AIO GVIR_CONFIG_DOMAIN_DISK_FORMAT_RAW;
136112 GVirConfigDomainDiskStartupPolicy policy);
137113 void gvir_config_domain_disk_set_source(GVirConfigDomainDisk *disk,
138114 const char *source);
115 G_DEPRECATED_FOR(gvir_config_domain_disk_driver_set_cache)
139116 void gvir_config_domain_disk_set_driver_cache(GVirConfigDomainDisk *disk,
140117 GVirConfigDomainDiskCacheType cache_type);
118 G_DEPRECATED_FOR(gvir_config_domain_disk_driver_set_name)
141119 void gvir_config_domain_disk_set_driver_name(GVirConfigDomainDisk *disk,
142120 const char *driver_name);
143 G_DEPRECATED_FOR(gvir_config_domain_disk_set_driver_format)
121 G_DEPRECATED_FOR(gvir_config_domain_disk_driver_set_format)
144122 void gvir_config_domain_disk_set_driver_type(GVirConfigDomainDisk *disk,
145123 const char *driver_type);
124 G_DEPRECATED_FOR(gvir_config_domain_disk_driver_set_format)
146125 void gvir_config_domain_disk_set_driver_format(GVirConfigDomainDisk *disk,
147126 GVirConfigDomainDiskFormat format);
148127 void gvir_config_domain_disk_set_target_bus(GVirConfigDomainDisk *disk,
149128 GVirConfigDomainDiskBus bus);
150129 void gvir_config_domain_disk_set_target_dev(GVirConfigDomainDisk *disk,
151130 const char *dev);
131 void gvir_config_domain_disk_set_driver(GVirConfigDomainDisk *disk,
132 GVirConfigDomainDiskDriver *driver);
133 GVirConfigDomainDiskDriver *gvir_config_domain_disk_get_driver(GVirConfigDomainDisk *disk);
152134
153135 GVirConfigDomainDiskType gvir_config_domain_disk_get_disk_type(GVirConfigDomainDisk *disk);
154136 GVirConfigDomainDiskGuestDeviceType gvir_config_domain_disk_get_guest_device_type(GVirConfigDomainDisk *disk);
155137 GVirConfigDomainDiskSnapshotType gvir_config_domain_disk_get_snapshot_type(GVirConfigDomainDisk *disk);
156138 GVirConfigDomainDiskStartupPolicy gvir_config_domain_disk_get_startup_policy(GVirConfigDomainDisk *disk);
157139 const char *gvir_config_domain_disk_get_source(GVirConfigDomainDisk *disk);
140 G_DEPRECATED_FOR(gvir_config_domain_disk_driver_get_cache)
158141 GVirConfigDomainDiskCacheType gvir_config_domain_disk_get_driver_cache(GVirConfigDomainDisk *disk);
142 G_DEPRECATED_FOR(gvir_config_domain_disk_driver_get_name)
159143 const char *gvir_config_domain_disk_get_driver_name(GVirConfigDomainDisk *disk);
160 G_DEPRECATED_FOR(gvir_config_domain_disk_get_driver_format)
144 G_DEPRECATED_FOR(gvir_config_domain_disk_driver_get_format)
161145 const char *gvir_config_domain_disk_get_driver_type(GVirConfigDomainDisk *disk);
146 G_DEPRECATED_FOR(gvir_config_domain_disk_driver_get_format)
162147 GVirConfigDomainDiskFormat gvir_config_domain_disk_get_driver_format(GVirConfigDomainDisk *disk);
163148 GVirConfigDomainDiskBus gvir_config_domain_disk_get_target_bus(GVirConfigDomainDisk *disk);
164149 const char *gvir_config_domain_disk_get_target_dev(GVirConfigDomainDisk *disk);
00 /*
11 * libvirt-gconfig-domain-graphics-desktop.c: libvirt domain desktop configuration
22 *
3 * Copyright (C) 2011 Red Hat, Inc.
3 * Copyright (C) 2011, 2014 Red Hat, Inc.
44 *
55 * This library is free software; you can redistribute it and/or
66 * modify it under the terms of the GNU Lesser General Public
8484 NULL);
8585 }
8686
87
88 const gchar *gvir_config_domain_graphics_desktop_get_display(GVirConfigDomainGraphicsDesktop *graphics)
89 {
90 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_GRAPHICS_DESKTOP(graphics), NULL);
91
92 return gvir_config_object_get_attribute(GVIR_CONFIG_OBJECT(graphics),
93 NULL,
94 "display");
95 }
96
97
8798 void gvir_config_domain_graphics_desktop_set_fullscreen(GVirConfigDomainGraphicsDesktop *graphics,
8899 gboolean fullscreen)
89100 {
95106 fullscreen,
96107 NULL);
97108 }
109
110
111 gboolean gvir_config_domain_graphics_desktop_get_fullscreen(GVirConfigDomainGraphicsDesktop *graphics)
112 {
113 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_GRAPHICS_DESKTOP(graphics), FALSE);
114
115 return gvir_config_object_get_attribute_boolean(GVIR_CONFIG_OBJECT(graphics),
116 NULL,
117 "fullscreen",
118 FALSE);
119 }
00 /*
11 * libvirt-gconfig-domain-graphics-desktop.h: libvirt domain desktop configuration
22 *
3 * Copyright (C) 2011 Red Hat, Inc.
3 * Copyright (C) 2011, 2014 Red Hat, Inc.
44 *
55 * This library is free software; you can redistribute it and/or
66 * modify it under the terms of the GNU Lesser General Public
6060 GVirConfigDomainGraphicsDesktop *gvir_config_domain_graphics_desktop_new(void);
6161 GVirConfigDomainGraphicsDesktop *gvir_config_domain_graphics_desktop_new_from_xml(const gchar *xml,
6262 GError **error);
63 const gchar *gvir_config_domain_graphics_desktop_get_display(GVirConfigDomainGraphicsDesktop *graphics);
6364 void gvir_config_domain_graphics_desktop_set_display(GVirConfigDomainGraphicsDesktop *graphics,
6465 const gchar *disp);
66 gboolean gvir_config_domain_graphics_desktop_get_fullscreen(GVirConfigDomainGraphicsDesktop *graphics);
6567 void gvir_config_domain_graphics_desktop_set_fullscreen(GVirConfigDomainGraphicsDesktop *graphics,
6668 gboolean fullscreen);
6769
00 /*
11 * libvirt-gconfig-domain-graphics-rdp.c: libvirt domain RDP configuration
22 *
3 * Copyright (C) 2011 Red Hat, Inc.
3 * Copyright (C) 2011, 2014 Red Hat, Inc.
44 *
55 * This library is free software; you can redistribute it and/or
66 * modify it under the terms of the GNU Lesser General Public
116116 }
117117
118118
119 gboolean gvir_config_domain_graphics_rdp_get_replace_user(GVirConfigDomainGraphicsRdp *graphics)
120 {
121 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_GRAPHICS_RDP(graphics), FALSE);
122
123 return gvir_config_object_get_attribute_boolean(GVIR_CONFIG_OBJECT(graphics),
124 NULL,
125 "replaceUser",
126 FALSE);
127 }
128
129
119130 void gvir_config_domain_graphics_rdp_set_multi_user(GVirConfigDomainGraphicsRdp *graphics,
120131 gboolean multi_user)
121132 {
127138 multi_user,
128139 NULL);
129140 }
141
142
143 gboolean gvir_config_domain_graphics_rdp_get_multi_user(GVirConfigDomainGraphicsRdp *graphics)
144 {
145 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_GRAPHICS_RDP(graphics), FALSE);
146
147 return gvir_config_object_get_attribute_boolean(GVIR_CONFIG_OBJECT(graphics),
148 NULL,
149 "multiUser",
150 FALSE);
151 }
00 /*
11 * libvirt-gconfig-domain-graphics-rdp.h: libvirt domain RDP graphics configuration
22 *
3 * Copyright (C) 2011 Red Hat, Inc.
3 * Copyright (C) 2011, 2014 Red Hat, Inc.
44 *
55 * This library is free software; you can redistribute it and/or
66 * modify it under the terms of the GNU Lesser General Public
6868 void gvir_config_domain_graphics_rdp_set_port(GVirConfigDomainGraphicsRdp *graphics,
6969 int port);
7070
71 gboolean gvir_config_domain_graphics_rdp_get_multi_user(GVirConfigDomainGraphicsRdp *graphics);
7172 void gvir_config_domain_graphics_rdp_set_multi_user(GVirConfigDomainGraphicsRdp *graphics,
7273 gboolean multi_user);
74 gboolean gvir_config_domain_graphics_rdp_get_replace_user(GVirConfigDomainGraphicsRdp *graphics);
7375 void gvir_config_domain_graphics_rdp_set_replace_user(GVirConfigDomainGraphicsRdp *graphics,
7476 gboolean replace_user);
7577
6868 return GVIR_CONFIG_DOMAIN_INPUT(object);
6969 }
7070
71
72 GVirConfigDomainInputDeviceType gvir_config_domain_input_get_device_type(GVirConfigDomainInput *input)
73 {
74 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_INPUT(input),
75 GVIR_CONFIG_DOMAIN_INPUT_DEVICE_MOUSE);
76 return gvir_config_object_get_attribute_genum(GVIR_CONFIG_OBJECT(input),
77 NULL, "type",
78 GVIR_CONFIG_TYPE_DOMAIN_INPUT_DEVICE_TYPE,
79 GVIR_CONFIG_DOMAIN_INPUT_DEVICE_MOUSE);
80 }
81
82
7183 void gvir_config_domain_input_set_device_type(GVirConfigDomainInput *input,
7284 GVirConfigDomainInputDeviceType type)
7385 {
7890 type, NULL);
7991 }
8092
93
94 GVirConfigDomainInputBus gvir_config_domain_input_get_bus(GVirConfigDomainInput *input)
95 {
96 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_INPUT(input),
97 GVIR_CONFIG_DOMAIN_INPUT_BUS_PS2);
98 return gvir_config_object_get_attribute_genum(GVIR_CONFIG_OBJECT(input),
99 NULL, "bus",
100 GVIR_CONFIG_TYPE_DOMAIN_INPUT_BUS,
101 GVIR_CONFIG_DOMAIN_INPUT_BUS_PS2);
102 }
103
104
81105 void gvir_config_domain_input_set_bus(GVirConfigDomainInput *input,
82106 GVirConfigDomainInputBus bus)
83107 {
7171 GVirConfigDomainInput *gvir_config_domain_input_new(void);
7272 GVirConfigDomainInput *gvir_config_domain_input_new_from_xml(const gchar *xml,
7373 GError **error);
74 GVirConfigDomainInputDeviceType gvir_config_domain_input_get_device_type(GVirConfigDomainInput *input);
7475 void gvir_config_domain_input_set_device_type(GVirConfigDomainInput *input,
7576 GVirConfigDomainInputDeviceType type);
77 GVirConfigDomainInputBus gvir_config_domain_input_get_bus(GVirConfigDomainInput *input);
7678 void gvir_config_domain_input_set_bus(GVirConfigDomainInput *input,
7779 GVirConfigDomainInputBus bus);
7880
0 /*
1 * libvirt-gconfig-domain-interface-filterref-parameter.c:
2 * libvirt filterref parameters
3 *
4 * Copyright (C) 2013 Red Hat, Inc.
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library. If not, see
18 * <http://www.gnu.org/licenses/>.
19 *
20 * Authors: Ian Main <imain@redhat.com>
21 * Daniel P. Berrange <berrange@redhat.com>
22 */
23
24 #include <config.h>
25
26 #include "libvirt-gconfig/libvirt-gconfig.h"
27 #include "libvirt-gconfig/libvirt-gconfig-private.h"
28
29 #define GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF_PARAMETER_GET_PRIVATE(obj) \
30 (G_TYPE_INSTANCE_GET_PRIVATE((obj), GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF_PARAMETER, GVirConfigDomainInterfaceFilterrefParameterPrivate))
31
32 struct _GVirConfigDomainInterfaceFilterrefParameterPrivate
33 {
34 gboolean unused;
35 };
36
37 G_DEFINE_TYPE(GVirConfigDomainInterfaceFilterrefParameter, gvir_config_domain_interface_filterref_parameter, GVIR_CONFIG_TYPE_OBJECT);
38
39 static void gvir_config_domain_interface_filterref_parameter_class_init(GVirConfigDomainInterfaceFilterrefParameterClass *klass)
40 {
41 g_type_class_add_private(klass, sizeof(GVirConfigDomainInterfaceFilterrefParameterPrivate));
42 }
43
44 static void gvir_config_domain_interface_filterref_parameter_init(GVirConfigDomainInterfaceFilterrefParameter *parameter)
45 {
46 g_debug("Init GVirConfigDomainInterfaceFilterrefParameter=%p", parameter);
47
48 parameter->priv = GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF_PARAMETER_GET_PRIVATE(parameter);
49 }
50
51 GVirConfigDomainInterfaceFilterrefParameter *gvir_config_domain_interface_filterref_parameter_new(void)
52 {
53 GVirConfigObject *object;
54
55 object = gvir_config_object_new(GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF_PARAMETER,
56 "parameter", NULL);
57 return GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF_PARAMETER(object);
58 }
59
60 GVirConfigDomainInterfaceFilterrefParameter *
61 gvir_config_domain_interface_filterref_parameter_new_from_xml(const gchar *xml, GError **error)
62 {
63 GVirConfigObject *object;
64
65 object = gvir_config_object_new_from_xml(GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF_PARAMETER,
66 "parameter",
67 NULL,
68 xml,
69 error);
70
71 return GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF_PARAMETER(object);
72 }
73
74 void gvir_config_domain_interface_filterref_parameter_set_name(GVirConfigDomainInterfaceFilterrefParameter *parameter, const gchar *name)
75 {
76 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_INTERFACE_FILTERREF_PARAMETER(parameter));
77 gvir_config_object_set_attribute(GVIR_CONFIG_OBJECT(parameter),
78 "name", name, NULL);
79 }
80
81 void gvir_config_domain_interface_filterref_parameter_set_value(GVirConfigDomainInterfaceFilterrefParameter *parameter, const gchar *value)
82 {
83 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_INTERFACE_FILTERREF_PARAMETER(parameter));
84 gvir_config_object_set_attribute(GVIR_CONFIG_OBJECT(parameter),
85 "value", value, NULL);
86 }
87
88 const gchar *gvir_config_domain_interface_filterref_parameter_get_name(GVirConfigDomainInterfaceFilterrefParameter *parameter)
89 {
90 return gvir_config_object_get_attribute(GVIR_CONFIG_OBJECT(parameter),
91 NULL,
92 "name");
93 }
94 const gchar *gvir_config_domain_interface_filterref_parameter_get_value(GVirConfigDomainInterfaceFilterrefParameter *parameter)
95 {
96 return gvir_config_object_get_attribute(GVIR_CONFIG_OBJECT(parameter),
97 NULL,
98 "value");
99 }
0 /*
1 * libvirt-gconfig-domain-interface-filterref-parameter.h:
2 * libvirt filterref parameters
3 *
4 * Copyright (C) 2013 Red Hat, Inc.
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library. If not, see
18 * <http://www.gnu.org/licenses/>.
19 *
20 * Authors: Ian Main <imain@redhat.com>
21 * Daniel P. Berrange <berrange@redhat.com>
22 */
23
24 #if !defined(__LIBVIRT_GCONFIG_H__) && !defined(LIBVIRT_GCONFIG_BUILD)
25 #error "Only <libvirt-gconfig/libvirt-gconfig.h> can be included directly."
26 #endif
27
28 #ifndef __LIBVIRT_GCONFIG_DOMAIN_INTERFACE_FILTERREF_PARAMETER_H__
29 #define __LIBVIRT_GCONFIG_DOMAIN_INTERFACE_FILTERREF_PARAMETER_H__
30
31 G_BEGIN_DECLS
32
33 #define GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF_PARAMETER (gvir_config_domain_interface_filterref_parameter_get_type ())
34 #define GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF_PARAMETER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF_PARAMETER, GVirConfigDomainInterfaceFilterrefParameter))
35 #define GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF_PARAMETER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF_PARAMETER, GVirConfigDomainInterfaceFilterrefParameterClass))
36 #define GVIR_CONFIG_IS_DOMAIN_INTERFACE_FILTERREF_PARAMETER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF_PARAMETER))
37 #define GVIR_CONFIG_IS_DOMAIN_INTERFACE_FILTERREF_PARAMETER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF_PARAMETER))
38 #define GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF_PARAMETER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF_PARAMETER, GVirConfigDomainInterfaceFilterrefParameterClass))
39
40 typedef struct _GVirConfigDomainInterfaceFilterrefParameter GVirConfigDomainInterfaceFilterrefParameter;
41 typedef struct _GVirConfigDomainInterfaceFilterrefParameterPrivate GVirConfigDomainInterfaceFilterrefParameterPrivate;
42 typedef struct _GVirConfigDomainInterfaceFilterrefParameterClass GVirConfigDomainInterfaceFilterrefParameterClass;
43
44 struct _GVirConfigDomainInterfaceFilterrefParameter
45 {
46 GVirConfigObject parent;
47
48 GVirConfigDomainInterfaceFilterrefParameterPrivate *priv;
49
50 /* Do not add fields to this struct */
51 };
52
53 struct _GVirConfigDomainInterfaceFilterrefParameterClass
54 {
55 GVirConfigObjectClass parent_class;
56
57 gpointer padding[20];
58 };
59
60 GType gvir_config_domain_interface_filterref_parameter_get_type(void);
61
62 GVirConfigDomainInterfaceFilterrefParameter *gvir_config_domain_interface_filterref_parameter_new(void);
63
64 GVirConfigDomainInterfaceFilterrefParameter *
65 gvir_config_domain_interface_filterref_parameter_new_from_xml(const gchar *xml, GError **error);
66
67 void gvir_config_domain_interface_filterref_parameter_set_name(GVirConfigDomainInterfaceFilterrefParameter *parameter, const gchar *name);
68 void gvir_config_domain_interface_filterref_parameter_set_value(GVirConfigDomainInterfaceFilterrefParameter *parameter, const gchar *value);
69 const gchar *gvir_config_domain_interface_filterref_parameter_get_name(GVirConfigDomainInterfaceFilterrefParameter *parameter);
70 const gchar *gvir_config_domain_interface_filterref_parameter_get_value(GVirConfigDomainInterfaceFilterrefParameter *parameter);
71
72 G_END_DECLS
73
74 #endif /* __LIBVIRT_GCONFIG_DOMAIN_INTERFACE_FILTERREF_PARAMETER_H__ */
0 /*
1 * libvirt-gconfig-domain-interface-network-filterref.c:
2 * libvirt filter reference config.
3 *
4 * Copyright (C) 2013 Red Hat, Inc.
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library. If not, see
18 * <http://www.gnu.org/licenses/>.
19 *
20 * Author: Ian Main <imain@redhat.com>
21 */
22
23 #include <config.h>
24
25 #include "libvirt-gconfig/libvirt-gconfig.h"
26 #include "libvirt-gconfig/libvirt-gconfig-private.h"
27
28 #define GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF_GET_PRIVATE(obj) \
29 (G_TYPE_INSTANCE_GET_PRIVATE((obj), GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF, GVirConfigDomainInterfaceFilterrefPrivate))
30
31 struct _GVirConfigDomainInterfaceFilterrefPrivate
32 {
33 gboolean unused;
34 };
35
36 G_DEFINE_TYPE(GVirConfigDomainInterfaceFilterref, gvir_config_domain_interface_filterref, GVIR_CONFIG_TYPE_OBJECT);
37
38 static void gvir_config_domain_interface_filterref_class_init(GVirConfigDomainInterfaceFilterrefClass *klass)
39 {
40 g_type_class_add_private(klass, sizeof(GVirConfigDomainInterfaceFilterrefPrivate));
41 }
42
43 static void gvir_config_domain_interface_filterref_init(GVirConfigDomainInterfaceFilterref *filterref)
44 {
45 g_debug("Init GVirConfigDomainInterfaceFilterref=%p", filterref);
46
47 filterref->priv = GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF_GET_PRIVATE(filterref);
48 }
49
50
51 GVirConfigDomainInterfaceFilterref *gvir_config_domain_interface_filterref_new(void)
52 {
53 GVirConfigObject *object;
54
55 object = gvir_config_object_new(GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF,
56 "filterref", NULL);
57 return GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF(object);
58 }
59
60 GVirConfigDomainInterfaceFilterref *gvir_config_domain_interface_filterref_new_from_xml(const gchar *xml,
61 GError **error)
62 {
63 GVirConfigObject *object;
64
65 object = gvir_config_object_new_from_xml(GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF,
66 "filterref", NULL, xml, error);
67 if (gvir_config_object_get_attribute(object, NULL, "filter") == NULL) {
68 g_object_unref(G_OBJECT(object));
69 return NULL;
70 }
71 return GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF(object);
72 }
73
74 void gvir_config_domain_interface_filterref_set_name(GVirConfigDomainInterfaceFilterref *filterref,
75 const char *filter)
76 {
77 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_INTERFACE_FILTERREF(filterref));
78
79 gvir_config_object_set_attribute(GVIR_CONFIG_OBJECT(filterref),
80 "filter", filter, NULL);
81 }
82
83 const char *gvir_config_domain_interface_filterref_get_name(GVirConfigDomainInterfaceFilterref *filterref)
84 {
85 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_INTERFACE_FILTERREF(filterref), NULL);
86 return gvir_config_object_get_attribute(GVIR_CONFIG_OBJECT(filterref),
87 NULL,
88 "filter");
89 }
90
91 void gvir_config_domain_interface_filterref_add_parameter(GVirConfigDomainInterfaceFilterref *filterref,
92 GVirConfigDomainInterfaceFilterrefParameter *parameter)
93 {
94 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_INTERFACE_FILTERREF(filterref));
95 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_INTERFACE_FILTERREF_PARAMETER(parameter));
96
97 gvir_config_object_attach_add(GVIR_CONFIG_OBJECT(filterref),
98 GVIR_CONFIG_OBJECT(parameter));
99 }
100
101 struct GetParameterData {
102 GVirConfigXmlDoc *doc;
103 GList *parameters;
104 };
105
106
107 static gboolean add_filterref_parameter(xmlNodePtr node, gpointer opaque)
108 {
109 struct GetParameterData* data = (struct GetParameterData*)opaque;
110 GVirConfigObject *parameter;
111
112 if (g_strcmp0((const gchar *)node->name, "parameter") != 0) {
113 g_debug("unexpected node %s", node->name);
114 return TRUE;
115 }
116
117 parameter = gvir_config_object_new_from_tree(GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF_PARAMETER,
118 data->doc, NULL, node);
119 if (parameter != NULL)
120 data->parameters = g_list_append(data->parameters, parameter);
121 else
122 g_debug("Failed to parse %s node", node->name);
123
124 return TRUE;
125 }
126
127 /**
128 * gvir_config_domain_interface_filterref_get_parameters:
129 * @filterref: a #GVirConfigDomainInterfaceFilterref
130 *
131 * Gets the list of parameters attached to @filterref. The returned list should be
132 * freed with g_list_free(), after its elements have been unreffed with
133 * g_object_unref().
134 *
135 * Returns: (element-type LibvirtGConfig.DomainInterfaceFilterrefParameter) (transfer full):
136 * a newly allocated #GList of #GVirConfigDomainInterfaceFilterrefParameter.
137 */
138 GList *gvir_config_domain_interface_filterref_get_parameters(GVirConfigDomainInterfaceFilterref *filterref)
139 {
140 struct GetParameterData data;
141
142 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_INTERFACE_FILTERREF(filterref), NULL);
143
144 g_object_get(G_OBJECT(filterref), "doc", &data.doc, NULL);
145 data.parameters = NULL;
146
147 gvir_config_object_foreach_child(GVIR_CONFIG_OBJECT(filterref),
148 NULL,
149 add_filterref_parameter,
150 &data);
151
152 if (data.doc != NULL) {
153 g_object_unref(G_OBJECT(data.doc));
154 }
155
156 return data.parameters;
157 }
0 /*
1 * libvirt-gconfig-domain-interface-network-filterref.h: libvirt filter reference config
2 *
3 * Copyright (C) 2013 Red Hat, Inc.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * Author: Ian Main <imain@redhat.com>
20 */
21
22 #if !defined(__LIBVIRT_GCONFIG_H__) && !defined(LIBVIRT_GCONFIG_BUILD)
23 #error "Only <libvirt-gconfig/libvirt-gconfig.h> can be included directly."
24 #endif
25
26 #include <libvirt-gconfig/libvirt-gconfig-domain-interface-filterref-parameter.h>
27
28 #ifndef __LIBVIRT_GCONFIG_DOMAIN_INTERFACE_FILTERREF_H__
29 #define __LIBVIRT_GCONFIG_DOMAIN_INTERFACE_FILTERREF_H__
30
31 G_BEGIN_DECLS
32
33 #define GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF (gvir_config_domain_interface_filterref_get_type ())
34 #define GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF, GVirConfigDomainInterfaceFilterref))
35 #define GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF, GVirConfigDomainInterfaceFilterrefClass))
36 #define GVIR_CONFIG_IS_DOMAIN_INTERFACE_FILTERREF(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF))
37 #define GVIR_CONFIG_IS_DOMAIN_INTERFACE_FILTERREF_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF))
38 #define GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF, GVirConfigDomainInterfaceFilterrefClass))
39
40 typedef struct _GVirConfigDomainInterfaceFilterref GVirConfigDomainInterfaceFilterref;
41 typedef struct _GVirConfigDomainInterfaceFilterrefPrivate GVirConfigDomainInterfaceFilterrefPrivate;
42 typedef struct _GVirConfigDomainInterfaceFilterrefClass GVirConfigDomainInterfaceFilterrefClass;
43
44 struct _GVirConfigDomainInterfaceFilterref
45 {
46 GVirConfigObject parent;
47
48 GVirConfigDomainInterfaceFilterrefPrivate *priv;
49
50 /* Do not add fields to this struct */
51 };
52
53 struct _GVirConfigDomainInterfaceFilterrefClass
54 {
55 GVirConfigObjectClass parent_class;
56
57 gpointer padding[20];
58 };
59
60 GType gvir_config_domain_interface_filterref_get_type(void);
61
62 GVirConfigDomainInterfaceFilterref *gvir_config_domain_interface_filterref_new(void);
63
64 GVirConfigDomainInterfaceFilterref *
65 gvir_config_domain_interface_filterref_new_from_xml(const gchar *xml, GError **error);
66
67 void gvir_config_domain_interface_filterref_set_name(GVirConfigDomainInterfaceFilterref *filterref,
68 const char *filter);
69 const char *gvir_config_domain_interface_filterref_get_name(GVirConfigDomainInterfaceFilterref *filterref);
70
71 void gvir_config_domain_interface_filterref_add_parameter(GVirConfigDomainInterfaceFilterref *filterref,
72 GVirConfigDomainInterfaceFilterrefParameter *parameter);
73 GList *gvir_config_domain_interface_filterref_get_parameters(GVirConfigDomainInterfaceFilterref *filterref);
74
75 G_END_DECLS
76
77 #endif /* __LIBVIRT_GCONFIG_DOMAIN_INTERFACE_FILTERREF_H__ */
130130 "model", "type");
131131 }
132132
133 /**
134 * gvir_config_domain_interface_set_filterref:
135 * @interface: a #GVirConfigDomainInterface
136 * @filterref: (allow-none): the filterref to set
137 */
138 void gvir_config_domain_interface_set_filterref(GVirConfigDomainInterface *interface,
139 GVirConfigDomainInterfaceFilterref *filterref)
140 {
141 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_INTERFACE(interface));
142 g_return_if_fail(filterref == NULL || GVIR_CONFIG_IS_DOMAIN_INTERFACE_FILTERREF(filterref));
143
144 gvir_config_object_attach_replace(GVIR_CONFIG_OBJECT(interface),
145 "filterref",
146 GVIR_CONFIG_OBJECT(filterref));
147 }
148
149 /**
150 * gvir_config_domain_interface_get_filterref:
151 * @interface: a #GVirConfigDomainInterface
152 *
153 * Gets the filterref associated with the @interface
154 *
155 * Returns: (transfer full): A #GVirConfigDomainInterfaceFilterref. The returned
156 * object should be unreffed with g_object_unref() when no longer needed.
157 */
158
159 GVirConfigDomainInterfaceFilterref *gvir_config_domain_interface_get_filterref(GVirConfigDomainInterface *interface)
160 {
161 GVirConfigObject *object;
162
163 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_INTERFACE(interface), NULL);
164
165 object = gvir_config_object_get_child_with_type
166 (GVIR_CONFIG_OBJECT(interface),
167 "filterref",
168 GVIR_CONFIG_TYPE_DOMAIN_INTERFACE_FILTERREF);
169
170 return GVIR_CONFIG_DOMAIN_INTERFACE_FILTERREF(object);
171 }
172
173
133174 G_GNUC_INTERNAL GVirConfigDomainDevice *
134175 gvir_config_domain_interface_new_from_tree(GVirConfigXmlDoc *doc,
135176 xmlNodePtr tree)
2525
2626 #ifndef __LIBVIRT_GCONFIG_DOMAIN_INTERFACE_H__
2727 #define __LIBVIRT_GCONFIG_DOMAIN_INTERFACE_H__
28
29 #include <libvirt-gconfig/libvirt-gconfig-domain-interface-filterref.h>
2830
2931 G_BEGIN_DECLS
3032
7577 GVirConfigDomainInterfaceLinkState gvir_config_domain_interface_get_link_state(GVirConfigDomainInterface *interface);
7678 const char *gvir_config_domain_interface_get_mac(GVirConfigDomainInterface *interface);
7779 const char *gvir_config_domain_interface_get_model(GVirConfigDomainInterface *interface);
80 void gvir_config_domain_interface_set_filterref(GVirConfigDomainInterface *interface,
81 GVirConfigDomainInterfaceFilterref *filterref);
82 GVirConfigDomainInterfaceFilterref *gvir_config_domain_interface_get_filterref(GVirConfigDomainInterface *interface);
7883
7984 G_END_DECLS
8085
266266 * @os: a #GVirConfigDomainOs
267267 *
268268 * Gets the list of devices attached to @os. The returned list should be
269 * freed with g_list_free(), after its elements have been unreffed with
270 * g_object_unref().
271 *
272 * Returns: (element-type LibvirtGConfig.DomainOsBootDevice) (transfer full):
269 * freed with g_list_free().
270 *
271 * Returns: (element-type LibvirtGConfig.DomainOsBootDevice) (transfer container):
273272 * a newly allocated #GList of #GVirConfigDomainOsBootDevice.
274273 */
275274 GList *gvir_config_domain_os_get_boot_devices(GVirConfigDomainOs *os)
0 /*
1 * libvirt-gconfig-domain-timer-hpet.c: libvirt domain HPET timer configuration
2 *
3 * Copyright (C) 2012, 2014 Red Hat, Inc.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * Author: Christophe Fergeau <cfergeau@redhat.com>
20 */
21
22 #include <config.h>
23
24 #include "libvirt-gconfig/libvirt-gconfig.h"
25 #include "libvirt-gconfig/libvirt-gconfig-private.h"
26
27 #define GVIR_CONFIG_DOMAIN_TIMER_HPET_GET_PRIVATE(obj) \
28 (G_TYPE_INSTANCE_GET_PRIVATE((obj), GVIR_CONFIG_TYPE_DOMAIN_TIMER_HPET, GVirConfigDomainTimerHpetPrivate))
29
30 struct _GVirConfigDomainTimerHpetPrivate
31 {
32 gboolean unused;
33 };
34
35 G_DEFINE_TYPE(GVirConfigDomainTimerHpet, gvir_config_domain_timer_hpet, GVIR_CONFIG_TYPE_DOMAIN_TIMER);
36
37
38 static void gvir_config_domain_timer_hpet_class_init(GVirConfigDomainTimerHpetClass *klass)
39 {
40 g_type_class_add_private(klass, sizeof(GVirConfigDomainTimerHpetPrivate));
41 }
42
43
44 static void gvir_config_domain_timer_hpet_init(GVirConfigDomainTimerHpet *timer)
45 {
46 g_debug("Init GVirConfigDomainTimerHpet=%p", timer);
47
48 timer->priv = GVIR_CONFIG_DOMAIN_TIMER_HPET_GET_PRIVATE(timer);
49 }
50
51
52 GVirConfigDomainTimerHpet *gvir_config_domain_timer_hpet_new(void)
53 {
54 GVirConfigObject *object;
55
56 object = gvir_config_object_new(GVIR_CONFIG_TYPE_DOMAIN_TIMER_HPET,
57 "timer", NULL);
58 gvir_config_object_set_attribute(object, "name", "hpet", NULL);
59 return GVIR_CONFIG_DOMAIN_TIMER_HPET(object);
60 }
61
62 GVirConfigDomainTimerHpet *gvir_config_domain_timer_hpet_new_from_xml(const gchar *xml,
63 GError **error)
64 {
65 GVirConfigObject *object;
66
67 object = gvir_config_object_new_from_xml(GVIR_CONFIG_TYPE_DOMAIN_TIMER_HPET,
68 "timer", NULL, xml, error);
69 if (g_strcmp0(gvir_config_object_get_attribute(object, NULL, "type"), "hpet") != 0) {
70 g_object_unref(G_OBJECT(object));
71 g_return_val_if_reached(NULL);
72 }
73 return GVIR_CONFIG_DOMAIN_TIMER_HPET(object);
74 }
0 /*
1 * libvirt-gconfig-domain-timer-hpet.h: libvirt domain HPET timer configuration
2 *
3 * Copyright (C) 2012, 2014 Red Hat, Inc.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * Author: Christophe Fergeau <cfergeau@redhat.com>
20 */
21
22 #if !defined(__LIBVIRT_GCONFIG_H__) && !defined(LIBVIRT_GCONFIG_BUILD)
23 #error "Only <libvirt-gconfig/libvirt-gconfig.h> can be included directly."
24 #endif
25
26 #ifndef __LIBVIRT_GCONFIG_DOMAIN_TIMER_HPET_H__
27 #define __LIBVIRT_GCONFIG_DOMAIN_TIMER_HPET_H__
28
29 G_BEGIN_DECLS
30
31 #define GVIR_CONFIG_TYPE_DOMAIN_TIMER_HPET (gvir_config_domain_timer_hpet_get_type ())
32 #define GVIR_CONFIG_DOMAIN_TIMER_HPET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GVIR_CONFIG_TYPE_DOMAIN_TIMER_HPET, GVirConfigDomainTimerHpet))
33 #define GVIR_CONFIG_DOMAIN_TIMER_HPET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GVIR_CONFIG_TYPE_DOMAIN_TIMER_HPET, GVirConfigDomainTimerHpetClass))
34 #define GVIR_CONFIG_IS_DOMAIN_TIMER_HPET(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GVIR_CONFIG_TYPE_DOMAIN_TIMER_HPET))
35 #define GVIR_CONFIG_IS_DOMAIN_TIMER_HPET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GVIR_CONFIG_TYPE_DOMAIN_TIMER_HPET))
36 #define GVIR_CONFIG_DOMAIN_TIMER_HPET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GVIR_CONFIG_TYPE_DOMAIN_TIMER_HPET, GVirConfigDomainTimerHpetClass))
37
38 typedef struct _GVirConfigDomainTimerHpet GVirConfigDomainTimerHpet;
39 typedef struct _GVirConfigDomainTimerHpetPrivate GVirConfigDomainTimerHpetPrivate;
40 typedef struct _GVirConfigDomainTimerHpetClass GVirConfigDomainTimerHpetClass;
41
42 struct _GVirConfigDomainTimerHpet
43 {
44 GVirConfigDomainTimer parent;
45
46 GVirConfigDomainTimerHpetPrivate *priv;
47
48 /* Do not add fields to this struct */
49 };
50
51 struct _GVirConfigDomainTimerHpetClass
52 {
53 GVirConfigDomainTimerClass parent_class;
54
55 gpointer padding[20];
56 };
57
58 GType gvir_config_domain_timer_hpet_get_type(void);
59
60 GVirConfigDomainTimerHpet *gvir_config_domain_timer_hpet_new(void);
61 GVirConfigDomainTimerHpet *gvir_config_domain_timer_hpet_new_from_xml(const gchar *xml,
62 GError **error);
63
64 G_END_DECLS
65
66 #endif /* __LIBVIRT_GCONFIG_DOMAIN_TIMER_HPET_H__ */
4141
4242 struct _GVirConfigDomainTimerPit
4343 {
44 GVirConfigObject parent;
44 GVirConfigDomainTimer parent;
4545
4646 GVirConfigDomainTimerPitPrivate *priv;
4747
5050
5151 struct _GVirConfigDomainTimerPitClass
5252 {
53 GVirConfigObjectClass parent_class;
53 GVirConfigDomainTimerClass parent_class;
5454
5555 gpointer padding[20];
5656 };
00 /*
11 * libvirt-gconfig-domain-timer.c: libvirt domain timer configuration
22 *
3 * Copyright (C) 2011 Red Hat, Inc.
3 * Copyright (C) 2011, 2014 Red Hat, Inc.
44 *
55 * This library is free software; you can redistribute it and/or
66 * modify it under the terms of the GNU Lesser General Public
7272 GVIR_CONFIG_TYPE_DOMAIN_TIMER_TICK_POLICY,
7373 GVIR_CONFIG_DOMAIN_TIMER_TICK_POLICY_DELAY);
7474 }
75
76
77 void gvir_config_domain_timer_set_present(GVirConfigDomainTimer *timer,
78 gboolean present)
79 {
80 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_TIMER(timer));
81
82 gvir_config_object_set_attribute_with_type(GVIR_CONFIG_OBJECT(timer),
83 "present",
84 G_TYPE_BOOLEAN,
85 present,
86 NULL);
87 }
88
89
90 gboolean gvir_config_domain_timer_get_present(GVirConfigDomainTimer *timer)
91 {
92 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_TIMER(timer), TRUE);
93
94 return gvir_config_object_get_attribute_boolean(GVIR_CONFIG_OBJECT(timer),
95 NULL,
96 "present",
97 TRUE);
98 }
00 /*
11 * libvirt-gconfig-domain-timer.h: libvirt domain timer configuration
22 *
3 * Copyright (C) 2011 Red Hat, Inc.
3 * Copyright (C) 2011, 2014 Red Hat, Inc.
44 *
55 * This library is free software; you can redistribute it and/or
66 * modify it under the terms of the GNU Lesser General Public
6666
6767 GVirConfigDomainTimerTickPolicy gvir_config_domain_timer_get_tick_policy(GVirConfigDomainTimer *timer);
6868 void gvir_config_domain_timer_set_tick_policy(GVirConfigDomainTimer *timer, GVirConfigDomainTimerTickPolicy policy);
69 gboolean gvir_config_domain_timer_get_present(GVirConfigDomainTimer *timer);
70 void gvir_config_domain_timer_set_present(GVirConfigDomainTimer *timer, gboolean present);
6971
7072 G_END_DECLS
7173
3838 enum {
3939 PROP_0,
4040 PROP_NAME,
41 PROP_UUID,
4142 PROP_TITLE,
4243 PROP_DESCRIPTION,
4344 PROP_MEMORY,
5758 case PROP_NAME:
5859 g_value_set_string(value, gvir_config_domain_get_name(domain));
5960 break;
61 case PROP_UUID:
62 g_value_set_string(value, gvir_config_domain_get_uuid(domain));
63 break;
6064 case PROP_TITLE:
6165 g_value_set_string(value, gvir_config_domain_get_title(domain));
6266 break;
9195 switch (prop_id) {
9296 case PROP_NAME:
9397 gvir_config_domain_set_name(domain, g_value_get_string(value));
98 break;
99 case PROP_UUID:
100 gvir_config_domain_set_uuid(domain, g_value_get_string(value));
94101 break;
95102 case PROP_TITLE:
96103 gvir_config_domain_set_title(domain, g_value_get_string(value));
130137 g_param_spec_string("name",
131138 "Name",
132139 "Domain Name",
140 NULL,
141 G_PARAM_READWRITE |
142 G_PARAM_STATIC_STRINGS));
143 g_object_class_install_property(object_class,
144 PROP_UUID,
145 g_param_spec_string("uuid",
146 "UUID",
147 "Domain UUID",
133148 NULL,
134149 G_PARAM_READWRITE |
135150 G_PARAM_STATIC_STRINGS));
246261 "name");
247262 }
248263
264 const char *gvir_config_domain_get_uuid(GVirConfigDomain *domain)
265 {
266 return gvir_config_object_get_node_content(GVIR_CONFIG_OBJECT(domain),
267 "uuid");
268 }
269
249270 const char *gvir_config_domain_get_title(GVirConfigDomain *domain)
250271 {
251272 return gvir_config_object_get_node_content(GVIR_CONFIG_OBJECT(domain),
262283 gvir_config_object_set_node_content(GVIR_CONFIG_OBJECT(domain),
263284 "name", name);
264285 g_object_notify(G_OBJECT(domain), "name");
286 }
287
288 /**
289 * gvir_config_domain_set_uuid:
290 * @domain: a #GVirConfigDomain
291 * @uuid: (allow-none):
292 */
293 void gvir_config_domain_set_uuid(GVirConfigDomain *domain, const char *uuid)
294 {
295 gvir_config_object_set_node_content(GVIR_CONFIG_OBJECT(domain),
296 "uuid", uuid);
297 g_object_notify(G_OBJECT(domain), "uuid");
265298 }
266299
267300 /**
509542 g_object_notify(G_OBJECT(domain), "features");
510543 }
511544
545
546 /**
547 * gvir_config_domain_get_clock:
548 * @domain: a #GVirConfigDomain
549 *
550 * Gets the clock configuration of @domain
551 *
552 * Returns: (transfer full): A #GVirConfigDomainClock. The returned
553 * object should be unreffed with g_object_unref() when no longer needed.
554 */
555 GVirConfigDomainClock *gvir_config_domain_get_clock(GVirConfigDomain *domain)
556 {
557 GVirConfigObject *object;
558
559 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN(domain), NULL);
560
561 object = gvir_config_object_get_child_with_type(GVIR_CONFIG_OBJECT(domain),
562 "clock",
563 GVIR_CONFIG_TYPE_DOMAIN_CLOCK);
564
565 return GVIR_CONFIG_DOMAIN_CLOCK(object);
566 }
567
568
512569 /**
513570 * gvir_config_domain_set_clock:
514571 * @domain: a #GVirConfigDomain
518575 GVirConfigDomainClock *klock)
519576 {
520577 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN(domain));
521 g_return_if_fail(klock != NULL || GVIR_CONFIG_IS_DOMAIN_CLOCK(klock));
578 g_return_if_fail(klock == NULL || GVIR_CONFIG_IS_DOMAIN_CLOCK(klock));
522579
523580 gvir_config_object_attach_replace(GVIR_CONFIG_OBJECT(domain),
524581 "clock",
799856 GVirConfigDomainCpu *cpu)
800857 {
801858 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN(domain));
802 g_return_if_fail(cpu != NULL || GVIR_CONFIG_IS_DOMAIN_CPU(cpu));
859 g_return_if_fail(cpu == NULL || GVIR_CONFIG_IS_DOMAIN_CPU(cpu));
803860
804861 gvir_config_object_attach_replace(GVIR_CONFIG_OBJECT(domain),
805862 "cpu",
104104 void gvir_config_domain_set_virt_type(GVirConfigDomain *domain, GVirConfigDomainVirtType type);
105105 const char *gvir_config_domain_get_name(GVirConfigDomain *domain);
106106 void gvir_config_domain_set_name(GVirConfigDomain *domain, const char *name);
107 const char *gvir_config_domain_get_uuid(GVirConfigDomain *domain);
108 void gvir_config_domain_set_uuid(GVirConfigDomain *domain, const char *uuid);
107109 const char *gvir_config_domain_get_description(GVirConfigDomain *domain);
108110 void gvir_config_domain_set_description(GVirConfigDomain *domain, const char *description);
109111 guint64 gvir_config_domain_get_memory(GVirConfigDomain *domain);
116118 GStrv gvir_config_domain_get_features(GVirConfigDomain *domain);
117119 void gvir_config_domain_set_features(GVirConfigDomain *domain,
118120 const GStrv features);
121 GVirConfigDomainClock *gvir_config_domain_get_clock(GVirConfigDomain *domain);
119122 void gvir_config_domain_set_clock(GVirConfigDomain *domain,
120123 GVirConfigDomainClock *klock);
121124 GVirConfigDomainOs *gvir_config_domain_get_os(GVirConfigDomain *domain);
5252 const char *attr_name,
5353 GType enum_type,
5454 gint default_value);
55 gboolean gvir_config_object_get_attribute_boolean(GVirConfigObject *object,
56 const char *node_name,
57 const char *attr_name,
58 gboolean default_value);
5559 void gvir_config_object_set_node_content(GVirConfigObject *object,
5660 const char *node_name,
5761 const char *value);
682682
683683 return g_ascii_strtoull(str, NULL, 0);
684684 }
685
686
687 G_GNUC_INTERNAL gboolean
688 gvir_config_object_get_attribute_boolean(GVirConfigObject *object,
689 const char *node_name,
690 const char *attr_name,
691 gboolean default_value)
692 {
693 const char *str;
694
695 str = gvir_config_object_get_attribute(object, node_name, attr_name);
696 if (g_strcmp0(str, "yes") == 0) {
697 return TRUE;
698 } else if (g_strcmp0(str, "no") == 0) {
699 return FALSE;
700 } else {
701 return default_value;
702 }
703 }
704
685705
686706 GVirConfigObject *gvir_config_object_new_from_xml(GType type,
687707 const char *root_name,
00 /*
11 * libvirt-gconfig.h: libvirt gconfig integration
22 *
3 * Copyright (C) 2010-2012 Red Hat, Inc.
3 * Copyright (C) 2010-2014 Red Hat, Inc.
44 *
55 * This library is free software; you can redistribute it and/or
66 * modify it under the terms of the GNU Lesser General Public
3030 #include <libvirt-gconfig/libvirt-gconfig-capabilities.h>
3131 #include <libvirt-gconfig/libvirt-gconfig-capabilities-cpu.h>
3232 #include <libvirt-gconfig/libvirt-gconfig-capabilities-cpu-feature.h>
33 #include <libvirt-gconfig/libvirt-gconfig-capabilities-cpu-model.h>
3334 #include <libvirt-gconfig/libvirt-gconfig-capabilities-cpu-topology.h>
3435 #include <libvirt-gconfig/libvirt-gconfig-capabilities-guest.h>
3536 #include <libvirt-gconfig/libvirt-gconfig-capabilities-guest-arch.h>
3637 #include <libvirt-gconfig/libvirt-gconfig-capabilities-guest-domain.h>
3738 #include <libvirt-gconfig/libvirt-gconfig-capabilities-guest-feature.h>
3839 #include <libvirt-gconfig/libvirt-gconfig-capabilities-host.h>
40 #include <libvirt-gconfig/libvirt-gconfig-capabilities-host-secmodel.h>
3941 #include <libvirt-gconfig/libvirt-gconfig-domain.h>
4042 #include <libvirt-gconfig/libvirt-gconfig-domain-address.h>
4143 #include <libvirt-gconfig/libvirt-gconfig-domain-address-pci.h>
4345 #include <libvirt-gconfig/libvirt-gconfig-domain-chardev.h>
4446 #include <libvirt-gconfig/libvirt-gconfig-domain-chardev-source.h>
4547 #include <libvirt-gconfig/libvirt-gconfig-domain-chardev-source-pty.h>
48 #include <libvirt-gconfig/libvirt-gconfig-domain-chardev-source-spiceport.h>
4649 #include <libvirt-gconfig/libvirt-gconfig-domain-chardev-source-spicevmc.h>
4750 #include <libvirt-gconfig/libvirt-gconfig-domain-channel.h>
4851 #include <libvirt-gconfig/libvirt-gconfig-domain-clock.h>
5154 #include <libvirt-gconfig/libvirt-gconfig-domain-controller-usb.h>
5255 #include <libvirt-gconfig/libvirt-gconfig-domain-cpu.h>
5356 #include <libvirt-gconfig/libvirt-gconfig-domain-cpu-feature.h>
57 #include <libvirt-gconfig/libvirt-gconfig-domain-cpu-model.h>
5458 #include <libvirt-gconfig/libvirt-gconfig-domain-device.h>
5559 #include <libvirt-gconfig/libvirt-gconfig-domain-disk.h>
60 #include <libvirt-gconfig/libvirt-gconfig-domain-disk-driver.h>
5661 #include <libvirt-gconfig/libvirt-gconfig-domain-filesys.h>
5762 #include <libvirt-gconfig/libvirt-gconfig-domain-graphics.h>
5863 #include <libvirt-gconfig/libvirt-gconfig-domain-graphics-desktop.h>
6368 #include <libvirt-gconfig/libvirt-gconfig-domain-input.h>
6469 #include <libvirt-gconfig/libvirt-gconfig-domain-interface.h>
6570 #include <libvirt-gconfig/libvirt-gconfig-domain-interface-bridge.h>
71 #include <libvirt-gconfig/libvirt-gconfig-domain-interface-filterref-parameter.h>
72 #include <libvirt-gconfig/libvirt-gconfig-domain-interface-filterref.h>
6673 #include <libvirt-gconfig/libvirt-gconfig-domain-interface-network.h>
6774 #include <libvirt-gconfig/libvirt-gconfig-domain-interface-user.h>
6875 #include <libvirt-gconfig/libvirt-gconfig-domain-memballoon.h>
8087 #include <libvirt-gconfig/libvirt-gconfig-domain-snapshot-disk.h>
8188 #include <libvirt-gconfig/libvirt-gconfig-domain-sound.h>
8289 #include <libvirt-gconfig/libvirt-gconfig-domain-timer.h>
90 #include <libvirt-gconfig/libvirt-gconfig-domain-timer-hpet.h>
8391 #include <libvirt-gconfig/libvirt-gconfig-domain-timer-pit.h>
8492 #include <libvirt-gconfig/libvirt-gconfig-domain-timer-rtc.h>
8593 #include <libvirt-gconfig/libvirt-gconfig-domain-video.h>
00 LIBVIRT_GCONFIG_0.0.8 {
11 global:
2 gvir_config_init_check;
3 gvir_config_init;
4
52 gvir_config_capabilities_get_type;
63 gvir_config_capabilities_new;
74 gvir_config_capabilities_new_from_xml;
85
96 gvir_config_domain_add_device;
10 gvir_config_domain_get_type;
11 gvir_config_domain_lifecycle_action_get_type;
12 gvir_config_domain_lifecycle_event_get_type;
13 gvir_config_domain_new;
14 gvir_config_domain_new_from_xml;
15 gvir_config_domain_set_clock;
16 gvir_config_domain_set_custom_xml;
17 gvir_config_domain_get_custom_xml;
18 gvir_config_domain_get_description;
19 gvir_config_domain_set_description;
20 gvir_config_domain_get_devices;
21 gvir_config_domain_set_devices;
22 gvir_config_domain_get_features;
23 gvir_config_domain_set_features;
24 gvir_config_domain_set_lifecycle;
25 gvir_config_domain_get_memory;
26 gvir_config_domain_set_memory;
27 gvir_config_domain_get_name;
28 gvir_config_domain_set_name;
29 gvir_config_domain_set_os;
30 gvir_config_domain_set_seclabel;
31 gvir_config_domain_get_vcpus;
32 gvir_config_domain_set_vcpus;
33 gvir_config_domain_set_virt_type;
34 gvir_config_domain_virt_type_get_type;
357
368 gvir_config_domain_address_get_type;
379
5325 gvir_config_domain_channel_get_type;
5426 gvir_config_domain_channel_new;
5527 gvir_config_domain_channel_new_from_xml;
28 gvir_config_domain_channel_set_target_name;
5629 gvir_config_domain_channel_set_target_type;
57 gvir_config_domain_channel_set_target_name;
5830 gvir_config_domain_channel_target_type_get_type;
5931
6032 gvir_config_domain_chardev_get_type;
7143 gvir_config_domain_chardev_source_spicevmc_new;
7244 gvir_config_domain_chardev_source_spicevmc_new_from_xml;
7345
46 gvir_config_domain_clock_add_timer;
7447 gvir_config_domain_clock_get_type;
75 gvir_config_domain_clock_offset_get_type;
7648 gvir_config_domain_clock_new;
7749 gvir_config_domain_clock_new_from_xml;
78 gvir_config_domain_clock_add_timer;
50 gvir_config_domain_clock_offset_get_type;
7951 gvir_config_domain_clock_set_offset;
8052 gvir_config_domain_clock_set_timezone;
8153 gvir_config_domain_clock_set_variable_offset;
8658 gvir_config_domain_console_set_target_type;
8759 gvir_config_domain_console_target_type_get_type;
8860
61 gvir_config_domain_controller_get_index;
8962 gvir_config_domain_controller_get_type;
9063 gvir_config_domain_controller_set_address;
91 gvir_config_domain_controller_get_index;
9264 gvir_config_domain_controller_set_index;
9365
9466 gvir_config_domain_controller_usb_get_type;
10072
10173 gvir_config_domain_device_get_type;
10274
103 gvir_config_domain_disk_get_type;
10475 gvir_config_domain_disk_bus_get_type;
10576 gvir_config_domain_disk_cache_type_get_type;
77 gvir_config_domain_disk_get_disk_type;
78 gvir_config_domain_disk_get_driver_cache;
79 gvir_config_domain_disk_get_driver_name;
80 gvir_config_domain_disk_get_driver_type;
81 gvir_config_domain_disk_get_guest_device_type;
82 gvir_config_domain_disk_get_snapshot_type;
83 gvir_config_domain_disk_get_source;
84 gvir_config_domain_disk_get_startup_policy;
85 gvir_config_domain_disk_get_target_bus;
86 gvir_config_domain_disk_get_target_dev;
87 gvir_config_domain_disk_get_type;
10688 gvir_config_domain_disk_guest_device_type_get_type;
89 gvir_config_domain_disk_new;
90 gvir_config_domain_disk_new_from_xml;
91 gvir_config_domain_disk_set_driver_cache;
92 gvir_config_domain_disk_set_driver_name;
93 gvir_config_domain_disk_set_driver_type;
94 gvir_config_domain_disk_set_guest_device_type;
95 gvir_config_domain_disk_set_readonly;
96 gvir_config_domain_disk_set_snapshot_type;
97 gvir_config_domain_disk_set_source;
98 gvir_config_domain_disk_set_startup_policy;
99 gvir_config_domain_disk_set_target_bus;
100 gvir_config_domain_disk_set_target_dev;
101 gvir_config_domain_disk_set_type;
107102 gvir_config_domain_disk_snapshot_type_get_type;
108103 gvir_config_domain_disk_startup_policy_get_type;
109104 gvir_config_domain_disk_type_get_type;
110 gvir_config_domain_disk_new;
111 gvir_config_domain_disk_new_from_xml;
112 gvir_config_domain_disk_get_driver_cache;
113 gvir_config_domain_disk_set_driver_cache;
114 gvir_config_domain_disk_get_driver_name;
115 gvir_config_domain_disk_set_driver_name;
116 gvir_config_domain_disk_get_driver_type;
117 gvir_config_domain_disk_set_driver_type;
118 gvir_config_domain_disk_get_guest_device_type;
119 gvir_config_domain_disk_set_guest_device_type;
120 gvir_config_domain_disk_get_snapshot_type;
121 gvir_config_domain_disk_set_snapshot_type;
122 gvir_config_domain_disk_get_source;
123 gvir_config_domain_disk_set_source;
124 gvir_config_domain_disk_get_startup_policy;
125 gvir_config_domain_disk_set_startup_policy;
126 gvir_config_domain_disk_get_target_bus;
127 gvir_config_domain_disk_set_target_bus;
128 gvir_config_domain_disk_get_target_dev;
129 gvir_config_domain_disk_set_target_dev;
130 gvir_config_domain_disk_get_disk_type;
131 gvir_config_domain_disk_set_readonly;
132 gvir_config_domain_disk_set_type;
133
134 gvir_config_domain_filesys_get_type;
135 gvir_config_domain_filesys_type_get_type;
105
136106 gvir_config_domain_filesys_access_type_get_type;
137107 gvir_config_domain_filesys_driver_type_get_type;
108 gvir_config_domain_filesys_get_type;
138109 gvir_config_domain_filesys_new;
139110 gvir_config_domain_filesys_new_from_xml;
140111 gvir_config_domain_filesys_set_access_type;
143114 gvir_config_domain_filesys_set_source;
144115 gvir_config_domain_filesys_set_target;
145116 gvir_config_domain_filesys_set_type;
117 gvir_config_domain_filesys_type_get_type;
118
119 gvir_config_domain_get_custom_xml;
120 gvir_config_domain_get_description;
121 gvir_config_domain_get_devices;
122 gvir_config_domain_get_features;
123 gvir_config_domain_get_memory;
124 gvir_config_domain_get_name;
125 gvir_config_domain_get_type;
126 gvir_config_domain_get_vcpus;
146127
147128 gvir_config_domain_graphics_get_type;
148129
156137 gvir_config_domain_graphics_spice_new;
157138 gvir_config_domain_graphics_spice_new_from_xml;
158139 gvir_config_domain_graphics_spice_set_autoport;
140 gvir_config_domain_graphics_spice_set_password;
159141 gvir_config_domain_graphics_spice_set_port;
160142 gvir_config_domain_graphics_spice_set_tls_port;
161 gvir_config_domain_graphics_spice_set_password;
162143
163144 gvir_config_domain_graphics_vnc_get_type;
164145 gvir_config_domain_graphics_vnc_new;
168149 gvir_config_domain_graphics_vnc_set_port;
169150
170151 gvir_config_domain_input_bus_get_type;
152 gvir_config_domain_input_device_type_get_type;
171153 gvir_config_domain_input_get_type;
172 gvir_config_domain_input_device_type_get_type;
173154 gvir_config_domain_input_new;
174155 gvir_config_domain_input_new_from_xml;
156 gvir_config_domain_input_set_bus;
175157 gvir_config_domain_input_set_device_type;
176 gvir_config_domain_input_set_bus;
177
178 gvir_config_domain_interface_get_type;
179 gvir_config_domain_interface_link_state_get_type;
180 gvir_config_domain_interface_set_ifname;
181 gvir_config_domain_interface_get_ifname;
182 gvir_config_domain_interface_set_link_state;
183 gvir_config_domain_interface_get_link_state;
184 gvir_config_domain_interface_set_mac;
185 gvir_config_domain_interface_get_mac;
186 gvir_config_domain_interface_set_model;
187 gvir_config_domain_interface_get_model;
188158
189159 gvir_config_domain_interface_bridge_get_type;
190160 gvir_config_domain_interface_bridge_new;
191161 gvir_config_domain_interface_bridge_new_from_xml;
192162 gvir_config_domain_interface_bridge_set_source;
193163
164 gvir_config_domain_interface_get_ifname;
165 gvir_config_domain_interface_get_link_state;
166 gvir_config_domain_interface_get_mac;
167 gvir_config_domain_interface_get_model;
168 gvir_config_domain_interface_get_type;
169 gvir_config_domain_interface_link_state_get_type;
170
194171 gvir_config_domain_interface_network_get_type;
195172 gvir_config_domain_interface_network_new;
196173 gvir_config_domain_interface_network_new_from_xml;
197174 gvir_config_domain_interface_network_set_source;
198175
176 gvir_config_domain_interface_set_ifname;
177 gvir_config_domain_interface_set_link_state;
178 gvir_config_domain_interface_set_mac;
179 gvir_config_domain_interface_set_model;
180
199181 gvir_config_domain_interface_user_get_type;
200182 gvir_config_domain_interface_user_new;
201183 gvir_config_domain_interface_user_new_from_xml;
184
185 gvir_config_domain_lifecycle_action_get_type;
186 gvir_config_domain_lifecycle_event_get_type;
202187
203188 gvir_config_domain_memballoon_get_type;
204189 gvir_config_domain_memballoon_model_get_type;
206191 gvir_config_domain_memballoon_new_from_xml;
207192 gvir_config_domain_memballoon_set_model;
208193
194 gvir_config_domain_new;
195 gvir_config_domain_new_from_xml;
196
197 gvir_config_domain_os_bios_enable_serial;
198 gvir_config_domain_os_boot_device_get_type;
199 gvir_config_domain_os_enable_boot_menu;
209200 gvir_config_domain_os_get_type;
210 gvir_config_domain_os_boot_device_get_type;
211 gvir_config_domain_os_sm_bios_mode_get_type;
212201 gvir_config_domain_os_new;
213202 gvir_config_domain_os_new_from_xml;
214 gvir_config_domain_os_set_os_type;
203 gvir_config_domain_os_set_arch;
215204 gvir_config_domain_os_set_boot_devices;
216205 gvir_config_domain_os_set_cmdline;
217206 gvir_config_domain_os_set_init;
218207 gvir_config_domain_os_set_kernel;
219208 gvir_config_domain_os_set_loader;
209 gvir_config_domain_os_set_machine;
210 gvir_config_domain_os_set_os_type;
220211 gvir_config_domain_os_set_ramdisk;
221212 gvir_config_domain_os_set_smbios_mode;
222 gvir_config_domain_os_enable_boot_menu;
223 gvir_config_domain_os_bios_enable_serial;
224 gvir_config_domain_os_set_machine;
225 gvir_config_domain_os_set_arch;
213 gvir_config_domain_os_sm_bios_mode_get_type;
226214 gvir_config_domain_os_type_get_type;
227215
228216 gvir_config_domain_parallel_get_type;
229217 gvir_config_domain_parallel_new;
230218 gvir_config_domain_parallel_new_from_xml;
231219
220 gvir_config_domain_redirdev_bus_get_type;
232221 gvir_config_domain_redirdev_get_type;
233 gvir_config_domain_redirdev_bus_get_type;
234222 gvir_config_domain_redirdev_new;
235223 gvir_config_domain_redirdev_new_from_xml;
236224 gvir_config_domain_redirdev_set_address;
237225 gvir_config_domain_redirdev_set_bus;
238226
239227 gvir_config_domain_seclabel_get_type;
240 gvir_config_domain_seclabel_type_get_type;
241228 gvir_config_domain_seclabel_new;
242229 gvir_config_domain_seclabel_new_from_xml;
243 gvir_config_domain_seclabel_set_type;
244 gvir_config_domain_seclabel_set_model;
245230 gvir_config_domain_seclabel_set_baselabel;
246231 gvir_config_domain_seclabel_set_label;
232 gvir_config_domain_seclabel_set_model;
233 gvir_config_domain_seclabel_set_type;
234 gvir_config_domain_seclabel_type_get_type;
247235
248236 gvir_config_domain_serial_get_type;
249237 gvir_config_domain_serial_new;
250238 gvir_config_domain_serial_new_from_xml;
239
240 gvir_config_domain_set_clock;
241 gvir_config_domain_set_custom_xml;
242 gvir_config_domain_set_description;
243 gvir_config_domain_set_devices;
244 gvir_config_domain_set_features;
245 gvir_config_domain_set_lifecycle;
246 gvir_config_domain_set_memory;
247 gvir_config_domain_set_name;
248 gvir_config_domain_set_os;
249 gvir_config_domain_set_seclabel;
250 gvir_config_domain_set_vcpus;
251 gvir_config_domain_set_virt_type;
251252
252253 gvir_config_domain_snapshot_get_type;
253254 gvir_config_domain_snapshot_new;
259260 gvir_config_domain_sound_new_from_xml;
260261 gvir_config_domain_sound_set_model;
261262
263 gvir_config_domain_timer_get_tick_policy;
262264 gvir_config_domain_timer_get_type;
263 gvir_config_domain_timer_tick_policy_get_type;
264 gvir_config_domain_timer_get_tick_policy;
265 gvir_config_domain_timer_set_tick_policy;
266265
267266 gvir_config_domain_timer_pit_get_type;
268267 gvir_config_domain_timer_pit_new;
271270 gvir_config_domain_timer_rtc_get_type;
272271 gvir_config_domain_timer_rtc_new;
273272 gvir_config_domain_timer_rtc_new_from_xml;
273
274 gvir_config_domain_timer_set_tick_policy;
275 gvir_config_domain_timer_tick_policy_get_type;
274276
275277 gvir_config_domain_video_get_type;
276278 gvir_config_domain_video_model_get_type;
277279 gvir_config_domain_video_new;
278280 gvir_config_domain_video_new_from_xml;
281 gvir_config_domain_video_set_heads;
279282 gvir_config_domain_video_set_model;
280283 gvir_config_domain_video_set_vram;
281 gvir_config_domain_video_set_heads;
284
285 gvir_config_domain_virt_type_get_type;
286
287 gvir_config_init;
288 gvir_config_init_check;
282289
283290 gvir_config_interface_get_type;
284291 gvir_config_interface_new;
285292 gvir_config_interface_new_from_xml;
286293
294 gvir_config_network_filter_get_type;
295 gvir_config_network_filter_new;
296 gvir_config_network_filter_new_from_xml;
297
287298 gvir_config_network_get_type;
288299 gvir_config_network_new;
289300 gvir_config_network_new_from_xml;
290301
291 gvir_config_network_filter_get_type;
292 gvir_config_network_filter_new;
293 gvir_config_network_filter_new_from_xml;
294302
295303 gvir_config_node_device_get_type;
296304 gvir_config_node_device_new;
297305 gvir_config_node_device_new_from_xml;
298306
307 gvir_config_object_error_quark;
308 gvir_config_object_get_schema;
299309 gvir_config_object_get_type;
300 gvir_config_object_error_quark;
301310 gvir_config_object_new;
302 gvir_config_object_get_schema;
303311 gvir_config_object_to_xml;
304312 gvir_config_object_validate;
305313
316324 gvir_config_storage_permissions_set_owner;
317325
318326 gvir_config_storage_pool_get_type;
319 gvir_config_storage_pool_type_get_type;
320327 gvir_config_storage_pool_new;
321328 gvir_config_storage_pool_new_from_xml;
322329 gvir_config_storage_pool_set_allocation;
346353 gvir_config_storage_pool_target_set_path;
347354 gvir_config_storage_pool_target_set_permissions;
348355
356 gvir_config_storage_pool_type_get_type;
357
358 gvir_config_storage_vol_backing_store_get_type;
359 gvir_config_storage_vol_backing_store_new;
360 gvir_config_storage_vol_backing_store_new_from_xml;
361 gvir_config_storage_vol_backing_store_set_format;
362 gvir_config_storage_vol_backing_store_set_path;
363
349364 gvir_config_storage_vol_get_type;
350365 gvir_config_storage_vol_new;
351366 gvir_config_storage_vol_new_from_xml;
355370 gvir_config_storage_vol_set_name;
356371 gvir_config_storage_vol_set_target;
357372
358 gvir_config_storage_vol_backing_store_get_type;
359 gvir_config_storage_vol_backing_store_new;
360 gvir_config_storage_vol_backing_store_new_from_xml;
361 gvir_config_storage_vol_backing_store_set_format;
362 gvir_config_storage_vol_backing_store_set_path;
363
364373 gvir_config_storage_vol_target_get_type;
365374 gvir_config_storage_vol_target_new;
366375 gvir_config_storage_vol_target_new_from_xml;
369378
370379 gvir_config_xml_doc_get_type;
371380 gvir_config_xml_doc_new;
381
372382 local:
373 *;
383 *;
374384 };
375385
376386 LIBVIRT_GCONFIG_0.0.9 {
377387 global:
388 gvir_config_capabilities_cpu_feature_get_name;
389 gvir_config_capabilities_cpu_feature_get_type;
390
391 gvir_config_capabilities_cpu_get_arch;
392 gvir_config_capabilities_cpu_get_features;
393 gvir_config_capabilities_cpu_get_topology;
394 gvir_config_capabilities_cpu_get_type;
395
396 gvir_config_capabilities_cpu_topology_get_cores;
397 gvir_config_capabilities_cpu_topology_get_sockets;
398 gvir_config_capabilities_cpu_topology_get_threads;
399 gvir_config_capabilities_cpu_topology_get_type;
400
401 gvir_config_capabilities_get_guests;
402 gvir_config_capabilities_get_host;
403
404 gvir_config_capabilities_guest_arch_get_domains;
405 gvir_config_capabilities_guest_arch_get_emulator;
406 gvir_config_capabilities_guest_arch_get_name;
407 gvir_config_capabilities_guest_arch_get_type;
408
409 gvir_config_capabilities_guest_domain_get_emulator;
410 gvir_config_capabilities_guest_domain_get_type;
411 gvir_config_capabilities_guest_domain_get_virt_type;
412
413 gvir_config_capabilities_guest_feature_get_name;
414 gvir_config_capabilities_guest_feature_get_type;
415
416 gvir_config_capabilities_guest_get_arch;
417 gvir_config_capabilities_guest_get_features;
418 gvir_config_capabilities_guest_get_os_type;
419 gvir_config_capabilities_guest_get_type;
420
421 gvir_config_capabilities_host_get_cpu;
422 gvir_config_capabilities_host_get_type;
423 gvir_config_capabilities_host_get_uuid;
424
425 gvir_config_domain_filesys_set_ram_usage;
426
378427 gvir_config_domain_get_os;
379428 gvir_config_domain_get_title;
380 gvir_config_domain_set_title;
381429 gvir_config_domain_get_virt_type;
382
383 gvir_config_domain_filesys_set_ram_usage;
384430
385431 gvir_config_domain_os_get_arch;
386432 gvir_config_domain_os_get_boot_devices;
387433 gvir_config_domain_os_get_os_type;
388434
389 gvir_config_capabilities_get_host;
390 gvir_config_capabilities_get_guests;
391
392 gvir_config_capabilities_cpu_get_type;
393 gvir_config_capabilities_cpu_get_arch;
394 gvir_config_capabilities_cpu_get_features;
395 gvir_config_capabilities_cpu_get_topology;
396
397 gvir_config_capabilities_cpu_feature_get_type;
398 gvir_config_capabilities_cpu_feature_get_name;
399
400 gvir_config_capabilities_cpu_topology_get_type;
401 gvir_config_capabilities_cpu_topology_get_cores;
402 gvir_config_capabilities_cpu_topology_get_sockets;
403 gvir_config_capabilities_cpu_topology_get_threads;
404
405 gvir_config_capabilities_guest_get_type;
406 gvir_config_capabilities_guest_get_arch;
407 gvir_config_capabilities_guest_get_features;
408 gvir_config_capabilities_guest_get_os_type;
409
410 gvir_config_capabilities_guest_arch_get_type;
411 gvir_config_capabilities_guest_arch_get_domains;
412 gvir_config_capabilities_guest_arch_get_emulator;
413 gvir_config_capabilities_guest_arch_get_name;
414
415 gvir_config_capabilities_guest_domain_get_type;
416 gvir_config_capabilities_guest_domain_get_emulator;
417 gvir_config_capabilities_guest_domain_get_virt_type;
418
419 gvir_config_capabilities_guest_feature_get_type;
420 gvir_config_capabilities_guest_feature_get_name;
421
422 gvir_config_capabilities_host_get_type;
423 gvir_config_capabilities_host_get_uuid;
424 gvir_config_capabilities_host_get_cpu;
435 gvir_config_domain_set_title;
425436 } LIBVIRT_GCONFIG_0.0.8;
426437
427438 LIBVIRT_GCONFIG_0.1.0 {
428439 global:
429440 gvir_config_capabilities_cpu_add_feature;
441
442 gvir_config_capabilities_cpu_feature_set_name;
443
430444 gvir_config_capabilities_cpu_set_topology;
431
432 gvir_config_capabilities_cpu_feature_set_name;
433445
434446 gvir_config_capabilities_cpu_topology_new;
435447 gvir_config_capabilities_cpu_topology_new_from_xml;
437449 gvir_config_capabilities_cpu_topology_set_sockets;
438450 gvir_config_capabilities_cpu_topology_set_threads;
439451
440 gvir_config_domain_get_cpu;
441 gvir_config_domain_set_cpu;
442
443 gvir_config_domain_cpu_get_type;
444 gvir_config_domain_cpu_match_policy_get_type;
445 gvir_config_domain_cpu_mode_get_type;
446 gvir_config_domain_cpu_get_features;
447 gvir_config_domain_cpu_get_match_policy;
448 gvir_config_domain_cpu_set_match_policy;
449 gvir_config_domain_cpu_get_mode;
450 gvir_config_domain_cpu_set_mode;
451 gvir_config_domain_cpu_new;
452 gvir_config_domain_cpu_new_from_xml;
453
452 gvir_config_domain_cpu_feature_get_policy;
454453 gvir_config_domain_cpu_feature_get_type;
455454 gvir_config_domain_cpu_feature_new;
456455 gvir_config_domain_cpu_feature_new_from_xml;
457456 gvir_config_domain_cpu_feature_policy_get_type;
458 gvir_config_domain_cpu_feature_get_policy;
459457 gvir_config_domain_cpu_feature_set_policy;
458
459 gvir_config_domain_cpu_get_match_policy;
460 gvir_config_domain_cpu_get_mode;
461 gvir_config_domain_cpu_get_type;
462 gvir_config_domain_cpu_match_policy_get_type;
463 gvir_config_domain_cpu_mode_get_type;
464 gvir_config_domain_cpu_new;
465 gvir_config_domain_cpu_new_from_xml;
466 gvir_config_domain_cpu_set_match_policy;
467 gvir_config_domain_cpu_set_mode;
468
469 gvir_config_domain_get_cpu;
470 gvir_config_domain_set_cpu;
460471 } LIBVIRT_GCONFIG_0.0.9;
461472
462473 LIBVIRT_GCONFIG_0.1.3 {
463474 global:
464475 gvir_config_domain_get_current_memory;
465 gvir_config_domain_set_current_memory;
466476
467477 gvir_config_domain_graphics_spice_get_port;
468478
469479 gvir_config_domain_graphics_vnc_get_port;
470480 gvir_config_domain_graphics_vnc_get_socket;
471481 gvir_config_domain_graphics_vnc_set_socket;
482
483 gvir_config_domain_set_current_memory;
472484 } LIBVIRT_GCONFIG_0.1.0;
473485
474486 LIBVIRT_GCONFIG_0.1.4 {
476488 gvir_config_domain_power_management_get_type;
477489 gvir_config_domain_power_management_new;
478490 gvir_config_domain_power_management_new_from_xml;
491 gvir_config_domain_power_management_set_disk_suspend_enabled;
479492 gvir_config_domain_power_management_set_mem_suspend_enabled;
480 gvir_config_domain_power_management_set_disk_suspend_enabled;
481493
482494 gvir_config_domain_set_power_management;
483495 } LIBVIRT_GCONFIG_0.1.3;
485497 LIBVIRT_GCONFIG_0.1.5 {
486498 global:
487499 gvir_config_domain_smartcard_get_type;
488 gvir_config_domain_smartcard_set_address;
500
501 gvir_config_domain_smartcard_host_certificates_get_type;
502 gvir_config_domain_smartcard_host_certificates_new;
503 gvir_config_domain_smartcard_host_certificates_new_from_xml;
504 gvir_config_domain_smartcard_host_certificates_set_certificates;
505 gvir_config_domain_smartcard_host_certificates_set_database;
489506
490507 gvir_config_domain_smartcard_host_get_type;
491508 gvir_config_domain_smartcard_host_new;
492509 gvir_config_domain_smartcard_host_new_from_xml;
493
494 gvir_config_domain_smartcard_host_certificates_get_type;
495 gvir_config_domain_smartcard_host_certificates_new;
496 gvir_config_domain_smartcard_host_certificates_new_from_xml;
497 gvir_config_domain_smartcard_host_certificates_set_database;
498 gvir_config_domain_smartcard_host_certificates_set_certificates;
499510
500511 gvir_config_domain_smartcard_passthrough_get_type;
501512 gvir_config_domain_smartcard_passthrough_new;
502513 gvir_config_domain_smartcard_passthrough_new_from_xml;
503514 gvir_config_domain_smartcard_passthrough_set_source;
515
516 gvir_config_domain_smartcard_set_address;
504517 } LIBVIRT_GCONFIG_0.1.4;
505518
506519 LIBVIRT_GCONFIG_0.1.6 {
507520 global:
508521 gvir_config_domain_graphics_spice_get_image_compression;
522
523 gvir_config_domain_graphics_spice_image_compression_get_type;
524
509525 gvir_config_domain_graphics_spice_set_image_compression;
510
511 gvir_config_domain_graphics_spice_image_compression_get_type;
512526 } LIBVIRT_GCONFIG_0.1.5;
513527
514528 LIBVIRT_GCONFIG_0.1.7 {
515529 global:
516530 gvir_config_domain_channel_get_target_name;
517531 gvir_config_domain_channel_get_target_type;
532
533 gvir_config_domain_chardev_get_source;
534 gvir_config_domain_chardev_source_pty_get_path;
535
536 gvir_config_domain_device_get_alias;
518537
519538 gvir_config_domain_disk_format_get_type;
520539 gvir_config_domain_disk_get_driver_format;
526545 gvir_config_domain_graphics_desktop_set_display;
527546 gvir_config_domain_graphics_desktop_set_fullscreen;
528547
529 gvir_config_domain_graphics_sdl_set_fullscreen;
530
548 gvir_config_domain_graphics_rdp_get_port;
531549 gvir_config_domain_graphics_rdp_get_type;
532550 gvir_config_domain_graphics_rdp_new;
533551 gvir_config_domain_graphics_rdp_new_from_xml;
534552 gvir_config_domain_graphics_rdp_set_autoport;
535 gvir_config_domain_graphics_rdp_get_port;
536553 gvir_config_domain_graphics_rdp_set_port;
554
555 gvir_config_domain_graphics_sdl_set_fullscreen;
556
557 gvir_config_domain_snapshot_add_disk;
558 gvir_config_domain_snapshot_disk_get_driver_format;
559 gvir_config_domain_snapshot_disk_get_name;
560 gvir_config_domain_snapshot_disk_get_snapshot_type;
561 gvir_config_domain_snapshot_disk_get_source_file;
562 gvir_config_domain_snapshot_disk_get_type;
563 gvir_config_domain_snapshot_disk_new;
564 gvir_config_domain_snapshot_disk_new_from_xml;
565 gvir_config_domain_snapshot_disk_set_driver_format;
566 gvir_config_domain_snapshot_disk_set_name;
567 gvir_config_domain_snapshot_disk_set_snapshot_type;
568 gvir_config_domain_snapshot_disk_set_source_file;
569 gvir_config_domain_snapshot_domain_state_get_type;
570 gvir_config_domain_snapshot_get_creation_time;
571 gvir_config_domain_snapshot_get_description;
572 gvir_config_domain_snapshot_get_disks;
573 gvir_config_domain_snapshot_get_domain;
574 gvir_config_domain_snapshot_get_memory_file;
575 gvir_config_domain_snapshot_get_memory_state;
576 gvir_config_domain_snapshot_get_name;
577 gvir_config_domain_snapshot_get_parent;
578 gvir_config_domain_snapshot_get_state;
579 gvir_config_domain_snapshot_memory_state_get_type;
580 gvir_config_domain_snapshot_set_description;
581 gvir_config_domain_snapshot_set_disks;
582 gvir_config_domain_snapshot_set_memory_file;
583 gvir_config_domain_snapshot_set_memory_state;
584 gvir_config_domain_snapshot_set_name;
537585
538586 gvir_config_storage_permissions_get_group;
539587 gvir_config_storage_permissions_get_label;
561609 gvir_config_storage_pool_target_get_path;
562610 gvir_config_storage_pool_target_get_permissions;
563611
564 gvir_config_domain_snapshot_domain_state_get_type;
565 gvir_config_domain_snapshot_memory_state_get_type;
566 gvir_config_domain_snapshot_get_creation_time;
567 gvir_config_domain_snapshot_get_description;
568 gvir_config_domain_snapshot_set_description;
569 gvir_config_domain_snapshot_get_domain;
570 gvir_config_domain_snapshot_get_memory_state;
571 gvir_config_domain_snapshot_set_memory_state;
572 gvir_config_domain_snapshot_get_memory_file;
573 gvir_config_domain_snapshot_set_memory_file;
574 gvir_config_domain_snapshot_get_name;
575 gvir_config_domain_snapshot_set_name;
576 gvir_config_domain_snapshot_get_parent;
577 gvir_config_domain_snapshot_get_state;
578 gvir_config_domain_snapshot_get_disks;
579 gvir_config_domain_snapshot_add_disk;
580 gvir_config_domain_snapshot_set_disks;
581
582 gvir_config_domain_snapshot_disk_get_type;
583 gvir_config_domain_snapshot_disk_new;
584 gvir_config_domain_snapshot_disk_new_from_xml;
585
586 gvir_config_domain_snapshot_disk_get_driver_format;
587 gvir_config_domain_snapshot_disk_set_driver_format;
588 gvir_config_domain_snapshot_disk_get_name;
589 gvir_config_domain_snapshot_disk_set_name;
590 gvir_config_domain_snapshot_disk_get_snapshot_type;
591 gvir_config_domain_snapshot_disk_set_snapshot_type;
592 gvir_config_domain_snapshot_disk_get_source_file;
593 gvir_config_domain_snapshot_disk_set_source_file;
594
595 gvir_config_domain_chardev_source_pty_get_path;
596 gvir_config_domain_chardev_get_source;
597
598 gvir_config_domain_device_get_alias;
599612 } LIBVIRT_GCONFIG_0.1.6;
600613
614 LIBVIRT_GCONFIG_0.1.8 {
615 global:
616 gvir_config_domain_clock_get_offset;
617 gvir_config_domain_clock_get_timezone;
618 gvir_config_domain_clock_get_variable_offset;
619
620 gvir_config_domain_disk_driver_discard_get_type;
621 gvir_config_domain_disk_driver_error_policy_get_type;
622 gvir_config_domain_disk_driver_get_cache;
623 gvir_config_domain_disk_driver_get_copy_on_read;
624 gvir_config_domain_disk_driver_get_discard;
625 gvir_config_domain_disk_driver_get_error_policy;
626 gvir_config_domain_disk_driver_get_format;
627 gvir_config_domain_disk_driver_get_io_policy;
628 gvir_config_domain_disk_driver_get_name;
629 gvir_config_domain_disk_driver_get_type;
630 gvir_config_domain_disk_driver_io_policy_get_type;
631 gvir_config_domain_disk_driver_new;
632 gvir_config_domain_disk_driver_new_from_xml;
633 gvir_config_domain_disk_driver_set_cache;
634 gvir_config_domain_disk_driver_set_copy_on_read;
635 gvir_config_domain_disk_driver_set_discard;
636 gvir_config_domain_disk_driver_set_error_policy;
637 gvir_config_domain_disk_driver_set_format;
638 gvir_config_domain_disk_driver_set_io_policy;
639 gvir_config_domain_disk_driver_set_name;
640
641 gvir_config_domain_disk_get_driver;
642 gvir_config_domain_disk_set_driver;
643
644 gvir_config_domain_get_clock;
645 gvir_config_domain_get_uuid;
646
647 gvir_config_domain_graphics_desktop_get_display;
648 gvir_config_domain_graphics_desktop_get_fullscreen;
649
650 gvir_config_domain_graphics_rdp_get_multi_user;
651 gvir_config_domain_graphics_rdp_get_replace_user;
652 gvir_config_domain_graphics_rdp_set_multi_user;
653 gvir_config_domain_graphics_rdp_set_replace_user;
654
655 gvir_config_domain_input_get_bus;
656 gvir_config_domain_input_get_device_type;
657
658 gvir_config_domain_interface_filterref_add_parameter;
659 gvir_config_domain_interface_filterref_get_name;
660 gvir_config_domain_interface_filterref_get_parameters;
661 gvir_config_domain_interface_filterref_get_type;
662 gvir_config_domain_interface_filterref_new;
663 gvir_config_domain_interface_filterref_new_from_xml;
664 gvir_config_domain_interface_filterref_parameter_get_name;
665 gvir_config_domain_interface_filterref_parameter_get_type;
666 gvir_config_domain_interface_filterref_parameter_get_value;
667 gvir_config_domain_interface_filterref_parameter_new;
668 gvir_config_domain_interface_filterref_parameter_new_from_xml;
669 gvir_config_domain_interface_filterref_parameter_set_name;
670 gvir_config_domain_interface_filterref_parameter_set_value;
671 gvir_config_domain_interface_filterref_set_name;
672
673 gvir_config_domain_interface_get_filterref;
674 gvir_config_domain_interface_set_filterref;
675
676 gvir_config_domain_set_uuid;
677
678 gvir_config_domain_timer_get_present;
679
680 gvir_config_domain_timer_hpet_get_type;
681 gvir_config_domain_timer_hpet_new;
682 gvir_config_domain_timer_hpet_new_from_xml;
683
684 gvir_config_domain_timer_set_present;
685
686 gvir_config_object_new_from_xml;
687 } LIBVIRT_GCONFIG_0.1.7;
688
689 LIBVIRT_GCONFIG_0.1.9 {
690 global:
691 gvir_config_capabilities_cpu_get_model;
692
693 gvir_config_capabilities_cpu_model_get_name;
694 gvir_config_capabilities_cpu_model_get_type;
695 gvir_config_capabilities_cpu_model_new;
696 gvir_config_capabilities_cpu_model_set_name;
697
698 gvir_config_capabilities_host_get_secmodels;
699
700 gvir_config_capabilities_host_secmodel_get_doi;
701 gvir_config_capabilities_host_secmodel_get_model;
702 gvir_config_capabilities_host_secmodel_get_type;
703
704 gvir_config_domain_chardev_source_spiceport_get_channel;
705 gvir_config_domain_chardev_source_spiceport_get_type;
706 gvir_config_domain_chardev_source_spiceport_new;
707 gvir_config_domain_chardev_source_spiceport_new_from_xml;
708 gvir_config_domain_chardev_source_spiceport_set_channel;
709
710 gvir_config_domain_cpu_model_get_type;
711 gvir_config_domain_cpu_model_new;
712
713 gvir_config_domain_cpu_set_model;
714 } LIBVIRT_GCONFIG_0.1.8;
715
601716 # .... define new API here using predicted next version number ....
0 # Makefile.in generated by automake 1.13.2 from Makefile.am.
0 # Makefile.in generated by automake 1.13.4 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
8383 DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
8484 $(top_srcdir)/build-aux/depcomp
8585 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
86 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
87 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
88 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
89 $(top_srcdir)/m4/lt~obsolete.m4 \
86 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
87 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
88 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
89 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
9090 $(top_srcdir)/m4/manywarnings.m4 \
9191 $(top_srcdir)/m4/virt-compile-warnings.m4 \
9292 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
228228 GIO2_LIBS = @GIO2_LIBS@
229229 GLIB2_CFLAGS = @GLIB2_CFLAGS@
230230 GLIB2_LIBS = @GLIB2_LIBS@
231 GLIB2_REQUIRED = @GLIB2_REQUIRED@
231232 GLIB_MKENUMS = @GLIB_MKENUMS@
232233 GMSGFMT = @GMSGFMT@
233234 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
234235 GOBJECT2_LIBS = @GOBJECT2_LIBS@
235 GOBJECT_INTROSPECTION_CFLAGS = @GOBJECT_INTROSPECTION_CFLAGS@
236 GOBJECT_INTROSPECTION_LIBS = @GOBJECT_INTROSPECTION_LIBS@
237236 GREP = @GREP@
238237 GTHREAD2_CFLAGS = @GTHREAD2_CFLAGS@
239238 GTHREAD2_LIBS = @GTHREAD2_LIBS@
240239 GTKDOC_CHECK = @GTKDOC_CHECK@
240 GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
241241 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
242242 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
243243 GTKDOC_MKPDF = @GTKDOC_MKPDF@
244244 GTKDOC_REBASE = @GTKDOC_REBASE@
245 G_IR_COMPILER = @G_IR_COMPILER@
246 G_IR_SCANNER = @G_IR_SCANNER@
247245 HTML_DIR = @HTML_DIR@
248246 INSTALL = @INSTALL@
249247 INSTALL_DATA = @INSTALL_DATA@
258256 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
259257 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
260258 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
259 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
260 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
261 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
262 INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
263 INTROSPECTION_LIBS = @INTROSPECTION_LIBS@
264 INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@
265 INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
266 INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
261267 LD = @LD@
262268 LDFLAGS = @LDFLAGS@
263269 LIBOBJS = @LIBOBJS@
348354 includedir = @includedir@
349355 infodir = @infodir@
350356 install_sh = @install_sh@
357 installed_test_metadir = @installed_test_metadir@
358 installed_testdir = @installed_testdir@
351359 intltool__v_merge_options_ = @intltool__v_merge_options_@
352360 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
353361 libdir = @libdir@
3434 {
3535 GVirConfigCapabilitiesCpu *cpu_caps;
3636 GVirConfigCapabilitiesCpuTopology *topology;
37 GList *features, *iter;
37 GList *features, *iter, *secmodels;
3838 const char *str;
3939
4040 g_assert(host_caps != NULL);
5959 g_assert(gvir_config_capabilities_cpu_topology_get_threads(topology) == 2);
6060 g_object_unref(G_OBJECT(topology));
6161 g_object_unref(G_OBJECT(cpu_caps));
62
63 secmodels = gvir_config_capabilities_host_get_secmodels(host_caps);
64 g_assert(g_list_length(secmodels) == 2);
65 for (iter = secmodels; iter != NULL; iter = iter->next) {
66 GVirConfigCapabilitiesHostSecModel *secmodel;
67
68 g_assert(iter->data != NULL);
69 secmodel = GVIR_CONFIG_CAPABILITIES_HOST_SECMODEL(iter->data);
70 g_assert(gvir_config_capabilities_host_secmodel_get_model(secmodel) != NULL);
71 g_assert(gvir_config_capabilities_host_secmodel_get_doi(secmodel) != NULL);
72 g_object_unref(G_OBJECT(iter->data));
73 }
74 g_list_free(secmodels);
6275 }
6376
6477 static void verify_guest_caps(GVirConfigCapabilitiesGuest *guest_caps)
137137 GVirConfigDomainClock *klock;
138138 GVirConfigDomainTimerPit *pit;
139139 GVirConfigDomainTimerRtc *rtc;
140 GVirConfigDomainTimerHpet *hpet;
140141
141142 klock = gvir_config_domain_clock_new();
142 gvir_config_domain_clock_set_offset(klock, GVIR_CONFIG_DOMAIN_CLOCK_UTC);
143 gvir_config_domain_clock_set_offset(klock, GVIR_CONFIG_DOMAIN_CLOCK_TIMEZONE);
144 gvir_config_domain_clock_set_timezone(klock, "CEST");
145 g_assert(gvir_config_domain_clock_get_offset(klock) == GVIR_CONFIG_DOMAIN_CLOCK_TIMEZONE);
146 g_str_const_check(gvir_config_domain_clock_get_timezone(klock), "CEST");
143147
144148 pit = gvir_config_domain_timer_pit_new();
145149 gvir_config_domain_timer_set_tick_policy(GVIR_CONFIG_DOMAIN_TIMER(pit),
146150 GVIR_CONFIG_DOMAIN_TIMER_TICK_POLICY_DELAY);
147151 gvir_config_domain_clock_add_timer(klock, GVIR_CONFIG_DOMAIN_TIMER(pit));
148152 g_assert(gvir_config_domain_timer_get_tick_policy(GVIR_CONFIG_DOMAIN_TIMER(pit)) == GVIR_CONFIG_DOMAIN_TIMER_TICK_POLICY_DELAY);
153 g_assert(gvir_config_domain_timer_get_present(GVIR_CONFIG_DOMAIN_TIMER(pit)) != FALSE);
149154 g_object_unref(G_OBJECT(pit));
150155
151156 rtc = gvir_config_domain_timer_rtc_new();
153158 GVIR_CONFIG_DOMAIN_TIMER_TICK_POLICY_CATCHUP);
154159 gvir_config_domain_clock_add_timer(klock, GVIR_CONFIG_DOMAIN_TIMER(rtc));
155160 g_assert(gvir_config_domain_timer_get_tick_policy(GVIR_CONFIG_DOMAIN_TIMER(rtc)) == GVIR_CONFIG_DOMAIN_TIMER_TICK_POLICY_CATCHUP);
161 g_assert(gvir_config_domain_timer_get_present(GVIR_CONFIG_DOMAIN_TIMER(rtc)) != FALSE);
156162 g_object_unref(G_OBJECT(rtc));
157163
164 hpet = gvir_config_domain_timer_hpet_new();
165 gvir_config_domain_timer_set_present(GVIR_CONFIG_DOMAIN_TIMER(hpet), FALSE);
166 gvir_config_domain_clock_add_timer(klock, GVIR_CONFIG_DOMAIN_TIMER(hpet));
167 g_assert(gvir_config_domain_timer_get_present(GVIR_CONFIG_DOMAIN_TIMER(hpet)) == FALSE);
168 g_object_unref(G_OBJECT(hpet));
169
158170 gvir_config_domain_set_clock(domain, klock);
171 g_object_unref(G_OBJECT(klock));
172
173 klock = gvir_config_domain_get_clock(domain);
174 g_assert(klock != NULL);
175 g_assert(gvir_config_domain_clock_get_offset(klock) == GVIR_CONFIG_DOMAIN_CLOCK_TIMEZONE);
176 g_str_const_check(gvir_config_domain_clock_get_timezone(klock), "CEST");
159177 g_object_unref(G_OBJECT(klock));
160178
161179 /* os node */
232250
233251 /* disk node */
234252 GVirConfigDomainDisk *disk;
253 GVirConfigDomainDiskDriver *driver;
254
255 driver = gvir_config_domain_disk_driver_new();
256 gvir_config_domain_disk_driver_set_name(driver, "foo");
257 gvir_config_domain_disk_driver_set_format(driver, GVIR_CONFIG_DOMAIN_DISK_FORMAT_BOCHS);
258 gvir_config_domain_disk_driver_set_name(driver, "qemu");
259 gvir_config_domain_disk_driver_set_cache(driver, GVIR_CONFIG_DOMAIN_DISK_CACHE_NONE);
260 gvir_config_domain_disk_driver_set_format(driver, GVIR_CONFIG_DOMAIN_DISK_FORMAT_QCOW2);
261 gvir_config_domain_disk_driver_set_copy_on_read(driver, TRUE);
235262
236263 disk = gvir_config_domain_disk_new();
237264 gvir_config_domain_disk_set_type(disk, GVIR_CONFIG_DOMAIN_DISK_FILE);
238265 gvir_config_domain_disk_set_guest_device_type(disk, GVIR_CONFIG_DOMAIN_DISK_GUEST_DEVICE_DISK);
239266 gvir_config_domain_disk_set_source(disk, "/tmp/foo/bar");
240267 gvir_config_domain_disk_set_startup_policy (disk, GVIR_CONFIG_DOMAIN_DISK_STARTUP_POLICY_REQUISITE);
241 gvir_config_domain_disk_set_driver_name(disk, "foo");
242 gvir_config_domain_disk_set_driver_format(disk, GVIR_CONFIG_DOMAIN_DISK_FORMAT_BOCHS);
243 gvir_config_domain_disk_set_driver_name(disk, "qemu");
244 gvir_config_domain_disk_set_driver_cache(disk, GVIR_CONFIG_DOMAIN_DISK_CACHE_NONE);
245 gvir_config_domain_disk_set_driver_format(disk, GVIR_CONFIG_DOMAIN_DISK_FORMAT_QCOW2);
246268 gvir_config_domain_disk_set_target_bus(disk, GVIR_CONFIG_DOMAIN_DISK_BUS_IDE);
247269 gvir_config_domain_disk_set_target_dev(disk, "hda");
270 gvir_config_domain_disk_set_driver(disk, driver);
271 g_object_unref(G_OBJECT(driver));
248272 devices = g_list_append(devices, GVIR_CONFIG_DOMAIN_DEVICE(disk));
249273
250274 g_assert(gvir_config_domain_disk_get_disk_type(disk) == GVIR_CONFIG_DOMAIN_DISK_FILE);
251275 g_assert(gvir_config_domain_disk_get_guest_device_type(disk) == GVIR_CONFIG_DOMAIN_DISK_GUEST_DEVICE_DISK);
252276 g_assert(gvir_config_domain_disk_get_startup_policy (disk) == GVIR_CONFIG_DOMAIN_DISK_STARTUP_POLICY_REQUISITE);
253277 g_str_const_check(gvir_config_domain_disk_get_source(disk), "/tmp/foo/bar");
254 g_assert(gvir_config_domain_disk_get_driver_cache(disk) == GVIR_CONFIG_DOMAIN_DISK_CACHE_NONE);
255 g_str_const_check(gvir_config_domain_disk_get_driver_name(disk), "qemu");
256 g_assert(gvir_config_domain_disk_get_driver_format(disk) == GVIR_CONFIG_DOMAIN_DISK_FORMAT_QCOW2);
278 driver = gvir_config_domain_disk_get_driver(disk);
279 g_assert(driver != NULL);
280 g_assert(gvir_config_domain_disk_driver_get_cache(driver) == GVIR_CONFIG_DOMAIN_DISK_CACHE_NONE);
281 g_str_const_check(gvir_config_domain_disk_driver_get_name(driver), "qemu");
282 g_assert(gvir_config_domain_disk_driver_get_format(driver) == GVIR_CONFIG_DOMAIN_DISK_FORMAT_QCOW2);
283 g_assert(gvir_config_domain_disk_driver_get_copy_on_read(driver));
257284 g_assert(gvir_config_domain_disk_get_target_bus(disk) == GVIR_CONFIG_DOMAIN_DISK_BUS_IDE);
258285 g_str_const_check(gvir_config_domain_disk_get_target_dev(disk), "hda");
259286
3636 -Wl,--version-script=$(srcdir)/libvirt-glib.sym \
3737 -version-info $(LIBVIRT_GLIB_VERSION_INFO)
3838
39 if WITH_GOBJECT_INTROSPECTION
39 # .libs/libvirt-glib.so is built by libtool as a side-effect of the Makefile
40 # rule for libosvirt-glib.la. However, checking symbols relies on Linux ELF layout
41 if WITH_LINUX
42 check-symfile: libvirt-glib.sym libvirt-glib-1.0.la
43 $(AM_V_GEN)$(PERL) $(top_srcdir)/build-aux/check-symfile.pl $(srcdir)/libvirt-glib.sym \
44 .libs/libvirt-glib-1.0.so
45 else ! WITH_LINUX
46 check-symfile:
47 endif ! WITH_LINUX
48 check-symsorting:
49 $(AM_V_GEN)$(PERL) $(top_srcdir)/build-aux/check-symsorting.pl \
50 $(srcdir)/libvirt-glib.sym
51 check-local: check-symfile check-symsorting
4052
41 LibvirtGLib-1.0.gir: libvirt-glib-1.0.la $(G_IR_SCANNER) Makefile.am
42 $(AM_V_GEN)$(G_IR_SCANNER) \
43 --quiet \
44 --warn-all \
45 --namespace LibvirtGLib \
46 --nsversion 1.0 \
47 --include GLib-2.0 \
48 --identifier-prefix=GVir \
49 --symbol-prefix=gvir \
50 --library=$(builddir)/libvirt-glib-1.0.la \
51 --output $@ \
52 -I$(top_srcdir) \
53 --verbose \
54 --pkg=gthread-2.0 \
55 --c-include="libvirt-glib/libvirt-glib.h" \
56 --pkg-export=libvirt-glib-1.0 \
57 $(libvirt_glib_1_0_la_SOURCES:%=$(srcdir)/%)
53 -include $(INTROSPECTION_MAKEFILE)
54 INTROSPECTION_GIRS =
55 CLEANFILES=
56
57 if HAVE_INTROSPECTION
58 LibvirtGLib-1.0.gir: libvirt-glib-1.0.la
59 LibvirtGLib_1_0_gir_INCLUDES = GLib-2.0
60 LibvirtGLib_1_0_gir_PACKAGES = glib-2.0
61 LibvirtGLib_1_0_gir_EXPORT_PACKAGES = libvirt-glib-1.0
62 LibvirtGLib_1_0_gir_LIBS = libvirt-glib-1.0.la
63 LibvirtGLib_1_0_gir_FILES = $(libvirt_glib_1_0_la_SOURCES)
64 LibvirtGLib_1_0_gir_CFLAGS = $(libvirt_glib_1_0_la_CFLAGS)
65 LibvirtGLib_1_0_gir_SCANNERFLAGS = \
66 --identifier-prefix=GVir \
67 --symbol-prefix=gvir \
68 --c-include="libvirt-glib/libvirt-glib.h" \
69 $(NULL)
70 INTROSPECTION_GIRS += LibvirtGLib-1.0.gir
5871
5972 girdir = $(datadir)/gir-1.0
6073 gir_DATA = LibvirtGLib-1.0.gir
6174
62 typelibsdir = $(libdir)/girepository-1.0
63 typelibs_DATA = LibvirtGLib-1.0.typelib
75 typelibdir = $(libdir)/girepository-1.0
76 typelib_DATA = LibvirtGLib-1.0.typelib
6477
65 %.typelib: %.gir
66 $(AM_V_GEN)$(G_IR_COMPILER) \
67 --includedir=$(builddir) \
68 --includedir=$(girdir) \
69 -o $@ $<
70
71 CLEANFILES = $(gir_DATA) $(typelibs_DATA)
72
73 endif # WITH_GOBJECT_INTROSPECTION
78 CLEANFILES += $(gir_DATA) $(typelib_DATA)
79 endif # HAVE_INTROSPECTION
0 # Makefile.in generated by automake 1.13.2 from Makefile.am.
0 # Makefile.in generated by automake 1.13.4 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
7979 POST_UNINSTALL = :
8080 build_triplet = @build@
8181 host_triplet = @host@
82 @HAVE_INTROSPECTION_TRUE@am__append_1 = LibvirtGLib-1.0.gir
83 @HAVE_INTROSPECTION_TRUE@am__append_2 = $(gir_DATA) $(typelib_DATA)
8284 subdir = libvirt-glib
8385 DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
8486 $(top_srcdir)/build-aux/depcomp $(libvirt_glib_1_0_la_HEADERS)
8587 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
86 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
87 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
88 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
89 $(top_srcdir)/m4/lt~obsolete.m4 \
88 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
89 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
90 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
91 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
9092 $(top_srcdir)/m4/manywarnings.m4 \
9193 $(top_srcdir)/m4/virt-compile-warnings.m4 \
9294 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
125127 $(am__cd) "$$dir" && rm -f $$files; }; \
126128 }
127129 am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(girdir)" \
128 "$(DESTDIR)$(typelibsdir)" \
130 "$(DESTDIR)$(typelibdir)" \
129131 "$(DESTDIR)$(libvirt_glib_1_0_ladir)"
130132 LTLIBRARIES = $(lib_LTLIBRARIES)
131133 am__DEPENDENCIES_1 =
184186 n|no|NO) false;; \
185187 *) (install-info --version) >/dev/null 2>&1;; \
186188 esac
187 DATA = $(gir_DATA) $(typelibs_DATA)
189 DATA = $(gir_DATA) $(typelib_DATA)
188190 HEADERS = $(libvirt_glib_1_0_la_HEADERS)
189191 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
190192 # Read a list of newline-separated strings from the standard input,
245247 GIO2_LIBS = @GIO2_LIBS@
246248 GLIB2_CFLAGS = @GLIB2_CFLAGS@
247249 GLIB2_LIBS = @GLIB2_LIBS@
250 GLIB2_REQUIRED = @GLIB2_REQUIRED@
248251 GLIB_MKENUMS = @GLIB_MKENUMS@
249252 GMSGFMT = @GMSGFMT@
250253 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
251254 GOBJECT2_LIBS = @GOBJECT2_LIBS@
252 GOBJECT_INTROSPECTION_CFLAGS = @GOBJECT_INTROSPECTION_CFLAGS@
253 GOBJECT_INTROSPECTION_LIBS = @GOBJECT_INTROSPECTION_LIBS@
254255 GREP = @GREP@
255256 GTHREAD2_CFLAGS = @GTHREAD2_CFLAGS@
256257 GTHREAD2_LIBS = @GTHREAD2_LIBS@
257258 GTKDOC_CHECK = @GTKDOC_CHECK@
259 GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
258260 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
259261 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
260262 GTKDOC_MKPDF = @GTKDOC_MKPDF@
261263 GTKDOC_REBASE = @GTKDOC_REBASE@
262 G_IR_COMPILER = @G_IR_COMPILER@
263 G_IR_SCANNER = @G_IR_SCANNER@
264264 HTML_DIR = @HTML_DIR@
265265 INSTALL = @INSTALL@
266266 INSTALL_DATA = @INSTALL_DATA@
275275 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
276276 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
277277 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
278 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
279 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
280 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
281 INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
282 INTROSPECTION_LIBS = @INTROSPECTION_LIBS@
283 INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@
284 INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
285 INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
278286 LD = @LD@
279287 LDFLAGS = @LDFLAGS@
280288 LIBOBJS = @LIBOBJS@
365373 includedir = @includedir@
366374 infodir = @infodir@
367375 install_sh = @install_sh@
376 installed_test_metadir = @installed_test_metadir@
377 installed_testdir = @installed_testdir@
368378 intltool__v_merge_options_ = @intltool__v_merge_options_@
369379 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
370380 libdir = @libdir@
428438 -Wl,--version-script=$(srcdir)/libvirt-glib.sym \
429439 -version-info $(LIBVIRT_GLIB_VERSION_INFO)
430440
431 @WITH_GOBJECT_INTROSPECTION_TRUE@girdir = $(datadir)/gir-1.0
432 @WITH_GOBJECT_INTROSPECTION_TRUE@gir_DATA = LibvirtGLib-1.0.gir
433 @WITH_GOBJECT_INTROSPECTION_TRUE@typelibsdir = $(libdir)/girepository-1.0
434 @WITH_GOBJECT_INTROSPECTION_TRUE@typelibs_DATA = LibvirtGLib-1.0.typelib
435 @WITH_GOBJECT_INTROSPECTION_TRUE@CLEANFILES = $(gir_DATA) $(typelibs_DATA)
441 INTROSPECTION_GIRS = $(am__append_1)
442 CLEANFILES = $(am__append_2)
443 @HAVE_INTROSPECTION_TRUE@LibvirtGLib_1_0_gir_INCLUDES = GLib-2.0
444 @HAVE_INTROSPECTION_TRUE@LibvirtGLib_1_0_gir_PACKAGES = glib-2.0
445 @HAVE_INTROSPECTION_TRUE@LibvirtGLib_1_0_gir_EXPORT_PACKAGES = libvirt-glib-1.0
446 @HAVE_INTROSPECTION_TRUE@LibvirtGLib_1_0_gir_LIBS = libvirt-glib-1.0.la
447 @HAVE_INTROSPECTION_TRUE@LibvirtGLib_1_0_gir_FILES = $(libvirt_glib_1_0_la_SOURCES)
448 @HAVE_INTROSPECTION_TRUE@LibvirtGLib_1_0_gir_CFLAGS = $(libvirt_glib_1_0_la_CFLAGS)
449 @HAVE_INTROSPECTION_TRUE@LibvirtGLib_1_0_gir_SCANNERFLAGS = \
450 @HAVE_INTROSPECTION_TRUE@ --identifier-prefix=GVir \
451 @HAVE_INTROSPECTION_TRUE@ --symbol-prefix=gvir \
452 @HAVE_INTROSPECTION_TRUE@ --c-include="libvirt-glib/libvirt-glib.h" \
453 @HAVE_INTROSPECTION_TRUE@ $(NULL)
454
455 @HAVE_INTROSPECTION_TRUE@girdir = $(datadir)/gir-1.0
456 @HAVE_INTROSPECTION_TRUE@gir_DATA = LibvirtGLib-1.0.gir
457 @HAVE_INTROSPECTION_TRUE@typelibdir = $(libdir)/girepository-1.0
458 @HAVE_INTROSPECTION_TRUE@typelib_DATA = LibvirtGLib-1.0.typelib
436459 all: all-am
437460
438461 .SUFFIXES:
584607 @list='$(gir_DATA)'; test -n "$(girdir)" || list=; \
585608 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
586609 dir='$(DESTDIR)$(girdir)'; $(am__uninstall_files_from_dir)
587 install-typelibsDATA: $(typelibs_DATA)
610 install-typelibDATA: $(typelib_DATA)
588611 @$(NORMAL_INSTALL)
589 @list='$(typelibs_DATA)'; test -n "$(typelibsdir)" || list=; \
612 @list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \
590613 if test -n "$$list"; then \
591 echo " $(MKDIR_P) '$(DESTDIR)$(typelibsdir)'"; \
592 $(MKDIR_P) "$(DESTDIR)$(typelibsdir)" || exit 1; \
614 echo " $(MKDIR_P) '$(DESTDIR)$(typelibdir)'"; \
615 $(MKDIR_P) "$(DESTDIR)$(typelibdir)" || exit 1; \
593616 fi; \
594617 for p in $$list; do \
595618 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
596619 echo "$$d$$p"; \
597620 done | $(am__base_list) | \
598621 while read files; do \
599 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(typelibsdir)'"; \
600 $(INSTALL_DATA) $$files "$(DESTDIR)$(typelibsdir)" || exit $$?; \
622 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(typelibdir)'"; \
623 $(INSTALL_DATA) $$files "$(DESTDIR)$(typelibdir)" || exit $$?; \
601624 done
602625
603 uninstall-typelibsDATA:
626 uninstall-typelibDATA:
604627 @$(NORMAL_UNINSTALL)
605 @list='$(typelibs_DATA)'; test -n "$(typelibsdir)" || list=; \
628 @list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \
606629 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
607 dir='$(DESTDIR)$(typelibsdir)'; $(am__uninstall_files_from_dir)
630 dir='$(DESTDIR)$(typelibdir)'; $(am__uninstall_files_from_dir)
608631 install-libvirt_glib_1_0_laHEADERS: $(libvirt_glib_1_0_la_HEADERS)
609632 @$(NORMAL_INSTALL)
610633 @list='$(libvirt_glib_1_0_la_HEADERS)'; test -n "$(libvirt_glib_1_0_ladir)" || list=; \
710733 fi; \
711734 done
712735 check-am: all-am
736 $(MAKE) $(AM_MAKEFLAGS) check-local
713737 check: check-am
714738 all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS)
715739 installdirs:
716 for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(girdir)" "$(DESTDIR)$(typelibsdir)" "$(DESTDIR)$(libvirt_glib_1_0_ladir)"; do \
740 for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(girdir)" "$(DESTDIR)$(typelibdir)" "$(DESTDIR)$(libvirt_glib_1_0_ladir)"; do \
717741 test -z "$$dir" || $(MKDIR_P) "$$dir"; \
718742 done
719743 install: install-am
771795 info-am:
772796
773797 install-data-am: install-girDATA install-libvirt_glib_1_0_laHEADERS \
774 install-typelibsDATA
798 install-typelibDATA
775799
776800 install-dvi: install-dvi-am
777801
818842 ps-am:
819843
820844 uninstall-am: uninstall-girDATA uninstall-libLTLIBRARIES \
821 uninstall-libvirt_glib_1_0_laHEADERS uninstall-typelibsDATA
822
823 .MAKE: install-am install-strip
824
825 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
826 clean-libLTLIBRARIES clean-libtool cscopelist-am ctags \
827 ctags-am distclean distclean-compile distclean-generic \
845 uninstall-libvirt_glib_1_0_laHEADERS uninstall-typelibDATA
846
847 .MAKE: check-am install-am install-strip
848
849 .PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \
850 clean-generic clean-libLTLIBRARIES clean-libtool cscopelist-am \
851 ctags ctags-am distclean distclean-compile distclean-generic \
828852 distclean-libtool distclean-tags distdir dvi dvi-am html \
829853 html-am info info-am install install-am install-data \
830854 install-data-am install-dvi install-dvi-am install-exec \
832856 install-info install-info-am install-libLTLIBRARIES \
833857 install-libvirt_glib_1_0_laHEADERS install-man install-pdf \
834858 install-pdf-am install-ps install-ps-am install-strip \
835 install-typelibsDATA installcheck installcheck-am installdirs \
859 install-typelibDATA installcheck installcheck-am installdirs \
836860 maintainer-clean maintainer-clean-generic mostlyclean \
837861 mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
838862 pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \
839863 uninstall-girDATA uninstall-libLTLIBRARIES \
840 uninstall-libvirt_glib_1_0_laHEADERS uninstall-typelibsDATA
841
842
843 @WITH_GOBJECT_INTROSPECTION_TRUE@LibvirtGLib-1.0.gir: libvirt-glib-1.0.la $(G_IR_SCANNER) Makefile.am
844 @WITH_GOBJECT_INTROSPECTION_TRUE@ $(AM_V_GEN)$(G_IR_SCANNER) \
845 @WITH_GOBJECT_INTROSPECTION_TRUE@ --quiet \
846 @WITH_GOBJECT_INTROSPECTION_TRUE@ --warn-all \
847 @WITH_GOBJECT_INTROSPECTION_TRUE@ --namespace LibvirtGLib \
848 @WITH_GOBJECT_INTROSPECTION_TRUE@ --nsversion 1.0 \
849 @WITH_GOBJECT_INTROSPECTION_TRUE@ --include GLib-2.0 \
850 @WITH_GOBJECT_INTROSPECTION_TRUE@ --identifier-prefix=GVir \
851 @WITH_GOBJECT_INTROSPECTION_TRUE@ --symbol-prefix=gvir \
852 @WITH_GOBJECT_INTROSPECTION_TRUE@ --library=$(builddir)/libvirt-glib-1.0.la \
853 @WITH_GOBJECT_INTROSPECTION_TRUE@ --output $@ \
854 @WITH_GOBJECT_INTROSPECTION_TRUE@ -I$(top_srcdir) \
855 @WITH_GOBJECT_INTROSPECTION_TRUE@ --verbose \
856 @WITH_GOBJECT_INTROSPECTION_TRUE@ --pkg=gthread-2.0 \
857 @WITH_GOBJECT_INTROSPECTION_TRUE@ --c-include="libvirt-glib/libvirt-glib.h" \
858 @WITH_GOBJECT_INTROSPECTION_TRUE@ --pkg-export=libvirt-glib-1.0 \
859 @WITH_GOBJECT_INTROSPECTION_TRUE@ $(libvirt_glib_1_0_la_SOURCES:%=$(srcdir)/%)
860
861 @WITH_GOBJECT_INTROSPECTION_TRUE@%.typelib: %.gir
862 @WITH_GOBJECT_INTROSPECTION_TRUE@ $(AM_V_GEN)$(G_IR_COMPILER) \
863 @WITH_GOBJECT_INTROSPECTION_TRUE@ --includedir=$(builddir) \
864 @WITH_GOBJECT_INTROSPECTION_TRUE@ --includedir=$(girdir) \
865 @WITH_GOBJECT_INTROSPECTION_TRUE@ -o $@ $<
864 uninstall-libvirt_glib_1_0_laHEADERS uninstall-typelibDATA
865
866
867 # .libs/libvirt-glib.so is built by libtool as a side-effect of the Makefile
868 # rule for libosvirt-glib.la. However, checking symbols relies on Linux ELF layout
869 @WITH_LINUX_TRUE@check-symfile: libvirt-glib.sym libvirt-glib-1.0.la
870 @WITH_LINUX_TRUE@ $(AM_V_GEN)$(PERL) $(top_srcdir)/build-aux/check-symfile.pl $(srcdir)/libvirt-glib.sym \
871 @WITH_LINUX_TRUE@ .libs/libvirt-glib-1.0.so
872 @WITH_LINUX_FALSE@check-symfile:
873 check-symsorting:
874 $(AM_V_GEN)$(PERL) $(top_srcdir)/build-aux/check-symsorting.pl \
875 $(srcdir)/libvirt-glib.sym
876 check-local: check-symfile check-symsorting
877
878 -include $(INTROSPECTION_MAKEFILE)
879
880 @HAVE_INTROSPECTION_TRUE@LibvirtGLib-1.0.gir: libvirt-glib-1.0.la
866881
867882 # Tell versions [3.59,3.63) of GNU make to not export all variables.
868883 # Otherwise a system limit (for SysV at least) may be exceeded.
2929 #include <libvirt/libvirt.h>
3030
3131 #include "libvirt-glib/libvirt-glib.h"
32
33 #ifdef G_OS_WIN32
34 #include <io.h>
35 #endif
3236
3337 /**
3438 * SECTION:libvirt-glib-event
163167 data->events = events;
164168 data->cb = cb;
165169 data->opaque = opaque;
170 #ifdef G_OS_WIN32
171 data->channel = g_io_channel_win32_new_socket(_get_osfhandle(fd));
172 #else
166173 data->channel = g_io_channel_unix_new(fd);
174 #endif
167175 data->ff = ff;
168176
169177 g_debug("Add handle %p %d %d %d %p\n", data, data->watch, data->fd, events, data->opaque);
170178
171 data->source = g_io_add_watch(data->channel,
172 cond,
173 gvir_event_handle_dispatch,
174 data);
179 if (events != 0) {
180 data->source = g_io_add_watch(data->channel,
181 cond,
182 gvir_event_handle_dispatch,
183 data);
184 }
175185
176186 g_ptr_array_add(handles, data);
177187
281291
282292 g_debug("Remove handle %p %d %d\n", data, watch, data->fd);
283293
284 if (!data->source)
285 goto cleanup;
286
287 g_source_remove(data->source);
288 data->source = 0;
289 data->events = 0;
294 if (data->source != 0) {
295 g_source_remove(data->source);
296 data->source = 0;
297 data->events = 0;
298 }
299
300 g_warn_if_fail(data->channel != NULL);
301 g_io_channel_unref(data->channel);
302 data->channel = NULL;
303
290304 /* since the actual watch deletion is done asynchronously, a handle_update call may
291305 * reschedule the watch before it's fully deleted, that's why we need to mark it as
292306 * 'removed' to prevent reuse
437451
438452 g_debug("Remove timeout %p %d\n", data, timer);
439453
440 if (!data->source)
441 goto cleanup;
442
443 g_source_remove(data->source);
444 data->source = 0;
454 if (data->source != 0) {
455 g_source_remove(data->source);
456 data->source = 0;
457 }
458
445459 /* since the actual timeout deletion is done asynchronously, a timeout_update call may
446460 * reschedule the timeout before it's fully deleted, that's why we need to mark it as
447461 * 'removed' to prevent reuse
00 LIBVIRT_GLIB_0.0.7 {
11 global:
2 gvir_init;
3 gvir_init_check;
4 gvir_event_register;
2 gvir_error_new;
3 gvir_error_new_literal;
4 gvir_error_new_valist;
55
6 gvir_error_new;
7 gvir_error_new_valist;
8 gvir_error_new_literal;
6 gvir_event_register;
7
8 gvir_init;
9 gvir_init_check;
10
911 gvir_set_error;
12 gvir_set_error_literal;
1013 gvir_set_error_valist;
11 gvir_set_error_literal;
1214
1315 local:
1416 *;
2020 %define libvirt_version 0.10.2
2121
2222 Name: libvirt-glib
23 Version: 0.1.7
23 Version: 0.1.9
2424 Release: 1%{?dist}%{?extra_release}
2525 Summary: libvirt glib integration for events
2626 Group: Development/Libraries
2929 Source0: ftp://libvirt.org/libvirt/glib/%{name}-%{version}.tar.gz
3030 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
3131
32 BuildRequires: glib2-devel >= 2.22.0
32 BuildRequires: glib2-devel >= 2.36.0
3333 BuildRequires: libvirt-devel >= %{libvirt_version}
3434 BuildRequires: python-devel
3535 %if %{with_introspection}
137137 rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt-gobject-1.0.a
138138 rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt-gobject-1.0.la
139139
140 %find_lang %{name}
141
140142 %clean
141143 rm -rf $RPM_BUILD_ROOT
142144
152154
153155 %postun -n libvirt-gobject -p /sbin/ldconfig
154156
155 %files
157 %files -f %{name}.lang
156158 %defattr(-,root,root,-)
157159 %doc README COPYING AUTHORS ChangeLog NEWS
158160 %{_libdir}/libvirt-glib-1.0.so.*
159161 %if %{with_introspection}
160162 %{_libdir}/girepository-1.0/LibvirtGLib-1.0.typelib
161163 %endif
162 %if %{with_vala}
163 %{_datadir}/vala/vapi/libvirt-glib-1.0.vapi
164 %endif
165164
166165 %files -n libvirt-gconfig
167166 %{_libdir}/libvirt-gconfig-1.0.so.*
168167 %if %{with_introspection}
169168 %{_libdir}/girepository-1.0/LibvirtGConfig-1.0.typelib
170169 %endif
171 %if %{with_vala}
172 %{_datadir}/vala/vapi/libvirt-gconfig-1.0.vapi
173 %endif
174170
175171 %files -n libvirt-gobject
176172 %{_libdir}/libvirt-gobject-1.0.so.*
177173 %if %{with_introspection}
178174 %{_libdir}/girepository-1.0/LibvirtGObject-1.0.typelib
179 %endif
180 %if %{with_vala}
181 %{_datadir}/vala/vapi/libvirt-gobject-1.0.deps
182 %{_datadir}/vala/vapi/libvirt-gobject-1.0.vapi
183175 %endif
184176
185177 %files devel
195187 %{_datadir}/gir-1.0/LibvirtGLib-1.0.gir
196188 %endif
197189 %{_datadir}/gtk-doc/html/Libvirt-glib
190 %if %{with_vala}
191 %{_datadir}/vala/vapi/libvirt-glib-1.0.vapi
192 %endif
198193
199194 %files -n libvirt-gconfig-devel
200195 %defattr(-,root,root,-)
209204 %{_datadir}/gir-1.0/LibvirtGConfig-1.0.gir
210205 %endif
211206 %{_datadir}/gtk-doc/html/Libvirt-gconfig
207 %if %{with_vala}
208 %{_datadir}/vala/vapi/libvirt-gconfig-1.0.vapi
209 %endif
212210
213211 %files -n libvirt-gobject-devel
214212 %defattr(-,root,root,-)
223221 %{_datadir}/gir-1.0/LibvirtGObject-1.0.gir
224222 %endif
225223 %{_datadir}/gtk-doc/html/Libvirt-gobject
224 %if %{with_vala}
225 %{_datadir}/vala/vapi/libvirt-gobject-1.0.deps
226 %{_datadir}/vala/vapi/libvirt-gobject-1.0.vapi
227 %endif
226228
227229 %if %{with_python}
228230 %files python
2929 Source0: ftp://libvirt.org/libvirt/glib/%{name}-%{version}.tar.gz
3030 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
3131
32 BuildRequires: glib2-devel >= 2.22.0
32 BuildRequires: glib2-devel >= @GLIB2_REQUIRED@
3333 BuildRequires: libvirt-devel >= %{libvirt_version}
3434 BuildRequires: python-devel
3535 %if %{with_introspection}
137137 rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt-gobject-1.0.a
138138 rm -f $RPM_BUILD_ROOT%{_libdir}/libvirt-gobject-1.0.la
139139
140 %find_lang %{name}
141
140142 %clean
141143 rm -rf $RPM_BUILD_ROOT
142144
152154
153155 %postun -n libvirt-gobject -p /sbin/ldconfig
154156
155 %files
157 %files -f %{name}.lang
156158 %defattr(-,root,root,-)
157159 %doc README COPYING AUTHORS ChangeLog NEWS
158160 %{_libdir}/libvirt-glib-1.0.so.*
159161 %if %{with_introspection}
160162 %{_libdir}/girepository-1.0/LibvirtGLib-1.0.typelib
161163 %endif
162 %if %{with_vala}
163 %{_datadir}/vala/vapi/libvirt-glib-1.0.vapi
164 %endif
165164
166165 %files -n libvirt-gconfig
167166 %{_libdir}/libvirt-gconfig-1.0.so.*
168167 %if %{with_introspection}
169168 %{_libdir}/girepository-1.0/LibvirtGConfig-1.0.typelib
170169 %endif
171 %if %{with_vala}
172 %{_datadir}/vala/vapi/libvirt-gconfig-1.0.vapi
173 %endif
174170
175171 %files -n libvirt-gobject
176172 %{_libdir}/libvirt-gobject-1.0.so.*
177173 %if %{with_introspection}
178174 %{_libdir}/girepository-1.0/LibvirtGObject-1.0.typelib
179 %endif
180 %if %{with_vala}
181 %{_datadir}/vala/vapi/libvirt-gobject-1.0.deps
182 %{_datadir}/vala/vapi/libvirt-gobject-1.0.vapi
183175 %endif
184176
185177 %files devel
195187 %{_datadir}/gir-1.0/LibvirtGLib-1.0.gir
196188 %endif
197189 %{_datadir}/gtk-doc/html/Libvirt-glib
190 %if %{with_vala}
191 %{_datadir}/vala/vapi/libvirt-glib-1.0.vapi
192 %endif
198193
199194 %files -n libvirt-gconfig-devel
200195 %defattr(-,root,root,-)
209204 %{_datadir}/gir-1.0/LibvirtGConfig-1.0.gir
210205 %endif
211206 %{_datadir}/gtk-doc/html/Libvirt-gconfig
207 %if %{with_vala}
208 %{_datadir}/vala/vapi/libvirt-gconfig-1.0.vapi
209 %endif
212210
213211 %files -n libvirt-gobject-devel
214212 %defattr(-,root,root,-)
223221 %{_datadir}/gir-1.0/LibvirtGObject-1.0.gir
224222 %endif
225223 %{_datadir}/gtk-doc/html/Libvirt-gobject
224 %if %{with_vala}
225 %{_datadir}/vala/vapi/libvirt-gobject-1.0.deps
226 %{_datadir}/vala/vapi/libvirt-gobject-1.0.vapi
227 %endif
226228
227229 %if %{with_python}
228230 %files python
6767 -DLIBVIRT_GOBJECT_BUILD \
6868 $(COVERAGE_CFLAGS) \
6969 -I$(top_srcdir) \
70 -I$(top_builddir) \
7071 $(GIO2_CFLAGS) \
7172 $(GOBJECT2_CFLAGS) \
7273 $(GTHREAD2_CFLAGS) \
9192 -Wl,--version-script=$(srcdir)/libvirt-gobject.sym \
9293 -version-info $(LIBVIRT_GLIB_VERSION_INFO)
9394
94 libvirt-gobject-enums.c: libvirt-gobject-domain.h libvirt-gobject-connection.h
95 libvirt-gobject-enums.c: $(libvirt_gobject_1_0_la_HEADERS)
9596 $(AM_V_GEN)glib-mkenums \
9697 --fhead "#include \"libvirt-gobject/libvirt-gobject.h\"\n\n" \
9798 --vhead "static const G@Type@Value _@enum_name@_values[] = {" \
104105 --vtail " return type;\n}\n\n" \
105106 $^ | sed -e 's/g_vir/gvir/g' > $@
106107
107 libvirt-gobject-enums.h: libvirt-gobject-domain.h libvirt-gobject-connection.h
108 libvirt-gobject-enums.h: $(libvirt_gobject_1_0_la_HEADERS)
108109 $(AM_V_GEN)glib-mkenums --fhead "#ifndef __LIBVIRT_GOBJECT_ENUMS_H__\n" \
109110 --fhead "#define __LIBVIRT_GOBJECT_ENUMS_H__\n\n" \
110111 --fhead "G_BEGIN_DECLS\n\n" \
118119
119120 CLEANFILES = $(BUILT_SOURCES)
120121
121 if WITH_GOBJECT_INTROSPECTION
122 # .libs/libvirt-gobject.so is built by libtool as a side-effect of the Makefile
123 # rule for libosvirt-gobject.la. However, checking symbols relies on Linux ELF layout
124 if WITH_LINUX
125 check-symfile: libvirt-gobject.sym libvirt-gobject-1.0.la
126 $(AM_V_GEN)$(PERL) $(top_srcdir)/build-aux/check-symfile.pl $(srcdir)/libvirt-gobject.sym \
127 .libs/libvirt-gobject-1.0.so
128 else ! WITH_LINUX
129 check-symfile:
130 endif ! WITH_LINUX
131 check-symsorting:
132 $(AM_V_GEN)$(PERL) $(top_srcdir)/build-aux/check-symsorting.pl \
133 $(srcdir)/libvirt-gobject.sym
134 check-local: check-symfile check-symsorting
122135
123 LibvirtGObject-1.0.gir: libvirt-gobject-1.0.la $(G_IR_SCANNER) Makefile.am
124 $(AM_V_GEN)$(G_IR_SCANNER) \
125 --quiet \
126 --warn-all \
127 --namespace LibvirtGObject \
128 --nsversion 1.0 \
129 --include GObject-2.0 \
130 --include Gio-2.0 \
131 --include-uninstalled $(top_builddir)/libvirt-glib/LibvirtGLib-1.0.gir \
132 --include-uninstalled $(top_builddir)/libvirt-gconfig/LibvirtGConfig-1.0.gir \
133 --identifier-prefix=GVir \
134 --symbol-prefix=gvir \
135 --library=$(top_builddir)/libvirt-glib/libvirt-glib-1.0.la \
136 --library=$(top_builddir)/libvirt-gconfig/libvirt-gconfig-1.0.la \
137 --library=$(builddir)/libvirt-gobject-1.0.la \
138 --output $@ \
139 -I$(top_builddir) \
140 -I$(top_srcdir) \
141 --verbose \
142 --c-include="libvirt-gobject/libvirt-gobject.h" \
143 --pkg=gthread-2.0 \
144 --pkg=libxml-2.0 \
145 --pkg-export=libvirt-gobject-1.0 \
146 $(srcdir)/libvirt-gobject.h \
147 $(GOBJECT_SOURCE_FILES:%=$(srcdir)/%) \
148 $(GOBJECT_HEADER_FILES:%=$(srcdir)/%) \
149 $(GOBJECT_GENERATED_FILES:%=$(builddir)/%)
136 -include $(INTROSPECTION_MAKEFILE)
137 INTROSPECTION_GIRS =
138
139 if HAVE_INTROSPECTION
140 LibvirtGObject-1.0.gir: libvirt-gobject-1.0.la
141 LibvirtGObject_1_0_gir_INCLUDES = GObject-2.0 Gio-2.0
142 LibvirtGObject_1_0_gir_PACKAGES = gobject-2.0
143 LibvirtGObject_1_0_gir_EXPORT_PACKAGES = libvirt-gobject-1.0
144 LibvirtGObject_1_0_gir_LIBS = \
145 $(top_builddir)/libvirt-glib/libvirt-glib-1.0.la \
146 $(top_builddir)/libvirt-gconfig/libvirt-gconfig-1.0.la \
147 libvirt-gobject-1.0.la
148 LibvirtGObject_1_0_gir_FILES = \
149 $(GOBJECT_SOURCE_FILES) \
150 $(GOBJECT_HEADER_FILES) \
151 $(GOBJECT_GENERATED_FILES) \
152 $(NULL)
153 LibvirtGObject_1_0_gir_CFLAGS = $(libvirt_gobject_1_0_la_CFLAGS)
154 LibvirtGObject_1_0_gir_SCANNERFLAGS = \
155 --identifier-prefix=GVir --symbol-prefix=gvir \
156 --c-include="libvirt-gobject/libvirt-gobject.h" \
157 --include-uninstalled $(top_builddir)/libvirt-glib/LibvirtGLib-1.0.gir \
158 --include-uninstalled $(top_builddir)/libvirt-gconfig/LibvirtGConfig-1.0.gir \
159 $(NULL)
160 INTROSPECTION_GIRS += LibvirtGObject-1.0.gir
161 INTROSPECTION_COMPILER_ARGS = \
162 --includedir=$(top_builddir)/libvirt-glib \
163 --includedir=$(top_builddir)/libvirt-gconfig
150164
151165 girdir = $(datadir)/gir-1.0
152166 gir_DATA = LibvirtGObject-1.0.gir
153167
154 typelibsdir = $(libdir)/girepository-1.0
155 typelibs_DATA = LibvirtGObject-1.0.typelib
168 typelibdir = $(libdir)/girepository-1.0
169 typelib_DATA = LibvirtGObject-1.0.typelib
156170
157 %.typelib: %.gir
158 $(AM_V_GEN)$(G_IR_COMPILER) \
159 --includedir=$(top_builddir)/libvirt-glib \
160 --includedir=$(top_builddir)/libvirt-gconfig \
161 --includedir=$(builddir) \
162 --includedir=$(girdir) \
163 -o $@ $<
164
165 CLEANFILES += $(gir_DATA) $(typelibs_DATA)
166
167 endif # WITH_GOBJECT_INTROSPECTION
171 CLEANFILES += $(gir_DATA) $(typelib_DATA)
172 endif # HAVE_INTROSPECTION
0 # Makefile.in generated by automake 1.13.2 from Makefile.am.
0 # Makefile.in generated by automake 1.13.4 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
7979 POST_UNINSTALL = :
8080 build_triplet = @build@
8181 host_triplet = @host@
82 @WITH_GOBJECT_INTROSPECTION_TRUE@am__append_1 = $(gir_DATA) $(typelibs_DATA)
82 @HAVE_INTROSPECTION_TRUE@am__append_1 = LibvirtGObject-1.0.gir
83 @HAVE_INTROSPECTION_TRUE@am__append_2 = $(gir_DATA) $(typelib_DATA)
8384 subdir = libvirt-gobject
8485 DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
8586 $(top_srcdir)/build-aux/depcomp \
8687 $(libvirt_gobject_1_0_la_HEADERS) $(noinst_HEADERS)
8788 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
88 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
89 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
90 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
91 $(top_srcdir)/m4/lt~obsolete.m4 \
89 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
90 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
91 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
92 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
9293 $(top_srcdir)/m4/manywarnings.m4 \
9394 $(top_srcdir)/m4/virt-compile-warnings.m4 \
9495 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
127128 $(am__cd) "$$dir" && rm -f $$files; }; \
128129 }
129130 am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(girdir)" \
130 "$(DESTDIR)$(typelibsdir)" \
131 "$(DESTDIR)$(typelibdir)" \
131132 "$(DESTDIR)$(libvirt_gobject_1_0_ladir)" \
132133 "$(DESTDIR)$(libvirt_gobject_1_0_ladir)"
133134 LTLIBRARIES = $(lib_LTLIBRARIES)
208209 n|no|NO) false;; \
209210 *) (install-info --version) >/dev/null 2>&1;; \
210211 esac
211 DATA = $(gir_DATA) $(typelibs_DATA)
212 DATA = $(gir_DATA) $(typelib_DATA)
212213 HEADERS = $(libvirt_gobject_1_0_la_HEADERS) \
213214 $(nodist_libvirt_gobject_1_0_la_HEADERS) $(noinst_HEADERS)
214215 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
270271 GIO2_LIBS = @GIO2_LIBS@
271272 GLIB2_CFLAGS = @GLIB2_CFLAGS@
272273 GLIB2_LIBS = @GLIB2_LIBS@
274 GLIB2_REQUIRED = @GLIB2_REQUIRED@
273275 GLIB_MKENUMS = @GLIB_MKENUMS@
274276 GMSGFMT = @GMSGFMT@
275277 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
276278 GOBJECT2_LIBS = @GOBJECT2_LIBS@
277 GOBJECT_INTROSPECTION_CFLAGS = @GOBJECT_INTROSPECTION_CFLAGS@
278 GOBJECT_INTROSPECTION_LIBS = @GOBJECT_INTROSPECTION_LIBS@
279279 GREP = @GREP@
280280 GTHREAD2_CFLAGS = @GTHREAD2_CFLAGS@
281281 GTHREAD2_LIBS = @GTHREAD2_LIBS@
282282 GTKDOC_CHECK = @GTKDOC_CHECK@
283 GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
283284 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
284285 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
285286 GTKDOC_MKPDF = @GTKDOC_MKPDF@
286287 GTKDOC_REBASE = @GTKDOC_REBASE@
287 G_IR_COMPILER = @G_IR_COMPILER@
288 G_IR_SCANNER = @G_IR_SCANNER@
289288 HTML_DIR = @HTML_DIR@
290289 INSTALL = @INSTALL@
291290 INSTALL_DATA = @INSTALL_DATA@
300299 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
301300 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
302301 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
302 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
303 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
304 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
305 INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
306 INTROSPECTION_LIBS = @INTROSPECTION_LIBS@
307 INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@
308 INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
309 INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
303310 LD = @LD@
304311 LDFLAGS = @LDFLAGS@
305312 LIBOBJS = @LIBOBJS@
390397 includedir = @includedir@
391398 infodir = @infodir@
392399 install_sh = @install_sh@
400 installed_test_metadir = @installed_test_metadir@
401 installed_testdir = @installed_testdir@
393402 intltool__v_merge_options_ = @intltool__v_merge_options_@
394403 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
395404 libdir = @libdir@
485494 -DLIBVIRT_GOBJECT_BUILD \
486495 $(COVERAGE_CFLAGS) \
487496 -I$(top_srcdir) \
497 -I$(top_builddir) \
488498 $(GIO2_CFLAGS) \
489499 $(GOBJECT2_CFLAGS) \
490500 $(GTHREAD2_CFLAGS) \
513523 -version-info $(LIBVIRT_GLIB_VERSION_INFO)
514524
515525 BUILT_SOURCES = $(GOBJECT_GENERATED_FILES)
516 CLEANFILES = $(BUILT_SOURCES) $(am__append_1)
517 @WITH_GOBJECT_INTROSPECTION_TRUE@girdir = $(datadir)/gir-1.0
518 @WITH_GOBJECT_INTROSPECTION_TRUE@gir_DATA = LibvirtGObject-1.0.gir
519 @WITH_GOBJECT_INTROSPECTION_TRUE@typelibsdir = $(libdir)/girepository-1.0
520 @WITH_GOBJECT_INTROSPECTION_TRUE@typelibs_DATA = LibvirtGObject-1.0.typelib
526 CLEANFILES = $(BUILT_SOURCES) $(am__append_2)
527 INTROSPECTION_GIRS = $(am__append_1)
528 @HAVE_INTROSPECTION_TRUE@LibvirtGObject_1_0_gir_INCLUDES = GObject-2.0 Gio-2.0
529 @HAVE_INTROSPECTION_TRUE@LibvirtGObject_1_0_gir_PACKAGES = gobject-2.0
530 @HAVE_INTROSPECTION_TRUE@LibvirtGObject_1_0_gir_EXPORT_PACKAGES = libvirt-gobject-1.0
531 @HAVE_INTROSPECTION_TRUE@LibvirtGObject_1_0_gir_LIBS = \
532 @HAVE_INTROSPECTION_TRUE@ $(top_builddir)/libvirt-glib/libvirt-glib-1.0.la \
533 @HAVE_INTROSPECTION_TRUE@ $(top_builddir)/libvirt-gconfig/libvirt-gconfig-1.0.la \
534 @HAVE_INTROSPECTION_TRUE@ libvirt-gobject-1.0.la
535
536 @HAVE_INTROSPECTION_TRUE@LibvirtGObject_1_0_gir_FILES = \
537 @HAVE_INTROSPECTION_TRUE@ $(GOBJECT_SOURCE_FILES) \
538 @HAVE_INTROSPECTION_TRUE@ $(GOBJECT_HEADER_FILES) \
539 @HAVE_INTROSPECTION_TRUE@ $(GOBJECT_GENERATED_FILES) \
540 @HAVE_INTROSPECTION_TRUE@ $(NULL)
541
542 @HAVE_INTROSPECTION_TRUE@LibvirtGObject_1_0_gir_CFLAGS = $(libvirt_gobject_1_0_la_CFLAGS)
543 @HAVE_INTROSPECTION_TRUE@LibvirtGObject_1_0_gir_SCANNERFLAGS = \
544 @HAVE_INTROSPECTION_TRUE@ --identifier-prefix=GVir --symbol-prefix=gvir \
545 @HAVE_INTROSPECTION_TRUE@ --c-include="libvirt-gobject/libvirt-gobject.h" \
546 @HAVE_INTROSPECTION_TRUE@ --include-uninstalled $(top_builddir)/libvirt-glib/LibvirtGLib-1.0.gir \
547 @HAVE_INTROSPECTION_TRUE@ --include-uninstalled $(top_builddir)/libvirt-gconfig/LibvirtGConfig-1.0.gir \
548 @HAVE_INTROSPECTION_TRUE@ $(NULL)
549
550 @HAVE_INTROSPECTION_TRUE@INTROSPECTION_COMPILER_ARGS = \
551 @HAVE_INTROSPECTION_TRUE@ --includedir=$(top_builddir)/libvirt-glib \
552 @HAVE_INTROSPECTION_TRUE@ --includedir=$(top_builddir)/libvirt-gconfig
553
554 @HAVE_INTROSPECTION_TRUE@girdir = $(datadir)/gir-1.0
555 @HAVE_INTROSPECTION_TRUE@gir_DATA = LibvirtGObject-1.0.gir
556 @HAVE_INTROSPECTION_TRUE@typelibdir = $(libdir)/girepository-1.0
557 @HAVE_INTROSPECTION_TRUE@typelib_DATA = LibvirtGObject-1.0.typelib
521558 all: $(BUILT_SOURCES)
522559 $(MAKE) $(AM_MAKEFLAGS) all-am
523560
806843 @list='$(gir_DATA)'; test -n "$(girdir)" || list=; \
807844 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
808845 dir='$(DESTDIR)$(girdir)'; $(am__uninstall_files_from_dir)
809 install-typelibsDATA: $(typelibs_DATA)
846 install-typelibDATA: $(typelib_DATA)
810847 @$(NORMAL_INSTALL)
811 @list='$(typelibs_DATA)'; test -n "$(typelibsdir)" || list=; \
848 @list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \
812849 if test -n "$$list"; then \
813 echo " $(MKDIR_P) '$(DESTDIR)$(typelibsdir)'"; \
814 $(MKDIR_P) "$(DESTDIR)$(typelibsdir)" || exit 1; \
850 echo " $(MKDIR_P) '$(DESTDIR)$(typelibdir)'"; \
851 $(MKDIR_P) "$(DESTDIR)$(typelibdir)" || exit 1; \
815852 fi; \
816853 for p in $$list; do \
817854 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
818855 echo "$$d$$p"; \
819856 done | $(am__base_list) | \
820857 while read files; do \
821 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(typelibsdir)'"; \
822 $(INSTALL_DATA) $$files "$(DESTDIR)$(typelibsdir)" || exit $$?; \
858 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(typelibdir)'"; \
859 $(INSTALL_DATA) $$files "$(DESTDIR)$(typelibdir)" || exit $$?; \
823860 done
824861
825 uninstall-typelibsDATA:
862 uninstall-typelibDATA:
826863 @$(NORMAL_UNINSTALL)
827 @list='$(typelibs_DATA)'; test -n "$(typelibsdir)" || list=; \
864 @list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \
828865 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
829 dir='$(DESTDIR)$(typelibsdir)'; $(am__uninstall_files_from_dir)
866 dir='$(DESTDIR)$(typelibdir)'; $(am__uninstall_files_from_dir)
830867 install-libvirt_gobject_1_0_laHEADERS: $(libvirt_gobject_1_0_la_HEADERS)
831868 @$(NORMAL_INSTALL)
832869 @list='$(libvirt_gobject_1_0_la_HEADERS)'; test -n "$(libvirt_gobject_1_0_ladir)" || list=; \
953990 fi; \
954991 done
955992 check-am: all-am
993 $(MAKE) $(AM_MAKEFLAGS) check-local
956994 check: $(BUILT_SOURCES)
957995 $(MAKE) $(AM_MAKEFLAGS) check-am
958996 all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS)
959997 installdirs:
960 for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(girdir)" "$(DESTDIR)$(typelibsdir)" "$(DESTDIR)$(libvirt_gobject_1_0_ladir)" "$(DESTDIR)$(libvirt_gobject_1_0_ladir)"; do \
998 for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(girdir)" "$(DESTDIR)$(typelibdir)" "$(DESTDIR)$(libvirt_gobject_1_0_ladir)" "$(DESTDIR)$(libvirt_gobject_1_0_ladir)"; do \
961999 test -z "$$dir" || $(MKDIR_P) "$$dir"; \
9621000 done
9631001 install: $(BUILT_SOURCES)
10181056
10191057 install-data-am: install-girDATA install-libvirt_gobject_1_0_laHEADERS \
10201058 install-nodist_libvirt_gobject_1_0_laHEADERS \
1021 install-typelibsDATA
1059 install-typelibDATA
10221060
10231061 install-dvi: install-dvi-am
10241062
10671105 uninstall-am: uninstall-girDATA uninstall-libLTLIBRARIES \
10681106 uninstall-libvirt_gobject_1_0_laHEADERS \
10691107 uninstall-nodist_libvirt_gobject_1_0_laHEADERS \
1070 uninstall-typelibsDATA
1071
1072 .MAKE: all check install install-am install-strip
1073
1074 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
1075 clean-libLTLIBRARIES clean-libtool cscopelist-am ctags \
1076 ctags-am distclean distclean-compile distclean-generic \
1108 uninstall-typelibDATA
1109
1110 .MAKE: all check check-am install install-am install-strip
1111
1112 .PHONY: CTAGS GTAGS TAGS all all-am check check-am check-local clean \
1113 clean-generic clean-libLTLIBRARIES clean-libtool cscopelist-am \
1114 ctags ctags-am distclean distclean-compile distclean-generic \
10771115 distclean-libtool distclean-tags distdir dvi dvi-am html \
10781116 html-am info info-am install install-am install-data \
10791117 install-data-am install-dvi install-dvi-am install-exec \
10821120 install-libvirt_gobject_1_0_laHEADERS install-man \
10831121 install-nodist_libvirt_gobject_1_0_laHEADERS install-pdf \
10841122 install-pdf-am install-ps install-ps-am install-strip \
1085 install-typelibsDATA installcheck installcheck-am installdirs \
1123 install-typelibDATA installcheck installcheck-am installdirs \
10861124 maintainer-clean maintainer-clean-generic mostlyclean \
10871125 mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
10881126 pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \
10891127 uninstall-girDATA uninstall-libLTLIBRARIES \
10901128 uninstall-libvirt_gobject_1_0_laHEADERS \
10911129 uninstall-nodist_libvirt_gobject_1_0_laHEADERS \
1092 uninstall-typelibsDATA
1093
1094
1095 libvirt-gobject-enums.c: libvirt-gobject-domain.h libvirt-gobject-connection.h
1130 uninstall-typelibDATA
1131
1132
1133 libvirt-gobject-enums.c: $(libvirt_gobject_1_0_la_HEADERS)
10961134 $(AM_V_GEN)glib-mkenums \
10971135 --fhead "#include \"libvirt-gobject/libvirt-gobject.h\"\n\n" \
10981136 --vhead "static const G@Type@Value _@enum_name@_values[] = {" \
11051143 --vtail " return type;\n}\n\n" \
11061144 $^ | sed -e 's/g_vir/gvir/g' > $@
11071145
1108 libvirt-gobject-enums.h: libvirt-gobject-domain.h libvirt-gobject-connection.h
1146 libvirt-gobject-enums.h: $(libvirt_gobject_1_0_la_HEADERS)
11091147 $(AM_V_GEN)glib-mkenums --fhead "#ifndef __LIBVIRT_GOBJECT_ENUMS_H__\n" \
11101148 --fhead "#define __LIBVIRT_GOBJECT_ENUMS_H__\n\n" \
11111149 --fhead "G_BEGIN_DECLS\n\n" \
11151153 --eprod "GType @enum_name@_get_type (void);\n" \
11161154 $^ | sed -e 's/g_vir/gvir/g' | sed -e 's/_VIR_/_/g' > $@
11171155
1118 @WITH_GOBJECT_INTROSPECTION_TRUE@LibvirtGObject-1.0.gir: libvirt-gobject-1.0.la $(G_IR_SCANNER) Makefile.am
1119 @WITH_GOBJECT_INTROSPECTION_TRUE@ $(AM_V_GEN)$(G_IR_SCANNER) \
1120 @WITH_GOBJECT_INTROSPECTION_TRUE@ --quiet \
1121 @WITH_GOBJECT_INTROSPECTION_TRUE@ --warn-all \
1122 @WITH_GOBJECT_INTROSPECTION_TRUE@ --namespace LibvirtGObject \
1123 @WITH_GOBJECT_INTROSPECTION_TRUE@ --nsversion 1.0 \
1124 @WITH_GOBJECT_INTROSPECTION_TRUE@ --include GObject-2.0 \
1125 @WITH_GOBJECT_INTROSPECTION_TRUE@ --include Gio-2.0 \
1126 @WITH_GOBJECT_INTROSPECTION_TRUE@ --include-uninstalled $(top_builddir)/libvirt-glib/LibvirtGLib-1.0.gir \
1127 @WITH_GOBJECT_INTROSPECTION_TRUE@ --include-uninstalled $(top_builddir)/libvirt-gconfig/LibvirtGConfig-1.0.gir \
1128 @WITH_GOBJECT_INTROSPECTION_TRUE@ --identifier-prefix=GVir \
1129 @WITH_GOBJECT_INTROSPECTION_TRUE@ --symbol-prefix=gvir \
1130 @WITH_GOBJECT_INTROSPECTION_TRUE@ --library=$(top_builddir)/libvirt-glib/libvirt-glib-1.0.la \
1131 @WITH_GOBJECT_INTROSPECTION_TRUE@ --library=$(top_builddir)/libvirt-gconfig/libvirt-gconfig-1.0.la \
1132 @WITH_GOBJECT_INTROSPECTION_TRUE@ --library=$(builddir)/libvirt-gobject-1.0.la \
1133 @WITH_GOBJECT_INTROSPECTION_TRUE@ --output $@ \
1134 @WITH_GOBJECT_INTROSPECTION_TRUE@ -I$(top_builddir) \
1135 @WITH_GOBJECT_INTROSPECTION_TRUE@ -I$(top_srcdir) \
1136 @WITH_GOBJECT_INTROSPECTION_TRUE@ --verbose \
1137 @WITH_GOBJECT_INTROSPECTION_TRUE@ --c-include="libvirt-gobject/libvirt-gobject.h" \
1138 @WITH_GOBJECT_INTROSPECTION_TRUE@ --pkg=gthread-2.0 \
1139 @WITH_GOBJECT_INTROSPECTION_TRUE@ --pkg=libxml-2.0 \
1140 @WITH_GOBJECT_INTROSPECTION_TRUE@ --pkg-export=libvirt-gobject-1.0 \
1141 @WITH_GOBJECT_INTROSPECTION_TRUE@ $(srcdir)/libvirt-gobject.h \
1142 @WITH_GOBJECT_INTROSPECTION_TRUE@ $(GOBJECT_SOURCE_FILES:%=$(srcdir)/%) \
1143 @WITH_GOBJECT_INTROSPECTION_TRUE@ $(GOBJECT_HEADER_FILES:%=$(srcdir)/%) \
1144 @WITH_GOBJECT_INTROSPECTION_TRUE@ $(GOBJECT_GENERATED_FILES:%=$(builddir)/%)
1145
1146 @WITH_GOBJECT_INTROSPECTION_TRUE@%.typelib: %.gir
1147 @WITH_GOBJECT_INTROSPECTION_TRUE@ $(AM_V_GEN)$(G_IR_COMPILER) \
1148 @WITH_GOBJECT_INTROSPECTION_TRUE@ --includedir=$(top_builddir)/libvirt-glib \
1149 @WITH_GOBJECT_INTROSPECTION_TRUE@ --includedir=$(top_builddir)/libvirt-gconfig \
1150 @WITH_GOBJECT_INTROSPECTION_TRUE@ --includedir=$(builddir) \
1151 @WITH_GOBJECT_INTROSPECTION_TRUE@ --includedir=$(girdir) \
1152 @WITH_GOBJECT_INTROSPECTION_TRUE@ -o $@ $<
1156 # .libs/libvirt-gobject.so is built by libtool as a side-effect of the Makefile
1157 # rule for libosvirt-gobject.la. However, checking symbols relies on Linux ELF layout
1158 @WITH_LINUX_TRUE@check-symfile: libvirt-gobject.sym libvirt-gobject-1.0.la
1159 @WITH_LINUX_TRUE@ $(AM_V_GEN)$(PERL) $(top_srcdir)/build-aux/check-symfile.pl $(srcdir)/libvirt-gobject.sym \
1160 @WITH_LINUX_TRUE@ .libs/libvirt-gobject-1.0.so
1161 @WITH_LINUX_FALSE@check-symfile:
1162 check-symsorting:
1163 $(AM_V_GEN)$(PERL) $(top_srcdir)/build-aux/check-symsorting.pl \
1164 $(srcdir)/libvirt-gobject.sym
1165 check-local: check-symfile check-symsorting
1166
1167 -include $(INTROSPECTION_MAKEFILE)
1168
1169 @HAVE_INTROSPECTION_TRUE@LibvirtGObject-1.0.gir: libvirt-gobject-1.0.la
11531170
11541171 # Tell versions [3.59,3.63) of GNU make to not export all variables.
11551172 # Otherwise a system limit (for SysV at least) may be exceeded.
692692 {
693693 gchar **lst = NULL;
694694 gint n = 0;
695 gint i;
696695
697696 if ((n = count_func(vconn)) < 0) {
698697 gvir_set_error(err, GVIR_CONNECTION_ERROR,
718717 return lst;
719718
720719 error:
721 if (lst != NULL) {
722 for (i = 0 ; i < n; i++)
723 g_free(lst[i]);
724 g_free(lst);
725 }
720 g_free(lst);
726721 return NULL;
727722 }
728723
1919 * Author: Marc-André Lureau <marcandre.lureau@redhat.com>
2020 */
2121 #ifndef __LIBVIRT_GOBJECT_DOMAIN_DEVICE_PRIVATE_H__
22 #define __LIBVIRT_GOBJECT_DOMAIN_DEVICE_PRIVATEH__
22 #define __LIBVIRT_GOBJECT_DOMAIN_DEVICE_PRIVATE_H__
2323
2424 G_BEGIN_DECLS
2525
2929
3030 G_END_DECLS
3131
32 #endif /* __LIBVIRT_GOBJECT_DOMAIN_DEVICE_PRIVATEH__ */
32 #endif /* __LIBVIRT_GOBJECT_DOMAIN_DEVICE_PRIVATE_H__ */
143143 static GVirDomainSnapshotHandle*
144144 gvir_domain_snapshot_handle_copy(GVirDomainSnapshotHandle *src)
145145 {
146 #if 0
147146 virDomainSnapshotRef((virDomainSnapshotPtr)src);
148 #endif
149147 return src;
150148 }
151149
161159 const gchar *gvir_domain_snapshot_get_name(GVirDomainSnapshot *snapshot)
162160 {
163161 g_return_val_if_fail(GVIR_IS_DOMAIN_SNAPSHOT(snapshot), NULL);
164 #if 0
162
165163 GVirDomainSnapshotPrivate *priv = snapshot->priv;
166164 const char *name;
167165
171169 }
172170
173171 return name;
174 #else
175 if (snapshot)
176 return NULL;
177 #endif
178
179 g_return_val_if_reached(NULL);
180172 }
181173
182174
213205 free(xml);
214206 return conf;
215207 }
208
209 /**
210 * gvir_domain_snapshot_delete:
211 * @snapshot: The domain snapshot
212 * @flags: Bitwise or of #GVirDomainSnapshotDeleteFlags
213 * @error: (allow-none): Place-holder for error or NULL
214 *
215 * Returns: TRUE on success, FALSE otherwise
216 */
217 gboolean gvir_domain_snapshot_delete (GVirDomainSnapshot *snapshot,
218 guint flags,
219 GError **error)
220 {
221 GVirDomainSnapshotPrivate *priv;
222 int status;
223
224 g_return_val_if_fail(GVIR_IS_DOMAIN_SNAPSHOT (snapshot), FALSE);
225 g_return_val_if_fail(error == NULL || *error == NULL, FALSE);
226
227 priv = snapshot->priv;
228 status = virDomainSnapshotDelete(priv->handle, flags);
229 if (status < 0) {
230 gvir_set_error(error, GVIR_DOMAIN_SNAPSHOT_ERROR, 0,
231 "Unable to delete snapshot `%s'",
232 gvir_domain_snapshot_get_name(snapshot));
233 return FALSE;
234 }
235 return TRUE;
236 }
237
238
239
240 static void _delete_async_thread(GTask *task,
241 gpointer source_object,
242 gpointer task_data,
243 GCancellable *cancellable)
244 {
245 GError *error = NULL;
246 gboolean status;
247
248 status = gvir_domain_snapshot_delete(source_object,
249 GPOINTER_TO_UINT(task_data),
250 &error);
251
252 if (status)
253 g_task_return_boolean(task, TRUE);
254 else
255 g_task_return_error(task, error);
256 }
257
258
259 /**
260 * gvir_domain_snapshot_delete_async:
261 * @snapshot: A #GVirDomainSnapshot
262 * @flags: Bitwise-OR of #GVirDomainSnapshotDeleteFlags
263 * @cancellable: (allow-none) (transfer none): cancellation object
264 * @callback: (scope async): completion callback
265 * @user_data: (closure): opaque data for callback
266 */
267 void gvir_domain_snapshot_delete_async(GVirDomainSnapshot *snapshot,
268 guint flags,
269 GCancellable *cancellable,
270 GAsyncReadyCallback callback,
271 gpointer user_data)
272 {
273 GTask *task;
274
275 g_return_if_fail(GVIR_IS_DOMAIN_SNAPSHOT(snapshot));
276
277 task = g_task_new(snapshot, cancellable, callback, user_data);
278 g_task_set_task_data(task, GUINT_TO_POINTER(flags), NULL);
279 g_task_run_in_thread(task, _delete_async_thread);
280 g_object_unref(task);
281 }
282
283 /**
284 * gvir_domain_snapshot_delete_finish:
285 * @snapshot: A #GVirDomainSnapshot
286 * @res: (transfer none): async method result
287 *
288 * Returns: %TRUE on success, %FALSE otherwise.
289 */
290 gboolean gvir_domain_snapshot_delete_finish(GVirDomainSnapshot *snapshot,
291 GAsyncResult *res,
292 GError **error)
293 {
294 g_return_val_if_fail(GVIR_IS_DOMAIN_SNAPSHOT(snapshot), FALSE);
295 g_return_val_if_fail(g_task_is_valid(res, snapshot), FALSE);
296
297 return g_task_propagate_boolean(G_TASK(res), error);
298 }
299
300 /**
301 * gvir_domain_snapshot_get_is_current:
302 * @snapshot: The domain snapshot
303 * @flags: Currently unused, pass 0
304 * @is_current: (out): %TRUE if the given snapshot is the current snapshot
305 * of its domain, %FALSE otherwise.
306 * @error: (allow-none): Place-holder for error or %NULL
307 *
308 * Returns: %TRUE on success, %FALSE otherwise.
309 */
310 gboolean gvir_domain_snapshot_get_is_current(GVirDomainSnapshot *snapshot,
311 guint flags,
312 gboolean *is_current,
313 GError **error)
314 {
315 gint status;
316
317 g_return_val_if_fail(GVIR_IS_DOMAIN_SNAPSHOT(snapshot), FALSE);
318 g_return_val_if_fail(is_current != NULL, FALSE);
319 g_return_val_if_fail(error == NULL || *error == NULL, FALSE);
320
321 status = virDomainSnapshotIsCurrent(snapshot->priv->handle, flags);
322 if (status == -1) {
323 gvir_set_error(error, GVIR_DOMAIN_SNAPSHOT_ERROR, 0,
324 "Could not determine if `%s' is the current snapshot",
325 gvir_domain_snapshot_get_name(snapshot));
326 return FALSE;
327 }
328
329 *is_current = status;
330
331 return TRUE;
332 }
333
334
335
336 /**
337 * gvir_domain_snapshot_revert_to:
338 * @snapshot: The domain snapshot
339 * @flags: Bitwise OR of GVirDomainSnapshotRevertFlags
340 * @error: (allow-none): Place-holder for error or NULL
341 *
342 * Returns: TRUE if the snapshot's domain has successfully been
343 * reverted to the given snapshot, FALSE otherwise, in which case
344 * @error will be set.
345 */
346 gboolean gvir_domain_snapshot_revert_to(GVirDomainSnapshot *snapshot,
347 guint flags,
348 GError **error)
349 {
350 int status;
351
352 g_return_val_if_fail(GVIR_IS_DOMAIN_SNAPSHOT(snapshot), FALSE);
353 g_return_val_if_fail((error == NULL) || (*error == NULL), FALSE);
354
355
356 status = virDomainRevertToSnapshot(snapshot->priv->handle,
357 flags);
358 if (status != 0) {
359 gvir_set_error(error, GVIR_DOMAIN_SNAPSHOT_ERROR,
360 0, "Failed to revert to snapshot `%s'",
361 gvir_domain_snapshot_get_name(snapshot));
362 return FALSE;
363 }
364
365 return TRUE;
366 }
367
368 static void _revert_to_async_thread(GTask *task,
369 gpointer source_object,
370 gpointer task_data,
371 GCancellable *cancellable)
372 {
373 GError *error = NULL;
374 gboolean status;
375
376 status = gvir_domain_snapshot_revert_to(source_object,
377 GPOINTER_TO_UINT(task_data),
378 &error);
379
380 if (status)
381 g_task_return_boolean(task, TRUE);
382 else
383 g_task_return_error(task, error);
384 }
385
386
387 /**
388 * gvir_domain_snapshot_revert_to_async:
389 * @snapshot: A #GVirDomainSnapshot
390 * @flags: Bitwise OR of #GVirDomainSnapshotRevertFlags
391 * @cancellable: (allow-none) (transfer none): cancellation object
392 * @callback: (scope async): The callback
393 * @user_data: (closure): Opaque data for callback
394 */
395 void gvir_domain_snapshot_revert_to_async(GVirDomainSnapshot *snapshot,
396 guint flags,
397 GCancellable *cancellable,
398 GAsyncReadyCallback callback,
399 gpointer user_data)
400 {
401 GTask *task;
402
403 g_return_if_fail(GVIR_IS_DOMAIN_SNAPSHOT(snapshot));
404
405 task = g_task_new(snapshot, cancellable, callback, user_data);
406 g_task_set_task_data(task, GUINT_TO_POINTER(flags), NULL);
407 g_task_run_in_thread(task, _revert_to_async_thread);
408 g_object_unref(task);
409 }
410
411
412
413 /**
414 * gvir_domain_snapshot_revert_to_finish:
415 * @snapshot: The domain snapshot
416 * @result: (transfer none): The result
417 *
418 * Returns: %TRUE on success, %FALSE otherwise.
419 */
420 gboolean gvir_domain_snapshot_revert_to_finish(GVirDomainSnapshot *snapshot,
421 GAsyncResult *result,
422 GError **error)
423 {
424 g_return_val_if_fail(GVIR_IS_DOMAIN_SNAPSHOT(snapshot), FALSE);
425 g_return_val_if_fail(g_task_is_valid(result, snapshot), FALSE);
426
427 return g_task_propagate_boolean(G_TASK(result), error);
428 }
429
430
431
432 /**
433 * gvir_domain_snapshot_set_config:
434 * @snapshot: The domain snapshot
435 * @conf: The new config object
436 * @error: (allow-none): Place-holder for error or %NULL
437 *
438 * Updates the given snapshot's configuration according to the
439 * given GVirConfigDomainSnapshot.
440 *
441 * Returns: %TRUE if no error was reported, %FALSE otherwise.
442 */
443 gboolean gvir_domain_snapshot_set_config(GVirDomainSnapshot *snapshot,
444 GVirConfigDomainSnapshot *conf,
445 GError **error)
446 {
447 gchar *xml;
448 virConnectPtr conn;
449 virDomainSnapshotPtr handle;
450 virDomainPtr domain;
451 GVirDomainSnapshotPrivate *priv;
452
453 g_return_val_if_fail(GVIR_IS_DOMAIN_SNAPSHOT(snapshot), FALSE);
454 g_return_val_if_fail(GVIR_CONFIG_IS_DOMAIN_SNAPSHOT(conf), FALSE);
455 g_return_val_if_fail(error == NULL || *error == NULL, FALSE);
456
457 priv = snapshot->priv;
458 handle = priv->handle;
459 domain = virDomainSnapshotGetDomain(handle);
460
461
462 if ((conn = virDomainSnapshotGetConnect(priv->handle)) == NULL) {
463 gvir_set_error_literal(error, GVIR_DOMAIN_SNAPSHOT_ERROR,
464 0,
465 "Failed to get domain connection");
466 return FALSE;
467 }
468
469
470 /* XXX Changing the name will create a new snapshot */
471 if (g_strcmp0 (gvir_domain_snapshot_get_name(snapshot),
472 gvir_config_domain_snapshot_get_name(conf)) != 0) {
473 gvir_set_error_literal(error, GVIR_DOMAIN_SNAPSHOT_ERROR,
474 0,
475 "Cannot set config: snapshot names don't match");
476 return FALSE;
477 }
478
479
480 xml = gvir_config_object_to_xml(GVIR_CONFIG_OBJECT(conf));
481
482 handle = virDomainSnapshotCreateXML(domain,
483 xml,
484 VIR_DOMAIN_SNAPSHOT_CREATE_REDEFINE);
485 g_free(xml);
486
487 if (handle == NULL) {
488 gvir_set_error(error, GVIR_DOMAIN_SNAPSHOT_ERROR,
489 0,
490 "Failed to create snapshot `%s' from XML definition",
491 gvir_domain_snapshot_get_name(snapshot));
492 return FALSE;
493 }
494 virDomainSnapshotFree(handle);
495 return TRUE;
496 }
5757 gpointer padding[20];
5858 };
5959
60 /**
61 * GVirDomainSnapshotDeleteFlags:
62 * @GVIR_DOMAIN_SNAPSHOT_DELETE_CHILDREN: Also delete children
63 * @GVIR_DOMAIN_SNAPSHOT_DELETE_METADATA_ONLY: Delete just metadata
64 * @GVIR_DOMAIN_SNAPSHOT_DELETE_CHILDREN_ONLY: Delete just children
65 */
66 typedef enum {
67 GVIR_DOMAIN_SNAPSHOT_DELETE_CHILDREN = 1,
68 GVIR_DOMAIN_SNAPSHOT_DELETE_METADATA_ONLY = 2,
69 GVIR_DOMAIN_SNAPSHOT_DELETE_CHILDREN_ONLY = 4
70 } GVirDomainSnapshotDeleteFlags;
71
72
73 /**
74 * GVirDomainSnapshotRevertFlags:
75 * @GVIR_DOMAIN_SNAPSHOT_REVERT_RUNNING: Run after revert
76 * @GVIR_DOMAIN_SNAPSHOT_REVERT_PAUSED: Pause after revert
77 * @GVIR_DOMAIN_SNAPSHOT_REVERT_FORCE: Allow risky reverts
78 */
79 typedef enum {
80 GVIR_DOMAIN_SNAPSHOT_REVERT_RUNNING = 1,
81 GVIR_DOMAIN_SNAPSHOT_REVERT_PAUSED = 2,
82 GVIR_DOMAIN_SNAPSHOT_REVERT_FORCE = 4
83 } GVirDomainSnapshotRevertFlags;
84
6085
6186 GType gvir_domain_snapshot_get_type(void);
6287 GType gvir_domain_snapshot_handle_get_type(void);
6893 guint flags,
6994 GError **err);
7095
96 gboolean gvir_domain_snapshot_delete (GVirDomainSnapshot *snapshot,
97 guint flags,
98 GError **error);
99
100 void gvir_domain_snapshot_delete_async(GVirDomainSnapshot *snapshot,
101 guint flags,
102 GCancellable *cancellable,
103 GAsyncReadyCallback callback,
104 gpointer user_data);
105
106 gboolean gvir_domain_snapshot_delete_finish(GVirDomainSnapshot *snapshot,
107 GAsyncResult *res,
108 GError **error);
109
110 gboolean gvir_domain_snapshot_get_is_current(GVirDomainSnapshot *snapshot,
111 guint flags,
112 gboolean *is_current,
113 GError **error);
114
115 gboolean gvir_domain_snapshot_revert_to(GVirDomainSnapshot *snapshot,
116 guint flags,
117 GError **error);
118
119 void gvir_domain_snapshot_revert_to_async(GVirDomainSnapshot *snapshot,
120 guint flags,
121 GCancellable *cancellable,
122 GAsyncReadyCallback callback,
123 gpointer user_data);
124
125 gboolean gvir_domain_snapshot_revert_to_finish(GVirDomainSnapshot *snapshot,
126 GAsyncResult *result,
127 GError **error);
128
129
130 gboolean gvir_domain_snapshot_set_config(GVirDomainSnapshot *snapshot,
131 GVirConfigDomainSnapshot *conf,
132 GError **error);
133
71134 G_END_DECLS
72135
73136 #endif /* __LIBVIRT_GOBJECT_DOMAIN_SNAPSHOT_H__ */
3737 {
3838 virDomainPtr handle;
3939 gchar uuid[VIR_UUID_STRING_BUFLEN];
40 GHashTable *snapshots;
41 GMutex *lock;
4042 };
4143
4244 G_DEFINE_TYPE(GVirDomain, gvir_domain, G_TYPE_OBJECT);
5860 LAST_SIGNAL
5961 };
6062
63 typedef struct {
64 guint create_flags;
65 GVirConfigDomainSnapshot *snapshot_config;
66 } SnapshotCreateData;
67
68 static void snapshot_create_data_free (SnapshotCreateData *data) {
69 g_clear_object (&data->snapshot_config);
70 g_slice_free (SnapshotCreateData, data);
71 }
72
6173 static gint signals[LAST_SIGNAL];
6274
6375 #define GVIR_DOMAIN_ERROR gvir_domain_error_quark()
119131 GVirDomainPrivate *priv = domain->priv;
120132
121133 g_debug("Finalize GVirDomain=%p", domain);
134
135 if (priv->snapshots) {
136 g_hash_table_unref(priv->snapshots);
137 }
138 g_mutex_free(priv->lock);
122139
123140 virDomainFree(priv->handle);
124141
236253 g_debug("Init GVirDomain=%p", domain);
237254
238255 domain->priv = GVIR_DOMAIN_GET_PRIVATE(domain);
256 domain->priv->lock = g_mutex_new();
239257 }
240258
241259 typedef struct virDomain GVirDomainHandle;
15131531 g_free(custom_xml);
15141532 return dom_snapshot;
15151533 }
1534
1535
1536 static void _create_snapshot_async_thread(GTask *task,
1537 gpointer source_object,
1538 gpointer task_data,
1539 GCancellable *cancellable)
1540 {
1541 GError *error = NULL;
1542 GVirDomainSnapshot *snapshot;
1543 SnapshotCreateData *create_data = task_data;
1544
1545 snapshot = gvir_domain_create_snapshot(source_object,
1546 create_data->snapshot_config,
1547 create_data->create_flags,
1548 &error);
1549 if (snapshot)
1550 g_task_return_pointer(task, snapshot, g_object_unref);
1551 else
1552 g_task_return_error(task, error);
1553 }
1554
1555 /**
1556 * gvir_domain_create_snapshot_async:
1557 * @dom: The #GVirDomain
1558 * @custom_conf: (allow-none): Configuration of snapshot or %NULL
1559 * @flags: Bitwise-OR of #GVirDomainSnapshotCreateFlags
1560 * @cancellable: (allow-none) (transfer none): cancellation object
1561 * @callback: (scope async): Completion callback
1562 * @user_data: (closure): Opaque data for callback
1563 */
1564 void gvir_domain_create_snapshot_async(GVirDomain *dom,
1565 GVirConfigDomainSnapshot *custom_conf,
1566 guint flags,
1567 GCancellable *cancellable,
1568 GAsyncReadyCallback callback,
1569 gpointer user_data)
1570 {
1571 SnapshotCreateData *create_data;
1572 GTask *task;
1573
1574 g_return_if_fail(GVIR_IS_DOMAIN(dom));
1575 g_return_if_fail(GVIR_CONFIG_IS_DOMAIN_SNAPSHOT(custom_conf));
1576
1577 create_data = g_slice_new(SnapshotCreateData);
1578 create_data->create_flags = flags;
1579 create_data->snapshot_config = g_object_ref (custom_conf);
1580
1581 task = g_task_new(dom, cancellable, callback, user_data);
1582 g_task_set_task_data(task, create_data, (GDestroyNotify)snapshot_create_data_free);
1583 g_task_run_in_thread(task, _create_snapshot_async_thread);
1584 g_object_unref(task);
1585 }
1586
1587 /**
1588 * gvir_domain_create_snapshot_finish:
1589 * @domain: A #GVirDomain
1590 * @result: (transfer none): Async method result
1591 * @error: (allow-none): Error placeholder
1592 *
1593 * Returns: (transfer full): The created snapshot
1594 */
1595 GVirDomainSnapshot *gvir_domain_create_snapshot_finish(GVirDomain *domain,
1596 GAsyncResult *result,
1597 GError **error)
1598 {
1599 g_return_val_if_fail(g_task_is_valid(result, domain), NULL);
1600
1601 return g_task_propagate_pointer(G_TASK(result), error);
1602 }
1603
1604 /**
1605 * gvir_domain_fetch_snapshots:
1606 * @dom: The domain
1607 * @list_flags: bitwise-OR of #GVirDomainSnapshotListFlags
1608 * @cancellable: (allow-none) (transfer none): cancellation object
1609 * @error: (allow-none): Place-holder for error or %NULL
1610 *
1611 * Returns: %TRUE on success, %FALSE otherwise.
1612 */
1613 gboolean gvir_domain_fetch_snapshots(GVirDomain *dom,
1614 guint list_flags,
1615 GCancellable *cancellable,
1616 GError **error)
1617 {
1618 GVirDomainPrivate *priv;
1619 virDomainSnapshotPtr *snapshots = NULL;
1620 GVirDomainSnapshot *snap;
1621 GHashTable *snap_table;
1622 int n_snaps = 0;
1623 int i;
1624 gboolean ret = FALSE;
1625
1626 g_return_val_if_fail(GVIR_IS_DOMAIN(dom), FALSE);
1627 g_return_val_if_fail((error == NULL) || (*error == NULL), FALSE);
1628
1629 priv = dom->priv;
1630
1631 snap_table = g_hash_table_new_full(g_str_hash,
1632 g_str_equal,
1633 NULL,
1634 g_object_unref);
1635
1636
1637 n_snaps = virDomainListAllSnapshots(priv->handle, &snapshots, list_flags);
1638
1639 if (g_cancellable_set_error_if_cancelled(cancellable, error)) {
1640 goto cleanup;
1641 }
1642
1643 if (n_snaps < 0) {
1644 gvir_set_error(error, GVIR_DOMAIN_ERROR, 0,
1645 "Unable to fetch snapshots of %s",
1646 gvir_domain_get_name(dom));
1647 goto cleanup;
1648 }
1649
1650 for (i = 0; i < n_snaps; i ++) {
1651 if (g_cancellable_set_error_if_cancelled(cancellable, error)) {
1652 goto cleanup;
1653 }
1654 snap = GVIR_DOMAIN_SNAPSHOT(g_object_new(GVIR_TYPE_DOMAIN_SNAPSHOT,
1655 "handle", snapshots[i],
1656 NULL));
1657 g_hash_table_insert(snap_table,
1658 (gpointer)gvir_domain_snapshot_get_name(snap),
1659 snap);
1660 }
1661
1662
1663 g_mutex_lock(priv->lock);
1664 if (priv->snapshots != NULL)
1665 g_hash_table_unref(priv->snapshots);
1666 priv->snapshots = snap_table;
1667 snap_table = NULL;
1668 g_mutex_unlock(priv->lock);
1669
1670 ret = TRUE;
1671
1672 cleanup:
1673 free(snapshots);
1674 if (snap_table != NULL)
1675 g_hash_table_unref(snap_table);
1676 return ret;
1677 }
1678
1679 /**
1680 * gvir_domain_get_snapshots:
1681 * @dom: The domain
1682 * Returns: (element-type LibvirtGObject.DomainSnapshot) (transfer full): A
1683 * list of all the snapshots available for the given domain. The returned
1684 * list should be freed with g_list_free(), after its elements have been
1685 * unreffed with g_object_unref().
1686 */
1687 GList *gvir_domain_get_snapshots(GVirDomain *dom)
1688 {
1689 GVirDomainPrivate *priv;
1690 GList *snapshots = NULL;
1691 g_return_val_if_fail(GVIR_IS_DOMAIN(dom), NULL);
1692
1693 priv = dom->priv;
1694
1695 g_mutex_lock (priv->lock);
1696 if (dom->priv->snapshots != NULL) {
1697 snapshots = g_hash_table_get_values(priv->snapshots);
1698 g_list_foreach(snapshots, (GFunc)g_object_ref, NULL);
1699 }
1700 g_mutex_unlock (priv->lock);
1701
1702 return snapshots;
1703 }
1704
1705
1706
1707 static void _fetch_snapshots_async_thread(GTask *task,
1708 gpointer source_object,
1709 gpointer task_data,
1710 GCancellable *cancellable)
1711 {
1712 GError *error = NULL;
1713 gboolean status;
1714
1715 status = gvir_domain_fetch_snapshots(source_object,
1716 GPOINTER_TO_UINT(task_data),
1717 cancellable,
1718 &error);
1719 if (status)
1720 g_task_return_boolean(task, TRUE);
1721 else
1722 g_task_return_error(task, error);
1723 }
1724
1725
1726 /**
1727 * gvir_domain_fetch_snapshots_async:
1728 * @dom: The domain
1729 * @list_flags: bitwise-OR of #GVirDomainSnapshotListFlags
1730 * @cancellable: (allow-none) (transfer none): cancellation object
1731 * @callback: (scope async): completion callback
1732 * @user_data: (closure): opaque data for callback
1733 */
1734 void gvir_domain_fetch_snapshots_async(GVirDomain *dom,
1735 guint list_flags,
1736 GCancellable *cancellable,
1737 GAsyncReadyCallback callback,
1738 gpointer user_data)
1739 {
1740 GTask *task;
1741
1742 g_return_if_fail(GVIR_IS_DOMAIN(dom));
1743 g_return_if_fail((cancellable == NULL) || G_IS_CANCELLABLE(cancellable));
1744
1745 task = g_task_new(dom, cancellable, callback, user_data);
1746 g_task_set_task_data(task, GUINT_TO_POINTER(list_flags), NULL);
1747 g_task_run_in_thread(task, _fetch_snapshots_async_thread);
1748 g_object_unref(task);
1749 }
1750
1751
1752 /**
1753 * gvir_domain_fetch_snapshots_finish:
1754 * @dom: a #GVirDomain
1755 * @res: (transfer none): async method result
1756 *
1757 * Returns: TRUE on success, FALSE otherwise.
1758 */
1759 gboolean gvir_domain_fetch_snapshots_finish(GVirDomain *dom,
1760 GAsyncResult *res,
1761 GError **error)
1762 {
1763 g_return_val_if_fail(GVIR_IS_DOMAIN(dom), FALSE);
1764 g_return_val_if_fail(g_task_is_valid(res, dom), FALSE);
1765
1766 return g_task_propagate_boolean(G_TASK(res), error);
1767 }
1768
1769
1770 /**
1771 * gvir_domain_get_has_current_snapshot:
1772 * @dom: a #GVirDomain
1773 * @flags: Unused, pass 0
1774 * @has_current_snapshot: (out): Will be set to %TRUE if the given domain
1775 * has a current snapshot and to %FALSE otherwise.
1776 * @error: (allow-none): Place-holder for error or %NULL
1777 *
1778 * Returns: %TRUE on success, %FALSE otherwise.
1779 */
1780 gboolean gvir_domain_get_has_current_snapshot(GVirDomain *dom,
1781 guint flags,
1782 gboolean *has_current_snapshot,
1783 GError **error)
1784 {
1785 int status;
1786 g_return_val_if_fail(GVIR_IS_DOMAIN(dom), FALSE);
1787 g_return_val_if_fail(has_current_snapshot != NULL, FALSE);
1788 g_return_val_if_fail(error == NULL || *error == NULL, FALSE);
1789
1790 status = virDomainHasCurrentSnapshot(dom->priv->handle,
1791 flags);
1792
1793 if (status == -1) {
1794 gvir_set_error(error, GVIR_DOMAIN_ERROR, 0,
1795 "Unable to check if domain `%s' has a current snapshot",
1796 gvir_domain_get_name(dom));
1797 return FALSE;
1798 }
1799
1800 *has_current_snapshot = status;
1801
1802 return TRUE;
1803 }
181181 GVIR_DOMAIN_REBOOT_ACPI_POWER_BTN = VIR_DOMAIN_REBOOT_ACPI_POWER_BTN,
182182 GVIR_DOMAIN_REBOOT_GUEST_AGENT = VIR_DOMAIN_REBOOT_GUEST_AGENT,
183183 } GVirDomainRebootFlags;
184
185 /**
186 * GVirDomainSnapshotListFlags:
187 * @GVIR_DOMAIN_SNAPSHOT_LIST_ALL: List all snapshots
188 * @GVIR_DOMAIN_SNAPSHOT_LIST_DESCENDANTS: List all descendants, not just
189 * children, when listing a snapshot.
190 * For historical reasons, groups do not use contiguous bits.
191 * @GVIR_DOMAIN_SNAPSHOT_LIST_ROOTS: Filter by snapshots with no parents, when listing a domain
192 * @GVIR_DOMAIN_SNAPSHOT_LIST_METADATA: Filter by snapshots which have metadata
193 * @GVIR_DOMAIN_SNAPSHOT_LIST_LEAVES: Filter by snapshots with no children
194 * @GVIR_DOMAIN_SNAPSHOT_LIST_NO_LEAVES: Filter by snapshots that have children
195 * @GVIR_DOMAIN_SNAPSHOT_LIST_NO_METADATA: Filter by snapshots with no metadata
196 * @GVIR_DOMAIN_SNAPSHOT_LIST_INACTIVE: Filter by snapshots taken while guest was shut off
197 * @GVIR_DOMAIN_SNAPSHOT_LIST_ACTIVE: Filter by snapshots taken while guest was active, and with memory state
198 * @GVIR_DOMAIN_SNAPSHOT_LIST_DISK_ONLY: Filter by snapshots taken while guest was active, but without memory state
199 * @GVIR_DOMAIN_SNAPSHOT_LIST_INTERNAL: Filter by snapshots stored internal to disk images
200 * @GVIR_DOMAIN_SNAPSHOT_LIST_EXTERNAL: Filter by snapshots that use files external to disk images
201 */
202 typedef enum {
203 GVIR_DOMAIN_SNAPSHOT_LIST_ALL = 0,
204 GVIR_DOMAIN_SNAPSHOT_LIST_DESCENDANTS = VIR_DOMAIN_SNAPSHOT_LIST_DESCENDANTS,
205 GVIR_DOMAIN_SNAPSHOT_LIST_ROOTS = VIR_DOMAIN_SNAPSHOT_LIST_ROOTS,
206 GVIR_DOMAIN_SNAPSHOT_LIST_METADATA = VIR_DOMAIN_SNAPSHOT_LIST_METADATA,
207 GVIR_DOMAIN_SNAPSHOT_LIST_LEAVES = VIR_DOMAIN_SNAPSHOT_LIST_LEAVES,
208 GVIR_DOMAIN_SNAPSHOT_LIST_NO_LEAVES = VIR_DOMAIN_SNAPSHOT_LIST_NO_LEAVES,
209 GVIR_DOMAIN_SNAPSHOT_LIST_NO_METADATA = VIR_DOMAIN_SNAPSHOT_LIST_NO_METADATA,
210 GVIR_DOMAIN_SNAPSHOT_LIST_INACTIVE = VIR_DOMAIN_SNAPSHOT_LIST_INACTIVE,
211 GVIR_DOMAIN_SNAPSHOT_LIST_ACTIVE = VIR_DOMAIN_SNAPSHOT_LIST_ACTIVE,
212 GVIR_DOMAIN_SNAPSHOT_LIST_DISK_ONLY = VIR_DOMAIN_SNAPSHOT_LIST_DISK_ONLY,
213 GVIR_DOMAIN_SNAPSHOT_LIST_INTERNAL = VIR_DOMAIN_SNAPSHOT_LIST_INTERNAL,
214 GVIR_DOMAIN_SNAPSHOT_LIST_EXTERNAL = VIR_DOMAIN_SNAPSHOT_LIST_EXTERNAL
215 } GVirDomainSnapshotListFlags;
216
184217
185218 typedef struct _GVirDomainInfo GVirDomainInfo;
186219 struct _GVirDomainInfo
329362 guint flags,
330363 GError **err);
331364
365 void gvir_domain_create_snapshot_async(GVirDomain *dom,
366 GVirConfigDomainSnapshot *custom_conf,
367 guint flags,
368 GCancellable *cancellable,
369 GAsyncReadyCallback callback,
370 gpointer user_data);
371
372 GVirDomainSnapshot *gvir_domain_create_snapshot_finish(GVirDomain *domain,
373 GAsyncResult *result,
374 GError **error);
375
376
377 gboolean gvir_domain_fetch_snapshots(GVirDomain *dom,
378 guint list_flags,
379 GCancellable *cancellable,
380 GError **error);
381
382 GList *gvir_domain_get_snapshots(GVirDomain *dom);
383
384 void gvir_domain_fetch_snapshots_async(GVirDomain *dom,
385 guint list_flags,
386 GCancellable *cancellable,
387 GAsyncReadyCallback callback,
388 gpointer user_data);
389
390 gboolean gvir_domain_fetch_snapshots_finish(GVirDomain *dom,
391 GAsyncResult *res,
392 GError **error);
393
394 gboolean gvir_domain_get_has_current_snapshot(GVirDomain *dom,
395 guint flags,
396 gboolean *has_current_snapshot,
397 GError **error);
398
332399 G_END_DECLS
333400
334401 #endif /* __LIBVIRT_GOBJECT_DOMAIN_H__ */
320320 {
321321 gchar **lst = NULL;
322322 gint n = 0;
323 gint i;
324323
325324 if ((n = count_func(vpool)) < 0) {
326325 gvir_set_error(err, GVIR_STORAGE_POOL_ERROR,
346345 return lst;
347346
348347 error:
349 if (lst != NULL) {
350 for (i = 0 ; i < n; i++)
351 g_free(lst[i]);
352 g_free(lst);
353 }
348 g_free(lst);
354349 return NULL;
355350 }
356351
101101
102102 static gboolean gvir_stream_close(GIOStream *io_stream,
103103 GCancellable *cancellable,
104 G_GNUC_UNUSED GError **error)
104 GError **error)
105105 {
106106 GVirStream *self = GVIR_STREAM(io_stream);
107 GError *local_error = NULL;
108 gboolean i_ret = TRUE, o_ret = TRUE;
109
110 g_return_val_if_fail(error == NULL || *error == NULL, FALSE);
107111
108112 if (self->priv->input_stream)
109 g_input_stream_close(self->priv->input_stream, cancellable, NULL);
113 i_ret = g_input_stream_close(self->priv->input_stream, cancellable, &local_error);
114
115 if (local_error)
116 g_propagate_error(error, local_error);
110117
111118 if (self->priv->output_stream)
112 g_output_stream_close(self->priv->output_stream, cancellable, NULL);
113
114 return TRUE; /* FIXME: really close the stream? */
119 o_ret = g_output_stream_close(self->priv->output_stream, cancellable, &local_error);
120
121 if (local_error) {
122 if (i_ret)
123 g_propagate_error(error, local_error);
124 else
125 g_error_free(local_error);
126 }
127
128 return (i_ret && o_ret);
115129 }
116130
117131
00 LIBVIRT_GOBJECT_0.0.8 {
11 global:
2 gvir_init_object;
3 gvir_init_object_check;
4
5 gvir_connection_get_type;
6 gvir_node_info_get_type;
7 gvir_connection_new;
8 gvir_connection_open;
9 gvir_connection_open_async;
10 gvir_connection_open_finish;
11 gvir_connection_is_open;
122 gvir_connection_close;
13 gvir_connection_get_uri;
14 gvir_connection_get_stream;
15
3 gvir_connection_create_domain;
4 gvir_connection_create_storage_pool;
165 gvir_connection_fetch_domains;
176 gvir_connection_fetch_domains_async;
187 gvir_connection_fetch_domains_finish;
198 gvir_connection_fetch_storage_pools;
209 gvir_connection_fetch_storage_pools_async;
2110 gvir_connection_fetch_storage_pools_finish;
22 gvir_connection_get_domains;
23 gvir_connection_get_storage_pools;
24 gvir_connection_get_domain;
25 gvir_connection_get_storage_pool;
2611 gvir_connection_find_domain_by_id;
2712 gvir_connection_find_domain_by_name;
2813 gvir_connection_find_storage_pool_by_name;
29 gvir_connection_create_domain;
30 gvir_connection_create_storage_pool;
14 gvir_connection_get_domain;
15 gvir_connection_get_domains;
16 gvir_connection_get_node_info;
17 gvir_connection_get_storage_pool;
18 gvir_connection_get_storage_pools;
19 gvir_connection_get_stream;
20 gvir_connection_get_type;
21 gvir_connection_get_uri;
22 gvir_connection_handle_get_type;
23 gvir_connection_is_open;
24 gvir_connection_new;
25 gvir_connection_open;
26 gvir_connection_open_async;
27 gvir_connection_open_finish;
3128 gvir_connection_start_domain;
32 gvir_connection_get_node_info;
33
29
30 gvir_domain_delete;
31 gvir_domain_delete_flags_get_type;
32
33 gvir_domain_device_get_config;
34 gvir_domain_device_get_domain;
3435 gvir_domain_device_get_type;
35 gvir_domain_device_get_domain;
36 gvir_domain_device_get_config;
37
36
37 gvir_domain_disk_get_stats;
3838 gvir_domain_disk_get_type;
39 gvir_domain_disk_resize;
3940 gvir_domain_disk_stats_get_type;
40 gvir_domain_disk_get_stats;
41 gvir_domain_disk_resize;
42
41
42 gvir_domain_get_config;
43 gvir_domain_get_devices;
44 gvir_domain_get_id;
45 gvir_domain_get_info;
46 gvir_domain_get_info_async;
47 gvir_domain_get_info_finish;
48 gvir_domain_get_name;
49 gvir_domain_get_persistent;
50 gvir_domain_get_saved;
51 gvir_domain_get_type;
52 gvir_domain_get_uuid;
53 gvir_domain_handle_get_type;
54 gvir_domain_info_get_type;
55
56 gvir_domain_interface_get_stats;
4357 gvir_domain_interface_get_type;
4458 gvir_domain_interface_stats_get_type;
45 gvir_domain_interface_get_stats;
46
47 gvir_domain_get_type;
48 gvir_domain_handle_get_type;
49 gvir_domain_info_get_type;
50 gvir_domain_state_get_type;
51 gvir_domain_start_flags_get_type;
52 gvir_domain_delete_flags_get_type;
53 gvir_domain_get_name;
54 gvir_domain_get_uuid;
55 gvir_domain_get_id;
56 gvir_domain_start;
59
60 gvir_domain_open_console;
61 gvir_domain_open_graphics;
62 gvir_domain_reboot;
5763 gvir_domain_resume;
58 gvir_domain_stop;
59 gvir_domain_suspend;
6064 gvir_domain_save;
6165 gvir_domain_save_async;
6266 gvir_domain_save_finish;
63 gvir_domain_delete;
64 gvir_domain_open_console;
65 gvir_domain_open_graphics;
66 gvir_domain_shutdown;
67 gvir_domain_reboot;
68 gvir_domain_get_config;
69 gvir_domain_set_config;
70 gvir_domain_get_devices;
71 gvir_domain_get_info;
72 gvir_domain_get_info_async;
73 gvir_domain_get_info_finish;
74 gvir_domain_get_persistent;
75 gvir_domain_get_saved;
76 gvir_domain_screenshot;
7767 gvir_domain_save_to_file;
7868 gvir_domain_save_to_file_async;
7969 gvir_domain_save_to_file_finish;
80
70 gvir_domain_screenshot;
71 gvir_domain_set_config;
72 gvir_domain_shutdown;
73
74 gvir_domain_snapshot_get_config;
75 gvir_domain_snapshot_get_name;
8176 gvir_domain_snapshot_get_type;
8277 gvir_domain_snapshot_handle_get_type;
83 gvir_domain_snapshot_get_name;
84 gvir_domain_snapshot_get_config;
85
78
79 gvir_domain_start;
80 gvir_domain_start_flags_get_type;
81 gvir_domain_state_get_type;
82 gvir_domain_stop;
83 gvir_domain_suspend;
84
85 gvir_init_object;
86 gvir_init_object_check;
87
88 gvir_interface_get_config;
89 gvir_interface_get_name;
90 gvir_interface_get_type;
91 gvir_interface_handle_get_type;
92
93 gvir_manager_add_connection;
94 gvir_manager_find_connection_by_uri;
95 gvir_manager_get_connections;
96 gvir_manager_get_type;
97 gvir_manager_new;
98 gvir_manager_remove_connection;
99
100 gvir_network_filter_get_config;
101 gvir_network_filter_get_name;
102 gvir_network_filter_get_type;
103 gvir_network_filter_get_uuid;
104 gvir_network_filter_handle_get_type;
105
106 gvir_network_get_config;
107 gvir_network_get_name;
86108 gvir_network_get_type;
109 gvir_network_get_uuid;
87110 gvir_network_handle_get_type;
88 gvir_network_get_name;
89 gvir_network_get_uuid;
90 gvir_network_get_config;
91
92 gvir_network_filter_get_type;
93 gvir_network_filter_handle_get_type;
94 gvir_network_filter_get_name;
95 gvir_network_filter_get_uuid;
96 gvir_network_filter_get_config;
97
111
112 gvir_node_device_get_config;
113 gvir_node_device_get_name;
98114 gvir_node_device_get_type;
99115 gvir_node_device_handle_get_type;
100 gvir_node_device_get_name;
101 gvir_node_device_get_config;
102
103 gvir_interface_get_type;
104 gvir_interface_handle_get_type;
105 gvir_interface_get_name;
106 gvir_interface_get_config;
107
116
117 gvir_node_info_get_type;
118
119 gvir_secret_get_config;
108120 gvir_secret_get_type;
121 gvir_secret_get_uuid;
109122 gvir_secret_handle_get_type;
110 gvir_secret_get_uuid;
111 gvir_secret_get_config;
112
113 gvir_storage_pool_get_type;
114 gvir_storage_pool_info_get_type;
115 gvir_storage_pool_handle_get_type;
116 gvir_storage_pool_get_name;
117 gvir_storage_pool_get_uuid;
123
124 gvir_storage_pool_build;
125 gvir_storage_pool_build_async;
126 gvir_storage_pool_build_finish;
127 gvir_storage_pool_create_volume;
118128 gvir_storage_pool_get_config;
119129 gvir_storage_pool_get_info;
130 gvir_storage_pool_get_name;
131 gvir_storage_pool_get_type;
132 gvir_storage_pool_get_uuid;
133 gvir_storage_pool_get_volume;
134 gvir_storage_pool_get_volumes;
135 gvir_storage_pool_handle_get_type;
136 gvir_storage_pool_info_get_type;
120137 gvir_storage_pool_refresh;
121138 gvir_storage_pool_refresh_async;
122139 gvir_storage_pool_refresh_finish;
123 gvir_storage_pool_get_volumes;
124 gvir_storage_pool_get_volume;
125 gvir_storage_pool_create_volume;
126 gvir_storage_pool_build;
127 gvir_storage_pool_build_async;
128 gvir_storage_pool_build_finish;
129140 gvir_storage_pool_start;
130141 gvir_storage_pool_start_async;
131142 gvir_storage_pool_start_finish;
132143
133 gvir_storage_vol_get_type;
134 gvir_storage_vol_info_get_type;
135 gvir_storage_vol_handle_get_type;
144 gvir_storage_vol_delete;
145 gvir_storage_vol_download;
146 gvir_storage_vol_get_config;
147 gvir_storage_vol_get_info;
136148 gvir_storage_vol_get_name;
137149 gvir_storage_vol_get_path;
138 gvir_storage_vol_get_config;
139 gvir_storage_vol_get_info;
140 gvir_storage_vol_delete;
150 gvir_storage_vol_get_type;
151 gvir_storage_vol_handle_get_type;
152 gvir_storage_vol_info_get_type;
141153 gvir_storage_vol_resize;
142 gvir_storage_vol_download;
143154 gvir_storage_vol_upload;
144155
145 gvir_connection_handle_get_type;
146
147 gvir_manager_get_type;
148 gvir_manager_new;
149 gvir_manager_add_connection;
150 gvir_manager_remove_connection;
151 gvir_manager_get_connections;
152 gvir_manager_find_connection_by_uri;
153
156 gvir_stream_add_watch;
157 gvir_stream_add_watch_full;
154158 gvir_stream_get_type;
159 gvir_stream_handle_get_type;
155160 gvir_stream_receive;
156161 gvir_stream_receive_all;
157162 gvir_stream_send;
158163 gvir_stream_send_all;
159 gvir_stream_handle_get_type;
160 gvir_stream_add_watch;
161 gvir_stream_add_watch_full;
162164
163165 local:
164166 *;
172174
173175 gvir_connection_restore_domain_from_file;
174176 gvir_connection_restore_domain_from_file_async;
175 gvir_conecction_restore_domain_from_file_finish;
177 gvir_connection_restore_domain_from_file_finish;
176178
177179 gvir_domain_start_async;
178180 gvir_domain_start_finish;
180182
181183 LIBVIRT_GOBJECT_0.1.1 {
182184 global:
185 gvir_domain_create_snapshot;
186
183187 gvir_domain_shutdown_flags_get_type;
184188 gvir_domain_snapshot_create_flags_get_type;
185189 gvir_domain_xml_flags_get_type;
186
187 gvir_domain_create_snapshot;
188190 } LIBVIRT_GOBJECT_0.0.9;
189191
190192 LIBVIRT_GOBJECT_0.1.2 {
205207
206208 LIBVIRT_GOBJECT_0.1.4 {
207209 global:
210 gvir_domain_reboot_flags_get_type;
211
212 gvir_domain_update_device;
208213 gvir_domain_update_device_flags_get_type;
209 gvir_domain_update_device;
210
211 gvir_domain_reboot_flags_get_type;
212214
213215 gvir_storage_pool_delete;
214216 gvir_storage_pool_delete_async;
231233 gvir_connection_open_read_only_finish;
232234 } LIBVIRT_GOBJECT_0.1.4;
233235
236 LIBVIRT_GOBJECT_0.1.9 {
237 global:
238 gvir_domain_create_snapshot_async;
239 gvir_domain_create_snapshot_finish;
240 gvir_domain_fetch_snapshots;
241 gvir_domain_fetch_snapshots_async;
242 gvir_domain_fetch_snapshots_finish;
243 gvir_domain_get_has_current_snapshot;
244 gvir_domain_get_snapshots;
245 gvir_domain_snapshot_delete;
246 gvir_domain_snapshot_delete_async;
247 gvir_domain_snapshot_delete_finish;
248 gvir_domain_snapshot_delete_flags_get_type;
249 gvir_domain_snapshot_get_is_current;
250 gvir_domain_snapshot_list_flags_get_type;
251 gvir_domain_snapshot_revert_flags_get_type;
252 gvir_domain_snapshot_revert_to;
253 gvir_domain_snapshot_revert_to_async;
254 gvir_domain_snapshot_revert_to_finish;
255 gvir_domain_snapshot_set_config;
256 gvir_storage_pool_state_get_type;
257 gvir_storage_vol_resize_flags_get_type;
258 gvir_storage_vol_type_get_type;
259 gvir_stream_io_condition_get_type;
260 } LIBVIRT_GOBJECT_0.1.5;
261
234262 # .... define new API here using predicted next version number ....
0 dnl GLIB_TESTS
1 dnl
2
3 AC_DEFUN([GLIB_TESTS],
4 [
5 AC_ARG_ENABLE(installed-tests,
6 AS_HELP_STRING([--enable-installed-tests],
7 [Enable installation of some test cases]),
8 [case ${enableval} in
9 yes) ENABLE_INSTALLED_TESTS="1" ;;
10 no) ENABLE_INSTALLED_TESTS="" ;;
11 *) AC_MSG_ERROR([bad value ${enableval} for --enable-installed-tests]) ;;
12 esac])
13 AM_CONDITIONAL([ENABLE_INSTALLED_TESTS], test "$ENABLE_INSTALLED_TESTS" = "1")
14 AC_ARG_ENABLE(always-build-tests,
15 AS_HELP_STRING([--enable-always-build-tests],
16 [Enable always building tests during 'make all']),
17 [case ${enableval} in
18 yes) ENABLE_ALWAYS_BUILD_TESTS="1" ;;
19 no) ENABLE_ALWAYS_BUILD_TESTS="" ;;
20 *) AC_MSG_ERROR([bad value ${enableval} for --enable-always-build-tests]) ;;
21 esac])
22 AM_CONDITIONAL([ENABLE_ALWAYS_BUILD_TESTS], test "$ENABLE_ALWAYS_BUILD_TESTS" = "1")
23 if test "$ENABLE_INSTALLED_TESTS" = "1"; then
24 AC_SUBST(installed_test_metadir, [${datadir}/installed-tests/]AC_PACKAGE_NAME)
25 AC_SUBST(installed_testdir, [${libexecdir}/installed-tests/]AC_PACKAGE_NAME)
26 fi
27 ])
13111311 rm -rf conftest*
13121312 ;;
13131313
1314 x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
1314 x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \
13151315 s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
13161316 # Find out which ABI we are using.
13171317 echo 'int i;' > conftest.$ac_ext
13251325 x86_64-*linux*)
13261326 LD="${LD-ld} -m elf_i386"
13271327 ;;
1328 ppc64-*linux*|powerpc64-*linux*)
1328 powerpc64le-*linux*)
1329 LD="${LD-ld} -m elf32lppclinux"
1330 ;;
1331 powerpc64-*linux*)
13291332 LD="${LD-ld} -m elf32ppclinux"
13301333 ;;
13311334 s390x-*linux*)
13441347 x86_64-*linux*)
13451348 LD="${LD-ld} -m elf_x86_64"
13461349 ;;
1347 ppc*-*linux*|powerpc*-*linux*)
1350 powerpcle-*linux*)
1351 LD="${LD-ld} -m elf64lppc"
1352 ;;
1353 powerpc-*linux*)
13481354 LD="${LD-ld} -m elf64ppc"
13491355 ;;
13501356 s390*-*linux*|s390*-*tpf*)
0 # warnings.m4 serial 5
1 dnl Copyright (C) 2008-2012 Free Software Foundation, Inc.
0 # warnings.m4 serial 11
1 dnl Copyright (C) 2008-2013 Free Software Foundation, Inc.
22 dnl This file is free software; the Free Software Foundation
33 dnl gives unlimited permission to copy and/or distribute it,
44 dnl with or without modifications, as long as this notice is preserved.
1313 [m4_define([gl_AS_VAR_APPEND],
1414 [AS_VAR_SET([$1], [AS_VAR_GET([$1])$2])])])
1515
16 # gl_WARN_ADD(PARAMETER, [VARIABLE = WARN_CFLAGS])
17 # ------------------------------------------------
18 # Adds parameter to WARN_CFLAGS if the compiler supports it. For example,
19 # gl_WARN_ADD([-Wparentheses]).
16
17 # gl_COMPILER_OPTION_IF(OPTION, [IF-SUPPORTED], [IF-NOT-SUPPORTED],
18 # [PROGRAM = AC_LANG_PROGRAM()])
19 # -----------------------------------------------------------------
20 # Check if the compiler supports OPTION when compiling PROGRAM.
21 #
22 # FIXME: gl_Warn must be used unquoted until we can assume Autoconf
23 # 2.64 or newer.
24 AC_DEFUN([gl_COMPILER_OPTION_IF],
25 [AS_VAR_PUSHDEF([gl_Warn], [gl_cv_warn_[]_AC_LANG_ABBREV[]_$1])dnl
26 AS_VAR_PUSHDEF([gl_Flags], [_AC_LANG_PREFIX[]FLAGS])dnl
27 AS_LITERAL_IF([$1],
28 [m4_pushdef([gl_Positive], m4_bpatsubst([$1], [^-Wno-], [-W]))],
29 [gl_positive="$1"
30 case $gl_positive in
31 -Wno-*) gl_positive=-W`expr "X$gl_positive" : 'X-Wno-\(.*\)'` ;;
32 esac
33 m4_pushdef([gl_Positive], [$gl_positive])])dnl
34 AC_CACHE_CHECK([whether _AC_LANG compiler handles $1], m4_defn([gl_Warn]), [
35 gl_save_compiler_FLAGS="$gl_Flags"
36 gl_AS_VAR_APPEND(m4_defn([gl_Flags]),
37 [" $gl_unknown_warnings_are_errors ]m4_defn([gl_Positive])["])
38 AC_LINK_IFELSE([m4_default([$4], [AC_LANG_PROGRAM([])])],
39 [AS_VAR_SET(gl_Warn, [yes])],
40 [AS_VAR_SET(gl_Warn, [no])])
41 gl_Flags="$gl_save_compiler_FLAGS"
42 ])
43 AS_VAR_IF(gl_Warn, [yes], [$2], [$3])
44 m4_popdef([gl_Positive])dnl
45 AS_VAR_POPDEF([gl_Flags])dnl
46 AS_VAR_POPDEF([gl_Warn])dnl
47 ])
48
49 # gl_UNKNOWN_WARNINGS_ARE_ERRORS
50 # ------------------------------
51 # Clang doesn't complain about unknown warning options unless one also
52 # specifies -Wunknown-warning-option -Werror. Detect this.
53 AC_DEFUN([gl_UNKNOWN_WARNINGS_ARE_ERRORS],
54 [gl_COMPILER_OPTION_IF([-Werror -Wunknown-warning-option],
55 [gl_unknown_warnings_are_errors='-Wunknown-warning-option -Werror'],
56 [gl_unknown_warnings_are_errors=])])
57
58 # gl_WARN_ADD(OPTION, [VARIABLE = WARN_CFLAGS],
59 # [PROGRAM = AC_LANG_PROGRAM()])
60 # ---------------------------------------------
61 # Adds parameter to WARN_CFLAGS if the compiler supports it when
62 # compiling PROGRAM. For example, gl_WARN_ADD([-Wparentheses]).
63 #
64 # If VARIABLE is a variable name, AC_SUBST it.
2065 AC_DEFUN([gl_WARN_ADD],
21 dnl FIXME: gl_Warn must be used unquoted until we can assume
22 dnl autoconf 2.64 or newer.
23 [AS_VAR_PUSHDEF([gl_Warn], [gl_cv_warn_$1])dnl
24 AC_CACHE_CHECK([whether compiler handles $1], m4_defn([gl_Warn]), [
25 gl_save_CPPFLAGS="$CPPFLAGS"
26 CPPFLAGS="${CPPFLAGS} $1"
27 AC_PREPROC_IFELSE([AC_LANG_PROGRAM([])],
28 [AS_VAR_SET(gl_Warn, [yes])],
29 [AS_VAR_SET(gl_Warn, [no])])
30 CPPFLAGS="$gl_save_CPPFLAGS"
66 [AC_REQUIRE([gl_UNKNOWN_WARNINGS_ARE_ERRORS])
67 gl_COMPILER_OPTION_IF([$1],
68 [gl_AS_VAR_APPEND(m4_if([$2], [], [[WARN_CFLAGS]], [[$2]]), [" $1"])],
69 [],
70 [$3])
71 m4_ifval([$2],
72 [AS_LITERAL_IF([$2], [AC_SUBST([$2])])],
73 [AC_SUBST([WARN_CFLAGS])])dnl
3174 ])
32 AS_VAR_IF(gl_Warn, [yes],
33 [gl_AS_VAR_APPEND(m4_if([$2], [], [[WARN_CFLAGS]], [[$2]]), [" $1"])])
34 AS_VAR_POPDEF([gl_Warn])dnl
35 m4_ifval([$2], [AS_LITERAL_IF([$2], [AC_SUBST([$2])], [])])dnl
36 ])
75
76 # Local Variables:
77 # mode: autoconf
78 # End:
1515 BuildRequires: mingw64-glib2
1616 BuildRequires: mingw32-libvirt >= 0.9.10
1717 BuildRequires: mingw64-libvirt >= 0.9.10
18
18 BuildRequires: intltool
1919 BuildRequires: pkgconfig
2020
2121 BuildArch: noarch
105105 rm -rf $RPM_BUILD_ROOT%{mingw32_datadir}/gtk-doc
106106 rm -rf $RPM_BUILD_ROOT%{mingw64_datadir}/gtk-doc
107107
108 %mingw_find_lang libvirt-glib
108109
109 %files -n mingw32-libvirt-glib
110 %files -n mingw32-libvirt-glib -f mingw32-libvirt-glib.lang
110111 %doc README COPYING AUTHORS ChangeLog NEWS
111112 %{mingw32_bindir}/libvirt-glib-1.0-0.dll
112113
120121 %{mingw32_includedir}/libvirt-glib-1.0/libvirt-glib/libvirt-glib.h
121122 %{mingw32_includedir}/libvirt-glib-1.0/libvirt-glib/libvirt-glib-*.h
122123
123 %files -n mingw64-libvirt-glib
124 %files -n mingw64-libvirt-glib -f mingw64-libvirt-glib.lang
124125 %doc README COPYING AUTHORS ChangeLog NEWS
125126 %{mingw64_bindir}/libvirt-glib-1.0-0.dll
126127
0 ach
1 af
2 aln
3 am
4 ar
5 as
6 ast
7 az
8 bal
9 be
10 bg
11 bn_IN
12 bn
13 bo
14 br
15 brx
16 bs
17 ca
18 cs
19 cy
20 da
21 de_CH
22 de
23 dz
24 el
25 en_GB
26 en_US
27 eo
28 es
29 et
30 eu
31 fa
32 fi
33 fr
34 ga
35 gl
36 gu
37 he
38 hi
39 hr
40 hu
41 hy
42 ia
43 id
44 ilo
45 is
46 it
47 ja
48 ka
49 kk
50 km
51 kn
52 ko
53 ks
54 ku
55 ky
56 la
57 lo
58 lt
59 lv
60 mai
61 mg
62 mk
63 ml
64 mn
65 mr
66 ms
67 my
68 nb
69 nds
70 ne
71 nl
72 nn
73 no
74 nso
75 or
76 pa
77 pl
78 pt_BR
79 pt
80 ro
81 ru
82 ru_RU
83 si
84 sk
85 sl
86 sq
87 sr@latin
88 sr
89 sv
90 ta
91 te
92 tg
93 th
94 tl
95 tr
96 uk
97 ur
98 uz
99 vi
100 wo
101 xh
102 zh_CN
103 zh_HK
104 zh_TW
105 zu
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2014-03-24 16:45+0000\n"
11 "Last-Translator: Jared Smith <jsmith@fedoraproject.org>\n"
12 "Language-Team: Acoli (http://www.transifex.com/projects/p/libvirt-glib/language/ach/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ach\n"
17 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Afrikaans (http://www.transifex.com/projects/p/libvirt-glib/language/af/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: af\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Albanian Gheg (http://www.transifex.com/projects/p/libvirt-glib/language/aln/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: aln\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Amharic (http://www.transifex.com/projects/p/libvirt-glib/language/am/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: am\n"
17 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Arabic (http://www.transifex.com/projects/p/libvirt-glib/language/ar/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ar\n"
17 "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Assamese (http://www.transifex.com/projects/p/libvirt-glib/language/as/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: as\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Asturian (http://www.transifex.com/projects/p/libvirt-glib/language/ast/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ast\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/libvirt-glib/language/az/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: az\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Balochi (http://www.transifex.com/projects/p/libvirt-glib/language/bal/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: bal\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Belarusian (http://www.transifex.com/projects/p/libvirt-glib/language/be/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: be\n"
17 "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Bulgarian (http://www.transifex.com/projects/p/libvirt-glib/language/bg/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: bg\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Bengali (http://www.transifex.com/projects/p/libvirt-glib/language/bn/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: bn\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/libvirt-glib/language/bn_IN/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: bn_IN\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Tibetan (http://www.transifex.com/projects/p/libvirt-glib/language/bo/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: bo\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Breton (http://www.transifex.com/projects/p/libvirt-glib/language/br/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: br\n"
17 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Bodo (http://www.transifex.com/projects/p/libvirt-glib/language/brx/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: brx\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Bosnian (http://www.transifex.com/projects/p/libvirt-glib/language/bs/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: bs\n"
17 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Catalan (http://www.transifex.com/projects/p/libvirt-glib/language/ca/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ca\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Czech (http://www.transifex.com/projects/p/libvirt-glib/language/cs/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: cs\n"
17 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Welsh (http://www.transifex.com/projects/p/libvirt-glib/language/cy/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: cy\n"
17 "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Danish (http://www.transifex.com/projects/p/libvirt-glib/language/da/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: da\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: German (http://www.transifex.com/projects/p/libvirt-glib/language/de/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: de\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/libvirt-glib/language/de_CH/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: de_CH\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Dzongkha (http://www.transifex.com/projects/p/libvirt-glib/language/dz/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: dz\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Greek (http://www.transifex.com/projects/p/libvirt-glib/language/el/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: el\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 # Robert Readman <robert_readman@hotmail.com>, 2013
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: libvirt-glib\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
11 "PO-Revision-Date: 2013-11-20 11:38+0000\n"
12 "Last-Translator: Robert Readman <robert_readman@hotmail.com>\n"
13 "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/libvirt-glib/language/en_GB/)\n"
14 "MIME-Version: 1.0\n"
15 "Content-Type: text/plain; charset=UTF-8\n"
16 "Content-Transfer-Encoding: 8bit\n"
17 "Language: en_GB\n"
18 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
20 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 msgid "No XML document to parse"
22 msgstr "No XML document to parse"
23
24 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 msgid "Unable to parse configuration"
26 msgstr "Unable to parse configuration"
27
28 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #, c-format
30 msgid "XML data has no '%s' node"
31 msgstr "XML data has no '%s' node"
32
33 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
34 msgid "No XML document associated with this config object"
35 msgstr "No XML document associated with this config object"
36
37 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
38 #, c-format
39 msgid "Unable to create RNG parser for %s"
40 msgstr "Unable to create RNG parser for %s"
41
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
43 #, c-format
44 msgid "Unable to parse RNG %s"
45 msgstr "Unable to parse RNG %s"
46
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
48 #, c-format
49 msgid "Unable to create RNG validation context %s"
50 msgstr "Unable to create RNG validation context %s"
51
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
53 msgid "Unable to validate doc"
54 msgstr "Unable to validate doc"
55
56 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
57 #, c-format
58 msgid "Connection %s is already open"
59 msgstr "Connection %s is already open"
60
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
62 #, c-format
63 msgid "Unable to open %s"
64 msgstr "Unable to open %s"
65
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
67 msgid "Unable to get connection URI"
68 msgstr "Unable to get connection URI"
69
70 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
71 #, c-format
72 msgid "Unable to count %s"
73 msgstr "Unable to count %s"
74
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
76 #, c-format
77 msgid "Unable to list %s %d"
78 msgstr "Unable to list %s %d"
79
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
81 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
82 msgid "Connection is not open"
83 msgstr "Connection is not open"
84
85 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
86 msgid "Unable to count domains"
87 msgstr "Unable to count domains"
88
89 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
90 msgid "Unable to list domains"
91 msgstr "Unable to list domains"
92
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
94 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
95 msgid "Connection is not opened"
96 msgstr "Connection is not opened"
97
98 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
99 msgid "Unable to get hypervisor name"
100 msgstr "Unable to get hypervisor name"
101
102 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
103 msgid "Unable to get hypervisor version"
104 msgstr "Unable to get hypervisor version"
105
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
107 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
108 msgid "Failed to create domain"
109 msgstr "Failed to create domain"
110
111 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
112 msgid "Failed to create storage pool"
113 msgstr "Failed to create storage pool"
114
115 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
116 msgid "Unable to get node info"
117 msgstr "Unable to get node info"
118
119 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
120 msgid "Unable to get capabilities"
121 msgstr "Unable to get capabilities"
122
123 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
124 msgid "Unable to restore domain"
125 msgstr "Unable to restore domain"
126
127 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
128 msgid "virStreamRecv call would block"
129 msgstr "virStreamRecv call would block"
130
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
133 #, c-format
134 msgid "Got virStreamRecv error in %s"
135 msgstr "Got virStreamRecv error in %s"
136
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
138 msgid "Unable to perform RecvAll"
139 msgstr "Unable to perform RecvAll"
140
141 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
142 msgid "virStreamSend call would block"
143 msgstr "virStreamSend call would block"
144
145 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
146 msgid "Unable to perform SendAll"
147 msgstr "Unable to perform SendAll"
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: English (United States) (http://www.transifex.com/projects/p/libvirt-glib/language/en_US/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: en_US\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Esperanto (http://www.transifex.com/projects/p/libvirt-glib/language/eo/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: eo\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 # Adolfo Jayme Barrientos <fitoschido@ubuntu.com>, 2013
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: libvirt-glib\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
11 "PO-Revision-Date: 2013-11-20 11:38+0000\n"
12 "Last-Translator: Adolfo Jayme Barrientos <fitoschido@ubuntu.com>\n"
13 "Language-Team: Spanish (http://www.transifex.com/projects/p/libvirt-glib/language/es/)\n"
14 "MIME-Version: 1.0\n"
15 "Content-Type: text/plain; charset=UTF-8\n"
16 "Content-Transfer-Encoding: 8bit\n"
17 "Language: es\n"
18 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
20 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 msgid "No XML document to parse"
22 msgstr "No hay ningún document XML que analizar"
23
24 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 msgid "Unable to parse configuration"
26 msgstr "No se pudo analizar la configuración"
27
28 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #, c-format
30 msgid "XML data has no '%s' node"
31 msgstr "Los datos XML no tienen un nodo «%s»"
32
33 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
34 msgid "No XML document associated with this config object"
35 msgstr "No hay ningún documento XML asociado con este objeto de la configuración"
36
37 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
38 #, c-format
39 msgid "Unable to create RNG parser for %s"
40 msgstr "No se pudo crear el analizador RNG para %s"
41
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
43 #, c-format
44 msgid "Unable to parse RNG %s"
45 msgstr "No se pudo analizar el RNG %s"
46
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
48 #, c-format
49 msgid "Unable to create RNG validation context %s"
50 msgstr "No se pudo crear el contexto de validación de RNG %s"
51
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
53 msgid "Unable to validate doc"
54 msgstr "No se pudo validar el documento"
55
56 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
57 #, c-format
58 msgid "Connection %s is already open"
59 msgstr "La conexión %s ya está abierta"
60
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
62 #, c-format
63 msgid "Unable to open %s"
64 msgstr "No se puede abrir %s"
65
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
67 msgid "Unable to get connection URI"
68 msgstr "No se puede obtener el URI de la conexión"
69
70 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
71 #, c-format
72 msgid "Unable to count %s"
73 msgstr "No se puede contar %s"
74
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
76 #, c-format
77 msgid "Unable to list %s %d"
78 msgstr ""
79
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
81 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
82 msgid "Connection is not open"
83 msgstr "La conexión no está abierta"
84
85 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
86 msgid "Unable to count domains"
87 msgstr "No se pueden contar los dominios"
88
89 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
90 msgid "Unable to list domains"
91 msgstr "No se pueden listar los dominios"
92
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
94 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
95 msgid "Connection is not opened"
96 msgstr "La conexión no está abierta"
97
98 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
99 msgid "Unable to get hypervisor name"
100 msgstr "No se puede obtener el nombre del hipervisor"
101
102 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
103 msgid "Unable to get hypervisor version"
104 msgstr "No se puede obtener la versión del hipervisor"
105
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
107 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
108 msgid "Failed to create domain"
109 msgstr "Falló al crear el dominio"
110
111 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
112 msgid "Failed to create storage pool"
113 msgstr "Falló al crear el grupo de almacenamiento"
114
115 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
116 msgid "Unable to get node info"
117 msgstr "No se puede obtener la información del nodo"
118
119 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
120 msgid "Unable to get capabilities"
121 msgstr "No se pudieron obtener las capacidades"
122
123 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
124 msgid "Unable to restore domain"
125 msgstr "No se puede restaurar el dominio"
126
127 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
128 msgid "virStreamRecv call would block"
129 msgstr ""
130
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
133 #, c-format
134 msgid "Got virStreamRecv error in %s"
135 msgstr "Se obtivo el error virStreamRecv en %s"
136
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
138 msgid "Unable to perform RecvAll"
139 msgstr "No se puede realizar RecvAll"
140
141 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
142 msgid "virStreamSend call would block"
143 msgstr ""
144
145 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
146 msgid "Unable to perform SendAll"
147 msgstr "No se puede realizar SendAll"
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Estonian (http://www.transifex.com/projects/p/libvirt-glib/language/et/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: et\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Basque (http://www.transifex.com/projects/p/libvirt-glib/language/eu/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: eu\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Persian (http://www.transifex.com/projects/p/libvirt-glib/language/fa/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: fa\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Finnish (http://www.transifex.com/projects/p/libvirt-glib/language/fi/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: fi\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 # Jérôme Fenal <jfenal@gmail.com>, 2013
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: libvirt-glib\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
11 "PO-Revision-Date: 2013-11-20 11:38+0000\n"
12 "Last-Translator: Jérôme Fenal <jfenal@gmail.com>\n"
13 "Language-Team: French (http://www.transifex.com/projects/p/libvirt-glib/language/fr/)\n"
14 "MIME-Version: 1.0\n"
15 "Content-Type: text/plain; charset=UTF-8\n"
16 "Content-Transfer-Encoding: 8bit\n"
17 "Language: fr\n"
18 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
20 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 msgid "No XML document to parse"
22 msgstr "Aucun document XML à analyser"
23
24 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 msgid "Unable to parse configuration"
26 msgstr "Impossible d'analyser la configuration"
27
28 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #, c-format
30 msgid "XML data has no '%s' node"
31 msgstr "Les données XML n'ont pas de nœud « %s »"
32
33 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
34 msgid "No XML document associated with this config object"
35 msgstr "Aucun document XML associé avec cet objet de configuration"
36
37 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
38 #, c-format
39 msgid "Unable to create RNG parser for %s"
40 msgstr "Impossible de créer l'analyseur RNG pour %s"
41
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
43 #, c-format
44 msgid "Unable to parse RNG %s"
45 msgstr "Impossible d'analyser le RNG %s"
46
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
48 #, c-format
49 msgid "Unable to create RNG validation context %s"
50 msgstr "Impossible de créer un contexte de validation RNG %s"
51
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
53 msgid "Unable to validate doc"
54 msgstr "Impossible de valider le document"
55
56 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
57 #, c-format
58 msgid "Connection %s is already open"
59 msgstr "La connexion %s est déjà ouverte"
60
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
62 #, c-format
63 msgid "Unable to open %s"
64 msgstr "Impossible d'ouvrir %s"
65
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
67 msgid "Unable to get connection URI"
68 msgstr "Impossible d'obtenir l'URI de connexion"
69
70 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
71 #, c-format
72 msgid "Unable to count %s"
73 msgstr "Impossible de compter %s"
74
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
76 #, c-format
77 msgid "Unable to list %s %d"
78 msgstr "Impossible de lister %s %d"
79
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
81 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
82 msgid "Connection is not open"
83 msgstr "La connexion n'est pas ouverte"
84
85 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
86 msgid "Unable to count domains"
87 msgstr "Impossible de compter les domaines"
88
89 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
90 msgid "Unable to list domains"
91 msgstr "Impossible de lister les domaines"
92
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
94 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
95 msgid "Connection is not opened"
96 msgstr "La connexion n'est pas ouverte"
97
98 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
99 msgid "Unable to get hypervisor name"
100 msgstr "Impossible d'obtenir le nom de l'hyperviseur"
101
102 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
103 msgid "Unable to get hypervisor version"
104 msgstr "Impossible d'obtenir la version de l'hyperviseur"
105
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
107 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
108 msgid "Failed to create domain"
109 msgstr "Échec de la création du domaine"
110
111 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
112 msgid "Failed to create storage pool"
113 msgstr "Échec de la création du pool de stockage"
114
115 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
116 msgid "Unable to get node info"
117 msgstr "Impossible d'obtenir les informations sur le nœud"
118
119 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
120 msgid "Unable to get capabilities"
121 msgstr "Impossible d'obtenir les capacités"
122
123 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
124 msgid "Unable to restore domain"
125 msgstr "Impossible de restaurer le domaine"
126
127 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
128 msgid "virStreamRecv call would block"
129 msgstr "L'appel à virStreamRecv serait bloquant"
130
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
133 #, c-format
134 msgid "Got virStreamRecv error in %s"
135 msgstr "Erreur virStreamRecv survenue dans %s"
136
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
138 msgid "Unable to perform RecvAll"
139 msgstr "Impossible d'exécuter RecvAll"
140
141 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
142 msgid "virStreamSend call would block"
143 msgstr "L'appel à virStreamSend serait bloquant"
144
145 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
146 msgid "Unable to perform SendAll"
147 msgstr "Impossible d'exécuter SendAll"
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Irish (http://www.transifex.com/projects/p/libvirt-glib/language/ga/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ga\n"
17 "Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Galician (http://www.transifex.com/projects/p/libvirt-glib/language/gl/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: gl\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Gujarati (http://www.transifex.com/projects/p/libvirt-glib/language/gu/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: gu\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Hebrew (http://www.transifex.com/projects/p/libvirt-glib/language/he/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: he\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 # Mohan Prakash <mpduty@gmail.com>, 2014
6 # Rajesh Ranjan <rranjan@redhat.com>, 2014
7 msgid ""
8 msgstr ""
9 "Project-Id-Version: libvirt-glib\n"
10 "Report-Msgid-Bugs-To: \n"
11 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
12 "PO-Revision-Date: 2014-01-14 10:04+0000\n"
13 "Last-Translator: Rajesh Ranjan <rranjan@redhat.com>\n"
14 "Language-Team: Hindi (http://www.transifex.com/projects/p/libvirt-glib/language/hi/)\n"
15 "MIME-Version: 1.0\n"
16 "Content-Type: text/plain; charset=UTF-8\n"
17 "Content-Transfer-Encoding: 8bit\n"
18 "Language: hi\n"
19 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
22 msgid "No XML document to parse"
23 msgstr "विश्लेषण करने के लिए कोई XML दस्तावेज़ उपल्बध नहीं "
24
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
26 msgid "Unable to parse configuration"
27 msgstr "विन्यास के विश्लेषण कर पाने में असमर्थ"
28
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
30 #, c-format
31 msgid "XML data has no '%s' node"
32 msgstr "XML data का कोई '%s' नोड नहीं है"
33
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
35 msgid "No XML document associated with this config object"
36 msgstr "इस XML दस्तावेज़ के साथ कोई कॉन्फ़िंग ऑब्जेक्ट नहीं है"
37
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
39 #, c-format
40 msgid "Unable to create RNG parser for %s"
41 msgstr "%s के लिए RNG विश्लेषक का निर्माण करने में असमर्थ"
42
43 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
44 #, c-format
45 msgid "Unable to parse RNG %s"
46 msgstr "RNG %s को विश्लेषण करने में असमर्थ"
47
48 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
49 #, c-format
50 msgid "Unable to create RNG validation context %s"
51 msgstr "RNG अभिप्रमाणित सन्दर्भ %s का निर्माण करने में असमर्थ"
52
53 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
54 msgid "Unable to validate doc"
55 msgstr "डॉक को अभिप्रमाणित करने में असमर्थ"
56
57 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
58 #, c-format
59 msgid "Connection %s is already open"
60 msgstr "कनेक्शन %s पहले से ही खुला है"
61
62 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
63 #, c-format
64 msgid "Unable to open %s"
65 msgstr "%s को खोल पाने में असमर्थ "
66
67 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
68 msgid "Unable to get connection URI"
69 msgstr "URI कनेक्शन प्राप्त करने में असमर्थ "
70
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
72 #, c-format
73 msgid "Unable to count %s"
74 msgstr "%s को गिनने में असमर्थ"
75
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
77 #, c-format
78 msgid "Unable to list %s %d"
79 msgstr "%s %d की सूची बनाने में असमर्थ"
80
81 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
83 msgid "Connection is not open"
84 msgstr "कनेक्शन खुला नहीं है"
85
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
87 msgid "Unable to count domains"
88 msgstr "डोमेन को गिन पाने में असमर्थ"
89
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
91 msgid "Unable to list domains"
92 msgstr "डोमेन की सूची बनाने में असमर्थ"
93
94 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
96 msgid "Connection is not opened"
97 msgstr "कनेक्शन को खोला नहीं गया है"
98
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
100 msgid "Unable to get hypervisor name"
101 msgstr "हाइपरविज़र का नाम प्राप्त करने में असमर्थ"
102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
104 msgid "Unable to get hypervisor version"
105 msgstr "हाइपरविज़र का सन्सकरण प्राप्त करने मे असमर्थ"
106
107 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
109 msgid "Failed to create domain"
110 msgstr "डोमेन का निर्माण कर पाने में असफल"
111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
113 msgid "Failed to create storage pool"
114 msgstr "संग्रहण पूल का निर्माण करने में असफल"
115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
117 msgid "Unable to get node info"
118 msgstr "नोड की जानकारी प्राप्त करने में असमर्थ"
119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
121 msgid "Unable to get capabilities"
122 msgstr "सक्षमता प्राप्त करने में असमर्थ"
123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
125 msgid "Unable to restore domain"
126 msgstr "डोमेन पुन: स्थापित करने में असमर्थ"
127
128 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
129 msgid "virStreamRecv call would block"
130 msgstr "virStreamRecv का कॉल रोक देता"
131
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
133 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
134 #, c-format
135 msgid "Got virStreamRecv error in %s"
136 msgstr "%s में virStreamRecv त्रुटि पाया"
137
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
139 msgid "Unable to perform RecvAll"
140 msgstr "RecvAll के कार्यान्वयन में असमर्थ"
141
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
143 msgid "virStreamSend call would block"
144 msgstr "virStreamSend का कॉल रोक देता"
145
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
147 msgid "Unable to perform SendAll"
148 msgstr "SendAll के कार्यान्वयन में असमर्थ"
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Croatian (http://www.transifex.com/projects/p/libvirt-glib/language/hr/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: hr\n"
17 "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Hungarian (http://www.transifex.com/projects/p/libvirt-glib/language/hu/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: hu\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Armenian (http://www.transifex.com/projects/p/libvirt-glib/language/hy/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: hy\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Interlingua (http://www.transifex.com/projects/p/libvirt-glib/language/ia/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ia\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Indonesian (http://www.transifex.com/projects/p/libvirt-glib/language/id/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: id\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Iloko (http://www.transifex.com/projects/p/libvirt-glib/language/ilo/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ilo\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Icelandic (http://www.transifex.com/projects/p/libvirt-glib/language/is/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: is\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Italian (http://www.transifex.com/projects/p/libvirt-glib/language/it/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: it\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 # Hajime Taira <htaira@redhat.com>, 2013
6 # Tomoyuki KATO <tomo@dream.daynight.jp>, 2013
7 msgid ""
8 msgstr ""
9 "Project-Id-Version: libvirt-glib\n"
10 "Report-Msgid-Bugs-To: \n"
11 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
12 "PO-Revision-Date: 2013-11-20 11:38+0000\n"
13 "Last-Translator: Hajime Taira <htaira@redhat.com>\n"
14 "Language-Team: Japanese (http://www.transifex.com/projects/p/libvirt-glib/language/ja/)\n"
15 "MIME-Version: 1.0\n"
16 "Content-Type: text/plain; charset=UTF-8\n"
17 "Content-Transfer-Encoding: 8bit\n"
18 "Language: ja\n"
19 "Plural-Forms: nplurals=1; plural=0;\n"
20
21 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
22 msgid "No XML document to parse"
23 msgstr "構文解析する XML ドキュメントがありません"
24
25 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
26 msgid "Unable to parse configuration"
27 msgstr "設定を構文解析できません"
28
29 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
30 #, c-format
31 msgid "XML data has no '%s' node"
32 msgstr "XML データに '%s' ノードがありません"
33
34 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
35 msgid "No XML document associated with this config object"
36 msgstr "この設定オブジェクトと関連付けられた XML ドキュメントがありません"
37
38 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
39 #, c-format
40 msgid "Unable to create RNG parser for %s"
41 msgstr "%s の RNG パーサーを作成できません"
42
43 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
44 #, c-format
45 msgid "Unable to parse RNG %s"
46 msgstr "RNG %s を構文解析できません"
47
48 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
49 #, c-format
50 msgid "Unable to create RNG validation context %s"
51 msgstr "RNG 検証コンテキスト %s を作成できません"
52
53 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
54 msgid "Unable to validate doc"
55 msgstr "ドキュメントを検証できません"
56
57 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
58 #, c-format
59 msgid "Connection %s is already open"
60 msgstr "すでに接続 %s が開かれています"
61
62 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
63 #, c-format
64 msgid "Unable to open %s"
65 msgstr "%s を開けません"
66
67 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
68 msgid "Unable to get connection URI"
69 msgstr "接続 URI を取得できません"
70
71 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
72 #, c-format
73 msgid "Unable to count %s"
74 msgstr "%s を数えられません"
75
76 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
77 #, c-format
78 msgid "Unable to list %s %d"
79 msgstr "%s %d を一覧表示できません"
80
81 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
83 msgid "Connection is not open"
84 msgstr "接続されていません"
85
86 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
87 msgid "Unable to count domains"
88 msgstr "ドメインを数えられません"
89
90 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
91 msgid "Unable to list domains"
92 msgstr "ドメインを一覧表示できません"
93
94 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
96 msgid "Connection is not opened"
97 msgstr "接続されていません"
98
99 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
100 msgid "Unable to get hypervisor name"
101 msgstr "ハイパーバイザーの名前を取得できません"
102
103 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
104 msgid "Unable to get hypervisor version"
105 msgstr "ハイパーバイザーのバージョンを取得できません"
106
107 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
109 msgid "Failed to create domain"
110 msgstr "ドメインの作成に失敗しました"
111
112 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
113 msgid "Failed to create storage pool"
114 msgstr "ストレージプールの作成に失敗しました"
115
116 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
117 msgid "Unable to get node info"
118 msgstr "ノード情報を取得できません"
119
120 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
121 msgid "Unable to get capabilities"
122 msgstr "ケイパビリティを取得できません"
123
124 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
125 msgid "Unable to restore domain"
126 msgstr "ドメインを復元できません"
127
128 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
129 msgid "virStreamRecv call would block"
130 msgstr "virStreamRecv の呼び出しがブロックされます"
131
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
133 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
134 #, c-format
135 msgid "Got virStreamRecv error in %s"
136 msgstr "%s において virStreamRecv エラーが発生しました"
137
138 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
139 msgid "Unable to perform RecvAll"
140 msgstr "RecvAll を実行できません"
141
142 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
143 msgid "virStreamSend call would block"
144 msgstr "virStreamSend の呼び出しがブロックされます"
145
146 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
147 msgid "Unable to perform SendAll"
148 msgstr "SendAll を実行できません"
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Georgian (http://www.transifex.com/projects/p/libvirt-glib/language/ka/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ka\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Kazakh (http://www.transifex.com/projects/p/libvirt-glib/language/kk/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: kk\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Khmer (http://www.transifex.com/projects/p/libvirt-glib/language/km/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: km\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Kannada (http://www.transifex.com/projects/p/libvirt-glib/language/kn/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: kn\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Korean (http://www.transifex.com/projects/p/libvirt-glib/language/ko/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ko\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Kashmiri (http://www.transifex.com/projects/p/libvirt-glib/language/ks/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ks\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Kurdish (http://www.transifex.com/projects/p/libvirt-glib/language/ku/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ku\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Kirgyz (http://www.transifex.com/projects/p/libvirt-glib/language/ky/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ky\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Latin (http://www.transifex.com/projects/p/libvirt-glib/language/la/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: la\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Lao (http://www.transifex.com/projects/p/libvirt-glib/language/lo/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: lo\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Lithuanian (http://www.transifex.com/projects/p/libvirt-glib/language/lt/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: lt\n"
17 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Latvian (http://www.transifex.com/projects/p/libvirt-glib/language/lv/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: lv\n"
17 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Maithili (http://www.transifex.com/projects/p/libvirt-glib/language/mai/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: mai\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Malagasy (http://www.transifex.com/projects/p/libvirt-glib/language/mg/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: mg\n"
17 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Macedonian (http://www.transifex.com/projects/p/libvirt-glib/language/mk/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: mk\n"
17 "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Malayalam (http://www.transifex.com/projects/p/libvirt-glib/language/ml/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ml\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Mongolian (http://www.transifex.com/projects/p/libvirt-glib/language/mn/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: mn\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Marathi (http://www.transifex.com/projects/p/libvirt-glib/language/mr/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: mr\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Malay (http://www.transifex.com/projects/p/libvirt-glib/language/ms/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ms\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Burmese (http://www.transifex.com/projects/p/libvirt-glib/language/my/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: my\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/libvirt-glib/language/nb/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: nb\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Low German (http://www.transifex.com/projects/p/libvirt-glib/language/nds/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: nds\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Nepali (http://www.transifex.com/projects/p/libvirt-glib/language/ne/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ne\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Dutch (http://www.transifex.com/projects/p/libvirt-glib/language/nl/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: nl\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Norwegian Nynorsk (http://www.transifex.com/projects/p/libvirt-glib/language/nn/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: nn\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Norwegian (http://www.transifex.com/projects/p/libvirt-glib/language/no/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: no\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Northern Sotho (http://www.transifex.com/projects/p/libvirt-glib/language/nso/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: nso\n"
17 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Oriya (http://www.transifex.com/projects/p/libvirt-glib/language/or/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: or\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/libvirt-glib/language/pa/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: pa\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 # Daniel <veillard@redhat.com>, 2011
6 # Mateusz Marzantowicz <mmarzantowicz@osdf.com.pl>, 2013
7 # Mateusz Marzantowicz <mmarzantowicz@osdf.com.pl>, 2012
8 msgid ""
9 msgstr ""
10 "Project-Id-Version: libvirt-glib\n"
11 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
13 "PO-Revision-Date: 2013-11-20 11:38+0000\n"
14 "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
15 "Language-Team: Polish (http://www.transifex.com/projects/p/libvirt-glib/language/pl/)\n"
16 "MIME-Version: 1.0\n"
17 "Content-Type: text/plain; charset=UTF-8\n"
18 "Content-Transfer-Encoding: 8bit\n"
19 "Language: pl\n"
20 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
21
22 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
23 msgid "No XML document to parse"
24 msgstr ""
25
26 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
27 msgid "Unable to parse configuration"
28 msgstr ""
29
30 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
31 #, c-format
32 msgid "XML data has no '%s' node"
33 msgstr ""
34
35 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
36 msgid "No XML document associated with this config object"
37 msgstr ""
38
39 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
40 #, c-format
41 msgid "Unable to create RNG parser for %s"
42 msgstr ""
43
44 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
45 #, c-format
46 msgid "Unable to parse RNG %s"
47 msgstr ""
48
49 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
50 #, c-format
51 msgid "Unable to create RNG validation context %s"
52 msgstr ""
53
54 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
55 msgid "Unable to validate doc"
56 msgstr ""
57
58 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
59 #, c-format
60 msgid "Connection %s is already open"
61 msgstr ""
62
63 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
64 #, c-format
65 msgid "Unable to open %s"
66 msgstr "Nie można otworzyć %s"
67
68 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
69 msgid "Unable to get connection URI"
70 msgstr ""
71
72 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
73 #, c-format
74 msgid "Unable to count %s"
75 msgstr ""
76
77 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
78 #, c-format
79 msgid "Unable to list %s %d"
80 msgstr ""
81
82 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
83 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
84 msgid "Connection is not open"
85 msgstr ""
86
87 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
88 msgid "Unable to count domains"
89 msgstr ""
90
91 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
92 msgid "Unable to list domains"
93 msgstr ""
94
95 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
96 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
97 msgid "Connection is not opened"
98 msgstr ""
99
100 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
101 msgid "Unable to get hypervisor name"
102 msgstr ""
103
104 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
105 msgid "Unable to get hypervisor version"
106 msgstr ""
107
108 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
109 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
110 msgid "Failed to create domain"
111 msgstr ""
112
113 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
114 msgid "Failed to create storage pool"
115 msgstr ""
116
117 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
118 msgid "Unable to get node info"
119 msgstr ""
120
121 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
122 msgid "Unable to get capabilities"
123 msgstr ""
124
125 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
126 msgid "Unable to restore domain"
127 msgstr ""
128
129 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
130 msgid "virStreamRecv call would block"
131 msgstr ""
132
133 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
134 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
135 #, c-format
136 msgid "Got virStreamRecv error in %s"
137 msgstr ""
138
139 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
140 msgid "Unable to perform RecvAll"
141 msgstr ""
142
143 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
144 msgid "virStreamSend call would block"
145 msgstr ""
146
147 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
148 msgid "Unable to perform SendAll"
149 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Portuguese (http://www.transifex.com/projects/p/libvirt-glib/language/pt/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: pt\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 # Fábio Olivé Leite <fabio.olive@gmail.com>, 2013
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: libvirt-glib\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
11 "PO-Revision-Date: 2014-07-03 17:19+0000\n"
12 "Last-Translator: Daniel Lara <danniel@fedoraproject.org>\n"
13 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/libvirt-glib/language/pt_BR/)\n"
14 "MIME-Version: 1.0\n"
15 "Content-Type: text/plain; charset=UTF-8\n"
16 "Content-Transfer-Encoding: 8bit\n"
17 "Language: pt_BR\n"
18 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
20 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 msgid "No XML document to parse"
22 msgstr "Nenhum documento XML para analisar"
23
24 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 msgid "Unable to parse configuration"
26 msgstr "Não foi possível ler a configuração"
27
28 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #, c-format
30 msgid "XML data has no '%s' node"
31 msgstr "Dados XML não possuem um nó '%s'"
32
33 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
34 msgid "No XML document associated with this config object"
35 msgstr "Nenhum documento XML associado a este objeto de configuração"
36
37 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
38 #, c-format
39 msgid "Unable to create RNG parser for %s"
40 msgstr "Não foi possível criar um analisador RNG para %s"
41
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
43 #, c-format
44 msgid "Unable to parse RNG %s"
45 msgstr "Não foi possível analisar o RNG %s"
46
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
48 #, c-format
49 msgid "Unable to create RNG validation context %s"
50 msgstr "Não foi possível criar o contexto de validação RNG %s"
51
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
53 msgid "Unable to validate doc"
54 msgstr "Não foi possível validar o documento"
55
56 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
57 #, c-format
58 msgid "Connection %s is already open"
59 msgstr "Conexão %s já está aberta"
60
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
62 #, c-format
63 msgid "Unable to open %s"
64 msgstr "Não foi possível abrir %s"
65
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
67 msgid "Unable to get connection URI"
68 msgstr "Não foi possível encontrar a URI da conexão"
69
70 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
71 #, c-format
72 msgid "Unable to count %s"
73 msgstr "Não foi possível contar %s"
74
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
76 #, c-format
77 msgid "Unable to list %s %d"
78 msgstr "Não foi possível listar %s %d"
79
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
81 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
82 msgid "Connection is not open"
83 msgstr "A conexão não está aberta"
84
85 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
86 msgid "Unable to count domains"
87 msgstr "Não foi possível contar os domínios"
88
89 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
90 msgid "Unable to list domains"
91 msgstr "Não foi possível listar os domínios"
92
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
94 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
95 msgid "Connection is not opened"
96 msgstr "A conexão não está aberta"
97
98 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
99 msgid "Unable to get hypervisor name"
100 msgstr "Não foi possível encontrar o nome do hypervisor"
101
102 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
103 msgid "Unable to get hypervisor version"
104 msgstr "Não foi possível encontrar a versão do hypervisor"
105
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
107 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
108 msgid "Failed to create domain"
109 msgstr "Falha na criação do domínio"
110
111 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
112 msgid "Failed to create storage pool"
113 msgstr "Falha na criação do storage pool"
114
115 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
116 msgid "Unable to get node info"
117 msgstr "Não foi possível buscar informações do nó"
118
119 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
120 msgid "Unable to get capabilities"
121 msgstr "Não foi possível buscar as capacidades"
122
123 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
124 msgid "Unable to restore domain"
125 msgstr "Não foi possível restaurar o domínio"
126
127 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
128 msgid "virStreamRecv call would block"
129 msgstr "A chamada a virStreamRecv bloquearia"
130
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
133 #, c-format
134 msgid "Got virStreamRecv error in %s"
135 msgstr "Erro virStreamRecv em %s"
136
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
138 msgid "Unable to perform RecvAll"
139 msgstr "Não foi possível realizar um RecvAll"
140
141 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
142 msgid "virStreamSend call would block"
143 msgstr "A chamada a virStreamSend bloquearia"
144
145 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
146 msgid "Unable to perform SendAll"
147 msgstr "Não foi possível realizar um SendAll"
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Romanian (http://www.transifex.com/projects/p/libvirt-glib/language/ro/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ro\n"
17 "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 # Alexander Savchenko, 2014
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: libvirt-glib\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
11 "PO-Revision-Date: 2014-07-15 21:11+0000\n"
12 "Last-Translator: Alexander Savchenko\n"
13 "Language-Team: Russian (http://www.transifex.com/projects/p/libvirt-glib/language/ru/)\n"
14 "MIME-Version: 1.0\n"
15 "Content-Type: text/plain; charset=UTF-8\n"
16 "Content-Transfer-Encoding: 8bit\n"
17 "Language: ru\n"
18 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
20 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 msgid "No XML document to parse"
22 msgstr ""
23
24 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 msgid "Unable to parse configuration"
26 msgstr ""
27
28 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #, c-format
30 msgid "XML data has no '%s' node"
31 msgstr ""
32
33 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
34 msgid "No XML document associated with this config object"
35 msgstr ""
36
37 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
38 #, c-format
39 msgid "Unable to create RNG parser for %s"
40 msgstr ""
41
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
43 #, c-format
44 msgid "Unable to parse RNG %s"
45 msgstr ""
46
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
48 #, c-format
49 msgid "Unable to create RNG validation context %s"
50 msgstr ""
51
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
53 msgid "Unable to validate doc"
54 msgstr ""
55
56 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
57 #, c-format
58 msgid "Connection %s is already open"
59 msgstr ""
60
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
62 #, c-format
63 msgid "Unable to open %s"
64 msgstr "Невозможно открыть %s"
65
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
67 msgid "Unable to get connection URI"
68 msgstr ""
69
70 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
71 #, c-format
72 msgid "Unable to count %s"
73 msgstr ""
74
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
76 #, c-format
77 msgid "Unable to list %s %d"
78 msgstr ""
79
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
81 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
82 msgid "Connection is not open"
83 msgstr ""
84
85 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
86 msgid "Unable to count domains"
87 msgstr ""
88
89 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
90 msgid "Unable to list domains"
91 msgstr ""
92
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
94 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
95 msgid "Connection is not opened"
96 msgstr ""
97
98 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
99 msgid "Unable to get hypervisor name"
100 msgstr ""
101
102 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
103 msgid "Unable to get hypervisor version"
104 msgstr ""
105
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
107 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
108 msgid "Failed to create domain"
109 msgstr ""
110
111 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
112 msgid "Failed to create storage pool"
113 msgstr ""
114
115 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
116 msgid "Unable to get node info"
117 msgstr ""
118
119 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
120 msgid "Unable to get capabilities"
121 msgstr ""
122
123 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
124 msgid "Unable to restore domain"
125 msgstr ""
126
127 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
128 msgid "virStreamRecv call would block"
129 msgstr ""
130
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
133 #, c-format
134 msgid "Got virStreamRecv error in %s"
135 msgstr ""
136
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
138 msgid "Unable to perform RecvAll"
139 msgstr ""
140
141 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
142 msgid "virStreamSend call would block"
143 msgstr ""
144
145 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
146 msgid "Unable to perform SendAll"
147 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/libvirt-glib/language/ru_RU/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ru_RU\n"
17 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Sinhala (http://www.transifex.com/projects/p/libvirt-glib/language/si/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: si\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Slovak (http://www.transifex.com/projects/p/libvirt-glib/language/sk/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: sk\n"
17 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Slovenian (http://www.transifex.com/projects/p/libvirt-glib/language/sl/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: sl\n"
17 "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Albanian (http://www.transifex.com/projects/p/libvirt-glib/language/sq/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: sq\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Serbian (http://www.transifex.com/projects/p/libvirt-glib/language/sr/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: sr\n"
17 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/libvirt-glib/language/sr@latin/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: sr@latin\n"
17 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Swedish (http://www.transifex.com/projects/p/libvirt-glib/language/sv/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: sv\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Tamil (http://www.transifex.com/projects/p/libvirt-glib/language/ta/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ta\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Telugu (http://www.transifex.com/projects/p/libvirt-glib/language/te/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: te\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Tajik (http://www.transifex.com/projects/p/libvirt-glib/language/tg/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: tg\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Thai (http://www.transifex.com/projects/p/libvirt-glib/language/th/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: th\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Tagalog (http://www.transifex.com/projects/p/libvirt-glib/language/tl/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: tl\n"
17 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Turkish (http://www.transifex.com/projects/p/libvirt-glib/language/tr/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: tr\n"
17 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 # Yuri Chornoivan <yurchor@ukr.net>, 2013
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: libvirt-glib\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
11 "PO-Revision-Date: 2013-11-20 11:38+0000\n"
12 "Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
13 "Language-Team: Ukrainian (http://www.transifex.com/projects/p/libvirt-glib/language/uk/)\n"
14 "MIME-Version: 1.0\n"
15 "Content-Type: text/plain; charset=UTF-8\n"
16 "Content-Transfer-Encoding: 8bit\n"
17 "Language: uk\n"
18 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
20 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
21 msgid "No XML document to parse"
22 msgstr "Немає документа XML для обробки"
23
24 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
25 msgid "Unable to parse configuration"
26 msgstr "Не вдалося обробити налаштування"
27
28 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
29 #, c-format
30 msgid "XML data has no '%s' node"
31 msgstr "У даних XML немає вузла «%s»"
32
33 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
34 msgid "No XML document associated with this config object"
35 msgstr "З цим об’єктом налаштування не пов’язано жодного документа XML"
36
37 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
38 #, c-format
39 msgid "Unable to create RNG parser for %s"
40 msgstr "Не вдалося створити обробник RNG для %s"
41
42 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
43 #, c-format
44 msgid "Unable to parse RNG %s"
45 msgstr "Не вдалося обробити RNG, %s"
46
47 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
48 #, c-format
49 msgid "Unable to create RNG validation context %s"
50 msgstr "Не вдалося створити контекст перевірки RNG, %s"
51
52 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
53 msgid "Unable to validate doc"
54 msgstr "Не вдалося перевірити документи"
55
56 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
57 #, c-format
58 msgid "Connection %s is already open"
59 msgstr "З’єднання %s вже відкрито"
60
61 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
62 #, c-format
63 msgid "Unable to open %s"
64 msgstr "Не вдалося відкрити %s"
65
66 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
67 msgid "Unable to get connection URI"
68 msgstr "Не вдалося отримати адресу з’єднання"
69
70 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
71 #, c-format
72 msgid "Unable to count %s"
73 msgstr "Не вдалося полічити %s"
74
75 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
76 #, c-format
77 msgid "Unable to list %s %d"
78 msgstr "Не вдалося побудувати список %s %d"
79
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
81 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
82 msgid "Connection is not open"
83 msgstr "З'єднання не відкрито"
84
85 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
86 msgid "Unable to count domains"
87 msgstr "Не вдалося полічити домени"
88
89 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
90 msgid "Unable to list domains"
91 msgstr "Не вдалося побудувати список доменів"
92
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
94 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
95 msgid "Connection is not opened"
96 msgstr "З’єднання не відкрито"
97
98 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
99 msgid "Unable to get hypervisor name"
100 msgstr "Не вдалося отримати назву гіпервізора"
101
102 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
103 msgid "Unable to get hypervisor version"
104 msgstr "Не вдалося отримати версію гіпервізора"
105
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
107 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
108 msgid "Failed to create domain"
109 msgstr "Не вдалося створити домен"
110
111 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
112 msgid "Failed to create storage pool"
113 msgstr "Не вдалося створити резервне сховище"
114
115 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
116 msgid "Unable to get node info"
117 msgstr "Не вдалося отримати дані щодо вузла"
118
119 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
120 msgid "Unable to get capabilities"
121 msgstr "Не вдалося отримати список можливостей"
122
123 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
124 msgid "Unable to restore domain"
125 msgstr "Не вдалося відновити домен"
126
127 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
128 msgid "virStreamRecv call would block"
129 msgstr "Виклик virStreamRecv заблокується"
130
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
132 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
133 #, c-format
134 msgid "Got virStreamRecv error in %s"
135 msgstr "Отримано повідомлення про помилку virStreamRecv у %s"
136
137 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
138 msgid "Unable to perform RecvAll"
139 msgstr "Не вдалося виконати RecvAll"
140
141 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
142 msgid "virStreamSend call would block"
143 msgstr "Виклик virStreamSend заблокується"
144
145 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
146 msgid "Unable to perform SendAll"
147 msgstr "Не вдалося виконати SendAll"
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Urdu (http://www.transifex.com/projects/p/libvirt-glib/language/ur/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: ur\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2014-03-24 14:43+0000\n"
11 "Last-Translator: Jared Smith <jsmith@fedoraproject.org>\n"
12 "Language-Team: Uzbek (http://www.transifex.com/projects/p/libvirt-glib/language/uz/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: uz\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Vietnamese (http://www.transifex.com/projects/p/libvirt-glib/language/vi/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: vi\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Wolof (http://www.transifex.com/projects/p/libvirt-glib/language/wo/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: wo\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Xhosa (http://www.transifex.com/projects/p/libvirt-glib/language/xh/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: xh\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/libvirt-glib/language/zh_CN/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: zh_CN\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/libvirt-glib/language/zh_HK/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: zh_HK\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/libvirt-glib/language/zh_TW/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: zh_TW\n"
17 "Plural-Forms: nplurals=1; plural=0;\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
3 #
4 # Translators:
5 msgid ""
6 msgstr ""
7 "Project-Id-Version: libvirt-glib\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2014-08-20 15:41+0100\n"
10 "PO-Revision-Date: 2013-04-08 11:29+0000\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: Zulu (http://www.transifex.com/projects/p/libvirt-glib/language/zu/)\n"
13 "MIME-Version: 1.0\n"
14 "Content-Type: text/plain; charset=UTF-8\n"
15 "Content-Transfer-Encoding: 8bit\n"
16 "Language: zu\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
19 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:141
20 msgid "No XML document to parse"
21 msgstr ""
22
23 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:149
24 msgid "Unable to parse configuration"
25 msgstr ""
26
27 #: ../libvirt-gconfig/libvirt-gconfig-helpers.c:157
28 #, c-format
29 msgid "XML data has no '%s' node"
30 msgstr ""
31
32 #: ../libvirt-gconfig/libvirt-gconfig-object.c:212
33 msgid "No XML document associated with this config object"
34 msgstr ""
35
36 #: ../libvirt-gconfig/libvirt-gconfig-object.c:221
37 #, c-format
38 msgid "Unable to create RNG parser for %s"
39 msgstr ""
40
41 #: ../libvirt-gconfig/libvirt-gconfig-object.c:231
42 #, c-format
43 msgid "Unable to parse RNG %s"
44 msgstr ""
45
46 #: ../libvirt-gconfig/libvirt-gconfig-object.c:243
47 #, c-format
48 msgid "Unable to create RNG validation context %s"
49 msgstr ""
50
51 #: ../libvirt-gconfig/libvirt-gconfig-object.c:253
52 msgid "Unable to validate doc"
53 msgstr ""
54
55 #: ../libvirt-gobject/libvirt-gobject-connection.c:434
56 #, c-format
57 msgid "Connection %s is already open"
58 msgstr ""
59
60 #: ../libvirt-gobject/libvirt-gobject-connection.c:449
61 #, c-format
62 msgid "Unable to open %s"
63 msgstr ""
64
65 #: ../libvirt-gobject/libvirt-gobject-connection.c:460
66 msgid "Unable to get connection URI"
67 msgstr ""
68
69 #: ../libvirt-gobject/libvirt-gobject-connection.c:700
70 #, c-format
71 msgid "Unable to count %s"
72 msgstr ""
73
74 #: ../libvirt-gobject/libvirt-gobject-connection.c:712
75 #, c-format
76 msgid "Unable to list %s %d"
77 msgstr ""
78
79 #: ../libvirt-gobject/libvirt-gobject-connection.c:755
80 #: ../libvirt-gobject/libvirt-gobject-connection.c:892
81 msgid "Connection is not open"
82 msgstr ""
83
84 #: ../libvirt-gobject/libvirt-gobject-connection.c:770
85 msgid "Unable to count domains"
86 msgstr ""
87
88 #: ../libvirt-gobject/libvirt-gobject-connection.c:781
89 msgid "Unable to list domains"
90 msgstr ""
91
92 #: ../libvirt-gobject/libvirt-gobject-connection.c:1155
93 #: ../libvirt-gobject/libvirt-gobject-connection.c:1194
94 msgid "Connection is not opened"
95 msgstr ""
96
97 #: ../libvirt-gobject/libvirt-gobject-connection.c:1162
98 msgid "Unable to get hypervisor name"
99 msgstr ""
100
101 #: ../libvirt-gobject/libvirt-gobject-connection.c:1200
102 msgid "Unable to get hypervisor version"
103 msgstr ""
104
105 #: ../libvirt-gobject/libvirt-gobject-connection.c:1515
106 #: ../libvirt-gobject/libvirt-gobject-connection.c:1570
107 msgid "Failed to create domain"
108 msgstr ""
109
110 #: ../libvirt-gobject/libvirt-gobject-connection.c:1622
111 msgid "Failed to create storage pool"
112 msgstr ""
113
114 #: ../libvirt-gobject/libvirt-gobject-connection.c:1665
115 msgid "Unable to get node info"
116 msgstr ""
117
118 #: ../libvirt-gobject/libvirt-gobject-connection.c:1705
119 msgid "Unable to get capabilities"
120 msgstr ""
121
122 #: ../libvirt-gobject/libvirt-gobject-connection.c:1833
123 msgid "Unable to restore domain"
124 msgstr ""
125
126 #: ../libvirt-gobject/libvirt-gobject-stream.c:339
127 msgid "virStreamRecv call would block"
128 msgstr ""
129
130 #: ../libvirt-gobject/libvirt-gobject-stream.c:342
131 #: ../libvirt-gobject/libvirt-gobject-stream.c:458
132 #, c-format
133 msgid "Got virStreamRecv error in %s"
134 msgstr ""
135
136 #: ../libvirt-gobject/libvirt-gobject-stream.c:407
137 msgid "Unable to perform RecvAll"
138 msgstr ""
139
140 #: ../libvirt-gobject/libvirt-gobject-stream.c:455
141 msgid "virStreamSend call would block"
142 msgstr ""
143
144 #: ../libvirt-gobject/libvirt-gobject-stream.c:523
145 msgid "Unable to perform SendAll"
146 msgstr ""
0 # Makefile.in generated by automake 1.13.2 from Makefile.am.
0 # Makefile.in generated by automake 1.13.4 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
8383 DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
8484 $(top_srcdir)/build-aux/depcomp
8585 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
86 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
87 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
88 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
89 $(top_srcdir)/m4/lt~obsolete.m4 \
86 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
87 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
88 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
89 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
9090 $(top_srcdir)/m4/manywarnings.m4 \
9191 $(top_srcdir)/m4/virt-compile-warnings.m4 \
9292 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
241241 GIO2_LIBS = @GIO2_LIBS@
242242 GLIB2_CFLAGS = @GLIB2_CFLAGS@
243243 GLIB2_LIBS = @GLIB2_LIBS@
244 GLIB2_REQUIRED = @GLIB2_REQUIRED@
244245 GLIB_MKENUMS = @GLIB_MKENUMS@
245246 GMSGFMT = @GMSGFMT@
246247 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
247248 GOBJECT2_LIBS = @GOBJECT2_LIBS@
248 GOBJECT_INTROSPECTION_CFLAGS = @GOBJECT_INTROSPECTION_CFLAGS@
249 GOBJECT_INTROSPECTION_LIBS = @GOBJECT_INTROSPECTION_LIBS@
250249 GREP = @GREP@
251250 GTHREAD2_CFLAGS = @GTHREAD2_CFLAGS@
252251 GTHREAD2_LIBS = @GTHREAD2_LIBS@
253252 GTKDOC_CHECK = @GTKDOC_CHECK@
253 GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
254254 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
255255 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
256256 GTKDOC_MKPDF = @GTKDOC_MKPDF@
257257 GTKDOC_REBASE = @GTKDOC_REBASE@
258 G_IR_COMPILER = @G_IR_COMPILER@
259 G_IR_SCANNER = @G_IR_SCANNER@
260258 HTML_DIR = @HTML_DIR@
261259 INSTALL = @INSTALL@
262260 INSTALL_DATA = @INSTALL_DATA@
271269 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
272270 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
273271 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
272 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
273 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
274 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
275 INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
276 INTROSPECTION_LIBS = @INTROSPECTION_LIBS@
277 INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@
278 INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
279 INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
274280 LD = @LD@
275281 LDFLAGS = @LDFLAGS@
276282 LIBOBJS = @LIBOBJS@
361367 includedir = @includedir@
362368 infodir = @infodir@
363369 install_sh = @install_sh@
370 installed_test_metadir = @installed_test_metadir@
371 installed_testdir = @installed_testdir@
364372 intltool__v_merge_options_ = @intltool__v_merge_options_@
365373 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
366374 libdir = @libdir@
0 #! /bin/sh
1 # Copyright (C) 2011-2013 Free Software Foundation, Inc.
2 #
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2, or (at your option)
6 # any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16 # As a special exception to the GNU General Public License, if you
17 # distribute this file as part of a program that contains a
18 # configuration script generated by Autoconf, you may include it under
19 # the same distribution terms that you use for the rest of that program.
20
21 # This file is maintained in Automake, please report
22 # bugs to <bug-automake@gnu.org> or send patches to
23 # <automake-patches@gnu.org>.
24
25 scriptversion=2011-12-27.17; # UTC
26
27 # Make unconditional expansion of undefined variables an error. This
28 # helps a lot in preventing typo-related bugs.
29 set -u
30
31 me=tap-driver.sh
32
33 fatal ()
34 {
35 echo "$me: fatal: $*" >&2
36 exit 1
37 }
38
39 usage_error ()
40 {
41 echo "$me: $*" >&2
42 print_usage >&2
43 exit 2
44 }
45
46 print_usage ()
47 {
48 cat <<END
49 Usage:
50 tap-driver.sh --test-name=NAME --log-file=PATH --trs-file=PATH
51 [--expect-failure={yes|no}] [--color-tests={yes|no}]
52 [--enable-hard-errors={yes|no}] [--ignore-exit]
53 [--diagnostic-string=STRING] [--merge|--no-merge]
54 [--comments|--no-comments] [--] TEST-COMMAND
55 The \`--test-name', \`--log-file' and \`--trs-file' options are mandatory.
56 END
57 }
58
59 # TODO: better error handling in option parsing (in particular, ensure
60 # TODO: $log_file, $trs_file and $test_name are defined).
61 test_name= # Used for reporting.
62 log_file= # Where to save the result and output of the test script.
63 trs_file= # Where to save the metadata of the test run.
64 expect_failure=0
65 color_tests=0
66 merge=0
67 ignore_exit=0
68 comments=0
69 diag_string='#'
70 while test $# -gt 0; do
71 case $1 in
72 --help) print_usage; exit $?;;
73 --version) echo "$me $scriptversion"; exit $?;;
74 --test-name) test_name=$2; shift;;
75 --log-file) log_file=$2; shift;;
76 --trs-file) trs_file=$2; shift;;
77 --color-tests) color_tests=$2; shift;;
78 --expect-failure) expect_failure=$2; shift;;
79 --enable-hard-errors) shift;; # No-op.
80 --merge) merge=1;;
81 --no-merge) merge=0;;
82 --ignore-exit) ignore_exit=1;;
83 --comments) comments=1;;
84 --no-comments) comments=0;;
85 --diagnostic-string) diag_string=$2; shift;;
86 --) shift; break;;
87 -*) usage_error "invalid option: '$1'";;
88 esac
89 shift
90 done
91
92 test $# -gt 0 || usage_error "missing test command"
93
94 case $expect_failure in
95 yes) expect_failure=1;;
96 *) expect_failure=0;;
97 esac
98
99 if test $color_tests = yes; then
100 init_colors='
101 color_map["red"]="" # Red.
102 color_map["grn"]="" # Green.
103 color_map["lgn"]="" # Light green.
104 color_map["blu"]="" # Blue.
105 color_map["mgn"]="" # Magenta.
106 color_map["std"]="" # No color.
107 color_for_result["ERROR"] = "mgn"
108 color_for_result["PASS"] = "grn"
109 color_for_result["XPASS"] = "red"
110 color_for_result["FAIL"] = "red"
111 color_for_result["XFAIL"] = "lgn"
112 color_for_result["SKIP"] = "blu"'
113 else
114 init_colors=''
115 fi
116
117 # :; is there to work around a bug in bash 3.2 (and earlier) which
118 # does not always set '$?' properly on redirection failure.
119 # See the Autoconf manual for more details.
120 :;{
121 (
122 # Ignore common signals (in this subshell only!), to avoid potential
123 # problems with Korn shells. Some Korn shells are known to propagate
124 # to themselves signals that have killed a child process they were
125 # waiting for; this is done at least for SIGINT (and usually only for
126 # it, in truth). Without the `trap' below, such a behaviour could
127 # cause a premature exit in the current subshell, e.g., in case the
128 # test command it runs gets terminated by a SIGINT. Thus, the awk
129 # script we are piping into would never seen the exit status it
130 # expects on its last input line (which is displayed below by the
131 # last `echo $?' statement), and would thus die reporting an internal
132 # error.
133 # For more information, see the Autoconf manual and the threads:
134 # <http://lists.gnu.org/archive/html/bug-autoconf/2011-09/msg00004.html>
135 # <http://mail.opensolaris.org/pipermail/ksh93-integration-discuss/2009-February/004121.html>
136 trap : 1 3 2 13 15
137 if test $merge -gt 0; then
138 exec 2>&1
139 else
140 exec 2>&3
141 fi
142 "$@"
143 echo $?
144 ) | LC_ALL=C ${AM_TAP_AWK-awk} \
145 -v me="$me" \
146 -v test_script_name="$test_name" \
147 -v log_file="$log_file" \
148 -v trs_file="$trs_file" \
149 -v expect_failure="$expect_failure" \
150 -v merge="$merge" \
151 -v ignore_exit="$ignore_exit" \
152 -v comments="$comments" \
153 -v diag_string="$diag_string" \
154 '
155 # FIXME: the usages of "cat >&3" below could be optimized when using
156 # FIXME: GNU awk, and/on systems that supports /dev/fd/.
157
158 # Implementation note: in what follows, `result_obj` will be an
159 # associative array that (partly) simulates a TAP result object
160 # from the `TAP::Parser` perl module.
161
162 ## ----------- ##
163 ## FUNCTIONS ##
164 ## ----------- ##
165
166 function fatal(msg)
167 {
168 print me ": " msg | "cat >&2"
169 exit 1
170 }
171
172 function abort(where)
173 {
174 fatal("internal error " where)
175 }
176
177 # Convert a boolean to a "yes"/"no" string.
178 function yn(bool)
179 {
180 return bool ? "yes" : "no";
181 }
182
183 function add_test_result(result)
184 {
185 if (!test_results_index)
186 test_results_index = 0
187 test_results_list[test_results_index] = result
188 test_results_index += 1
189 test_results_seen[result] = 1;
190 }
191
192 # Whether the test script should be re-run by "make recheck".
193 function must_recheck()
194 {
195 for (k in test_results_seen)
196 if (k != "XFAIL" && k != "PASS" && k != "SKIP")
197 return 1
198 return 0
199 }
200
201 # Whether the content of the log file associated to this test should
202 # be copied into the "global" test-suite.log.
203 function copy_in_global_log()
204 {
205 for (k in test_results_seen)
206 if (k != "PASS")
207 return 1
208 return 0
209 }
210
211 # FIXME: this can certainly be improved ...
212 function get_global_test_result()
213 {
214 if ("ERROR" in test_results_seen)
215 return "ERROR"
216 if ("FAIL" in test_results_seen || "XPASS" in test_results_seen)
217 return "FAIL"
218 all_skipped = 1
219 for (k in test_results_seen)
220 if (k != "SKIP")
221 all_skipped = 0
222 if (all_skipped)
223 return "SKIP"
224 return "PASS";
225 }
226
227 function stringify_result_obj(result_obj)
228 {
229 if (result_obj["is_unplanned"] || result_obj["number"] != testno)
230 return "ERROR"
231
232 if (plan_seen == LATE_PLAN)
233 return "ERROR"
234
235 if (result_obj["directive"] == "TODO")
236 return result_obj["is_ok"] ? "XPASS" : "XFAIL"
237
238 if (result_obj["directive"] == "SKIP")
239 return result_obj["is_ok"] ? "SKIP" : COOKED_FAIL;
240
241 if (length(result_obj["directive"]))
242 abort("in function stringify_result_obj()")
243
244 return result_obj["is_ok"] ? COOKED_PASS : COOKED_FAIL
245 }
246
247 function decorate_result(result)
248 {
249 color_name = color_for_result[result]
250 if (color_name)
251 return color_map[color_name] "" result "" color_map["std"]
252 # If we are not using colorized output, or if we do not know how
253 # to colorize the given result, we should return it unchanged.
254 return result
255 }
256
257 function report(result, details)
258 {
259 if (result ~ /^(X?(PASS|FAIL)|SKIP|ERROR)/)
260 {
261 msg = ": " test_script_name
262 add_test_result(result)
263 }
264 else if (result == "#")
265 {
266 msg = " " test_script_name ":"
267 }
268 else
269 {
270 abort("in function report()")
271 }
272 if (length(details))
273 msg = msg " " details
274 # Output on console might be colorized.
275 print decorate_result(result) msg
276 # Log the result in the log file too, to help debugging (this is
277 # especially true when said result is a TAP error or "Bail out!").
278 print result msg | "cat >&3";
279 }
280
281 function testsuite_error(error_message)
282 {
283 report("ERROR", "- " error_message)
284 }
285
286 function handle_tap_result()
287 {
288 details = result_obj["number"];
289 if (length(result_obj["description"]))
290 details = details " " result_obj["description"]
291
292 if (plan_seen == LATE_PLAN)
293 {
294 details = details " # AFTER LATE PLAN";
295 }
296 else if (result_obj["is_unplanned"])
297 {
298 details = details " # UNPLANNED";
299 }
300 else if (result_obj["number"] != testno)
301 {
302 details = sprintf("%s # OUT-OF-ORDER (expecting %d)",
303 details, testno);
304 }
305 else if (result_obj["directive"])
306 {
307 details = details " # " result_obj["directive"];
308 if (length(result_obj["explanation"]))
309 details = details " " result_obj["explanation"]
310 }
311
312 report(stringify_result_obj(result_obj), details)
313 }
314
315 # `skip_reason` should be empty whenever planned > 0.
316 function handle_tap_plan(planned, skip_reason)
317 {
318 planned += 0 # Avoid getting confused if, say, `planned` is "00"
319 if (length(skip_reason) && planned > 0)
320 abort("in function handle_tap_plan()")
321 if (plan_seen)
322 {
323 # Error, only one plan per stream is acceptable.
324 testsuite_error("multiple test plans")
325 return;
326 }
327 planned_tests = planned
328 # The TAP plan can come before or after *all* the TAP results; we speak
329 # respectively of an "early" or a "late" plan. If we see the plan line
330 # after at least one TAP result has been seen, assume we have a late
331 # plan; in this case, any further test result seen after the plan will
332 # be flagged as an error.
333 plan_seen = (testno >= 1 ? LATE_PLAN : EARLY_PLAN)
334 # If testno > 0, we have an error ("too many tests run") that will be
335 # automatically dealt with later, so do not worry about it here. If
336 # $plan_seen is true, we have an error due to a repeated plan, and that
337 # has already been dealt with above. Otherwise, we have a valid "plan
338 # with SKIP" specification, and should report it as a particular kind
339 # of SKIP result.
340 if (planned == 0 && testno == 0)
341 {
342 if (length(skip_reason))
343 skip_reason = "- " skip_reason;
344 report("SKIP", skip_reason);
345 }
346 }
347
348 function extract_tap_comment(line)
349 {
350 if (index(line, diag_string) == 1)
351 {
352 # Strip leading `diag_string` from `line`.
353 line = substr(line, length(diag_string) + 1)
354 # And strip any leading and trailing whitespace left.
355 sub("^[ \t]*", "", line)
356 sub("[ \t]*$", "", line)
357 # Return what is left (if any).
358 return line;
359 }
360 return "";
361 }
362
363 # When this function is called, we know that line is a TAP result line,
364 # so that it matches the (perl) RE "^(not )?ok\b".
365 function setup_result_obj(line)
366 {
367 # Get the result, and remove it from the line.
368 result_obj["is_ok"] = (substr(line, 1, 2) == "ok" ? 1 : 0)
369 sub("^(not )?ok[ \t]*", "", line)
370
371 # If the result has an explicit number, get it and strip it; otherwise,
372 # automatically assing the next progresive number to it.
373 if (line ~ /^[0-9]+$/ || line ~ /^[0-9]+[^a-zA-Z0-9_]/)
374 {
375 match(line, "^[0-9]+")
376 # The final `+ 0` is to normalize numbers with leading zeros.
377 result_obj["number"] = substr(line, 1, RLENGTH) + 0
378 line = substr(line, RLENGTH + 1)
379 }
380 else
381 {
382 result_obj["number"] = testno
383 }
384
385 if (plan_seen == LATE_PLAN)
386 # No further test results are acceptable after a "late" TAP plan
387 # has been seen.
388 result_obj["is_unplanned"] = 1
389 else if (plan_seen && testno > planned_tests)
390 result_obj["is_unplanned"] = 1
391 else
392 result_obj["is_unplanned"] = 0
393
394 # Strip trailing and leading whitespace.
395 sub("^[ \t]*", "", line)
396 sub("[ \t]*$", "", line)
397
398 # This will have to be corrected if we have a "TODO"/"SKIP" directive.
399 result_obj["description"] = line
400 result_obj["directive"] = ""
401 result_obj["explanation"] = ""
402
403 if (index(line, "#") == 0)
404 return # No possible directive, nothing more to do.
405
406 # Directives are case-insensitive.
407 rx = "[ \t]*#[ \t]*([tT][oO][dD][oO]|[sS][kK][iI][pP])[ \t]*"
408
409 # See whether we have the directive, and if yes, where.
410 pos = match(line, rx "$")
411 if (!pos)
412 pos = match(line, rx "[^a-zA-Z0-9_]")
413
414 # If there was no TAP directive, we have nothing more to do.
415 if (!pos)
416 return
417
418 # Let`s now see if the TAP directive has been escaped. For example:
419 # escaped: ok \# SKIP
420 # not escaped: ok \\# SKIP
421 # escaped: ok \\\\\# SKIP
422 # not escaped: ok \ # SKIP
423 if (substr(line, pos, 1) == "#")
424 {
425 bslash_count = 0
426 for (i = pos; i > 1 && substr(line, i - 1, 1) == "\\"; i--)
427 bslash_count += 1
428 if (bslash_count % 2)
429 return # Directive was escaped.
430 }
431
432 # Strip the directive and its explanation (if any) from the test
433 # description.
434 result_obj["description"] = substr(line, 1, pos - 1)
435 # Now remove the test description from the line, that has been dealt
436 # with already.
437 line = substr(line, pos)
438 # Strip the directive, and save its value (normalized to upper case).
439 sub("^[ \t]*#[ \t]*", "", line)
440 result_obj["directive"] = toupper(substr(line, 1, 4))
441 line = substr(line, 5)
442 # Now get the explanation for the directive (if any), with leading
443 # and trailing whitespace removed.
444 sub("^[ \t]*", "", line)
445 sub("[ \t]*$", "", line)
446 result_obj["explanation"] = line
447 }
448
449 function get_test_exit_message(status)
450 {
451 if (status == 0)
452 return ""
453 if (status !~ /^[1-9][0-9]*$/)
454 abort("getting exit status")
455 if (status < 127)
456 exit_details = ""
457 else if (status == 127)
458 exit_details = " (command not found?)"
459 else if (status >= 128 && status <= 255)
460 exit_details = sprintf(" (terminated by signal %d?)", status - 128)
461 else if (status > 256 && status <= 384)
462 # We used to report an "abnormal termination" here, but some Korn
463 # shells, when a child process die due to signal number n, can leave
464 # in $? an exit status of 256+n instead of the more standard 128+n.
465 # Apparently, both behaviours are allowed by POSIX (2008), so be
466 # prepared to handle them both. See also Austing Group report ID
467 # 0000051 <http://www.austingroupbugs.net/view.php?id=51>
468 exit_details = sprintf(" (terminated by signal %d?)", status - 256)
469 else
470 # Never seen in practice.
471 exit_details = " (abnormal termination)"
472 return sprintf("exited with status %d%s", status, exit_details)
473 }
474
475 function write_test_results()
476 {
477 print ":global-test-result: " get_global_test_result() > trs_file
478 print ":recheck: " yn(must_recheck()) > trs_file
479 print ":copy-in-global-log: " yn(copy_in_global_log()) > trs_file
480 for (i = 0; i < test_results_index; i += 1)
481 print ":test-result: " test_results_list[i] > trs_file
482 close(trs_file);
483 }
484
485 BEGIN {
486
487 ## ------- ##
488 ## SETUP ##
489 ## ------- ##
490
491 '"$init_colors"'
492
493 # Properly initialized once the TAP plan is seen.
494 planned_tests = 0
495
496 COOKED_PASS = expect_failure ? "XPASS": "PASS";
497 COOKED_FAIL = expect_failure ? "XFAIL": "FAIL";
498
499 # Enumeration-like constants to remember which kind of plan (if any)
500 # has been seen. It is important that NO_PLAN evaluates "false" as
501 # a boolean.
502 NO_PLAN = 0
503 EARLY_PLAN = 1
504 LATE_PLAN = 2
505
506 testno = 0 # Number of test results seen so far.
507 bailed_out = 0 # Whether a "Bail out!" directive has been seen.
508
509 # Whether the TAP plan has been seen or not, and if yes, which kind
510 # it is ("early" is seen before any test result, "late" otherwise).
511 plan_seen = NO_PLAN
512
513 ## --------- ##
514 ## PARSING ##
515 ## --------- ##
516
517 is_first_read = 1
518
519 while (1)
520 {
521 # Involutions required so that we are able to read the exit status
522 # from the last input line.
523 st = getline
524 if (st < 0) # I/O error.
525 fatal("I/O error while reading from input stream")
526 else if (st == 0) # End-of-input
527 {
528 if (is_first_read)
529 abort("in input loop: only one input line")
530 break
531 }
532 if (is_first_read)
533 {
534 is_first_read = 0
535 nextline = $0
536 continue
537 }
538 else
539 {
540 curline = nextline
541 nextline = $0
542 $0 = curline
543 }
544 # Copy any input line verbatim into the log file.
545 print | "cat >&3"
546 # Parsing of TAP input should stop after a "Bail out!" directive.
547 if (bailed_out)
548 continue
549
550 # TAP test result.
551 if ($0 ~ /^(not )?ok$/ || $0 ~ /^(not )?ok[^a-zA-Z0-9_]/)
552 {
553 testno += 1
554 setup_result_obj($0)
555 handle_tap_result()
556 }
557 # TAP plan (normal or "SKIP" without explanation).
558 else if ($0 ~ /^1\.\.[0-9]+[ \t]*$/)
559 {
560 # The next two lines will put the number of planned tests in $0.
561 sub("^1\\.\\.", "")
562 sub("[^0-9]*$", "")
563 handle_tap_plan($0, "")
564 continue
565 }
566 # TAP "SKIP" plan, with an explanation.
567 else if ($0 ~ /^1\.\.0+[ \t]*#/)
568 {
569 # The next lines will put the skip explanation in $0, stripping
570 # any leading and trailing whitespace. This is a little more
571 # tricky in truth, since we want to also strip a potential leading
572 # "SKIP" string from the message.
573 sub("^[^#]*#[ \t]*(SKIP[: \t][ \t]*)?", "")
574 sub("[ \t]*$", "");
575 handle_tap_plan(0, $0)
576 }
577 # "Bail out!" magic.
578 # Older versions of prove and TAP::Harness (e.g., 3.17) did not
579 # recognize a "Bail out!" directive when preceded by leading
580 # whitespace, but more modern versions (e.g., 3.23) do. So we
581 # emulate the latter, "more modern" behaviour.
582 else if ($0 ~ /^[ \t]*Bail out!/)
583 {
584 bailed_out = 1
585 # Get the bailout message (if any), with leading and trailing
586 # whitespace stripped. The message remains stored in `$0`.
587 sub("^[ \t]*Bail out![ \t]*", "");
588 sub("[ \t]*$", "");
589 # Format the error message for the
590 bailout_message = "Bail out!"
591 if (length($0))
592 bailout_message = bailout_message " " $0
593 testsuite_error(bailout_message)
594 }
595 # Maybe we have too look for dianogtic comments too.
596 else if (comments != 0)
597 {
598 comment = extract_tap_comment($0);
599 if (length(comment))
600 report("#", comment);
601 }
602 }
603
604 ## -------- ##
605 ## FINISH ##
606 ## -------- ##
607
608 # A "Bail out!" directive should cause us to ignore any following TAP
609 # error, as well as a non-zero exit status from the TAP producer.
610 if (!bailed_out)
611 {
612 if (!plan_seen)
613 {
614 testsuite_error("missing test plan")
615 }
616 else if (planned_tests != testno)
617 {
618 bad_amount = testno > planned_tests ? "many" : "few"
619 testsuite_error(sprintf("too %s tests run (expected %d, got %d)",
620 bad_amount, planned_tests, testno))
621 }
622 if (!ignore_exit)
623 {
624 # Fetch exit status from the last line.
625 exit_message = get_test_exit_message(nextline)
626 if (exit_message)
627 testsuite_error(exit_message)
628 }
629 }
630
631 write_test_results()
632
633 exit 0
634
635 } # End of "BEGIN" block.
636 '
637
638 # TODO: document that we consume the file descriptor 3 :-(
639 } 3>"$log_file"
640
641 test $? -eq 0 || fatal "I/O or internal error"
642
643 # Local Variables:
644 # mode: shell-script
645 # sh-indentation: 2
646 # eval: (add-hook 'write-file-hooks 'time-stamp)
647 # time-stamp-start: "scriptversion="
648 # time-stamp-format: "%:y-%02m-%02d.%02H"
649 # time-stamp-time-zone: "UTC"
650 # time-stamp-end: "; # UTC"
651 # End:
0 #! /bin/sh
1
2 # run a GTest in tap mode. The test binary is passed as $1
3
4 $1 -k --tap
0 if ENABLE_TESTS
1
2 include $(top_srcdir)/build-aux/glib-tap.mk
3
4 AM_CFLAGS = \
5 $(COVERAGE_CFLAGS) \
6 -I$(top_srcdir) \
7 $(GOBJECT2_CFLAGS) \
8 $(LIBVIRT_CFLAGS) \
9 $(LIBXML2_CFLAGS) \
10 $(WARN_CFLAGS)
11
12 LDADD = \
13 $(top_builddir)/libvirt-gconfig/libvirt-gconfig-1.0.la \
14 $(top_builddir)/libvirt-glib/libvirt-glib-1.0.la
15
16 test_programs = test-gconfig test-events
17
18 EXTRA_DIST += \
19 xml/gconfig-domain.xml \
20 xml/gconfig-domain-clock.xml \
21 xml/gconfig-domain-cpu.xml \
22 xml/gconfig-domain-device-channel.xml \
23 xml/gconfig-domain-device-console.xml \
24 xml/gconfig-domain-device-disk.xml \
25 xml/gconfig-domain-device-graphics.xml \
26 xml/gconfig-domain-device-input.xml \
27 xml/gconfig-domain-device-network.xml \
28 xml/gconfig-domain-device-sound.xml \
29 xml/gconfig-domain-device-usbredir.xml \
30 xml/gconfig-domain-device-video.xml \
31 xml/gconfig-domain-os.xml \
32 $(NULL)
33 endif
0 # Makefile.in generated by automake 1.13.4 from Makefile.am.
1 # @configure_input@
2
3 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
4
5 # This Makefile.in is free software; the Free Software Foundation
6 # gives unlimited permission to copy and/or distribute it,
7 # with or without modifications, as long as this notice is preserved.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
11 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12 # PARTICULAR PURPOSE.
13
14 @SET_MAKE@
15
16 # GLIB - Library of useful C routines
17
18
19
20
21 VPATH = @srcdir@
22 am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
23 am__make_running_with_option = \
24 case $${target_option-} in \
25 ?) ;; \
26 *) echo "am__make_running_with_option: internal error: invalid" \
27 "target option '$${target_option-}' specified" >&2; \
28 exit 1;; \
29 esac; \
30 has_opt=no; \
31 sane_makeflags=$$MAKEFLAGS; \
32 if $(am__is_gnu_make); then \
33 sane_makeflags=$$MFLAGS; \
34 else \
35 case $$MAKEFLAGS in \
36 *\\[\ \ ]*) \
37 bs=\\; \
38 sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
39 | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
40 esac; \
41 fi; \
42 skip_next=no; \
43 strip_trailopt () \
44 { \
45 flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
46 }; \
47 for flg in $$sane_makeflags; do \
48 test $$skip_next = yes && { skip_next=no; continue; }; \
49 case $$flg in \
50 *=*|--*) continue;; \
51 -*I) strip_trailopt 'I'; skip_next=yes;; \
52 -*I?*) strip_trailopt 'I';; \
53 -*O) strip_trailopt 'O'; skip_next=yes;; \
54 -*O?*) strip_trailopt 'O';; \
55 -*l) strip_trailopt 'l'; skip_next=yes;; \
56 -*l?*) strip_trailopt 'l';; \
57 -[dEDm]) skip_next=yes;; \
58 -[JT]) skip_next=yes;; \
59 esac; \
60 case $$flg in \
61 *$$target_option*) has_opt=yes; break;; \
62 esac; \
63 done; \
64 test $$has_opt = yes
65 am__make_dryrun = (target_option=n; $(am__make_running_with_option))
66 am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
67 pkgdatadir = $(datadir)/@PACKAGE@
68 pkgincludedir = $(includedir)/@PACKAGE@
69 pkglibdir = $(libdir)/@PACKAGE@
70 pkglibexecdir = $(libexecdir)/@PACKAGE@
71 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
72 install_sh_DATA = $(install_sh) -c -m 644
73 install_sh_PROGRAM = $(install_sh) -c
74 install_sh_SCRIPT = $(install_sh) -c
75 INSTALL_HEADER = $(INSTALL_DATA)
76 transform = $(program_transform_name)
77 NORMAL_INSTALL = :
78 PRE_INSTALL = :
79 POST_INSTALL = :
80 NORMAL_UNINSTALL = :
81 PRE_UNINSTALL = :
82 POST_UNINSTALL = :
83 build_triplet = @build@
84 host_triplet = @host@
85 DIST_COMMON = $(top_srcdir)/build-aux/glib-tap.mk \
86 $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
87 $(top_srcdir)/build-aux/depcomp \
88 $(top_srcdir)/build-aux/test-driver
89 @ENABLE_TESTS_TRUE@TESTS = $(am__EXEEXT_1)
90 @ENABLE_TESTS_TRUE@installed_test_PROGRAMS = $(am__EXEEXT_4)
91 @ENABLE_TESTS_TRUE@noinst_PROGRAMS = $(am__EXEEXT_5)
92 @ENABLE_TESTS_TRUE@check_PROGRAMS = $(am__EXEEXT_3)
93 @ENABLE_ALWAYS_BUILD_TESTS_TRUE@@ENABLE_TESTS_TRUE@am__append_1 = $(all_test_ltlibs)
94 @ENABLE_ALWAYS_BUILD_TESTS_TRUE@@ENABLE_TESTS_TRUE@am__append_2 = $(all_test_programs)
95 @ENABLE_ALWAYS_BUILD_TESTS_TRUE@@ENABLE_TESTS_TRUE@am__append_3 = $(all_test_scripts)
96 @ENABLE_ALWAYS_BUILD_TESTS_TRUE@@ENABLE_TESTS_TRUE@am__append_4 = $(all_test_data)
97 @ENABLE_ALWAYS_BUILD_TESTS_FALSE@@ENABLE_TESTS_TRUE@am__append_5 = $(all_test_ltlibs)
98 @ENABLE_ALWAYS_BUILD_TESTS_FALSE@@ENABLE_TESTS_TRUE@am__append_6 = $(all_test_programs)
99 @ENABLE_ALWAYS_BUILD_TESTS_FALSE@@ENABLE_TESTS_TRUE@am__append_7 = $(all_test_scripts)
100 @ENABLE_ALWAYS_BUILD_TESTS_FALSE@@ENABLE_TESTS_TRUE@am__append_8 = $(all_test_data)
101 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@am__append_9 = $(test_programs) $(installed_test_programs) \
102 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ $(test_extra_programs) $(installed_test_extra_programs)
103
104 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@am__append_10 = $(test_scripts) \
105 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ $(installed_test_scripts) \
106 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ $(test_extra_scripts) \
107 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ $(test_installed_extra_scripts) \
108 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ $(dist_test_scripts) \
109 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ $(dist_test_extra_scripts) \
110 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ $(dist_installed_test_scripts) \
111 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ $(dist_installed_test_extra_scripts)
112 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@am__append_11 = \
113 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ $(test_data) \
114 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ $(installed_test_data) \
115 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ $(dist_test_data) \
116 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ $(dist_installed_test_data)
117 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@am__append_12 = $(test_ltlibraries) $(installed_test_ltlibraries)
118 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@am__append_13 = $(installed_test_meta_DATA)
119 subdir = tests
120 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
121 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
122 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
123 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
124 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
125 $(top_srcdir)/m4/manywarnings.m4 \
126 $(top_srcdir)/m4/virt-compile-warnings.m4 \
127 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
128 $(top_srcdir)/configure.ac
129 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
130 $(ACLOCAL_M4)
131 mkinstalldirs = $(install_sh) -d
132 CONFIG_HEADER = $(top_builddir)/config.h
133 CONFIG_CLEAN_FILES =
134 CONFIG_CLEAN_VPATH_FILES =
135 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
136 am__vpath_adj = case $$p in \
137 $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
138 *) f=$$p;; \
139 esac;
140 am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
141 am__install_max = 40
142 am__nobase_strip_setup = \
143 srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
144 am__nobase_strip = \
145 for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
146 am__nobase_list = $(am__nobase_strip_setup); \
147 for p in $$list; do echo "$$p $$p"; done | \
148 sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
149 $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
150 if (++n[$$2] == $(am__install_max)) \
151 { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
152 END { for (dir in files) print dir, files[dir] }'
153 am__base_list = \
154 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
155 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
156 am__uninstall_files_from_dir = { \
157 test -z "$$files" \
158 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
159 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
160 $(am__cd) "$$dir" && rm -f $$files; }; \
161 }
162 am__installdirs = "$(DESTDIR)$(installed_testdir)" \
163 "$(DESTDIR)$(installed_testdir)" \
164 "$(DESTDIR)$(installed_testdir)" \
165 "$(DESTDIR)$(installed_test_metadir)" \
166 "$(DESTDIR)$(installed_testdir)"
167 LTLIBRARIES = $(installed_test_LTLIBRARIES) $(noinst_LTLIBRARIES)
168 @ENABLE_TESTS_TRUE@am__EXEEXT_1 = test-gconfig$(EXEEXT) \
169 @ENABLE_TESTS_TRUE@ test-events$(EXEEXT)
170 @ENABLE_TESTS_TRUE@am__EXEEXT_2 = $(am__EXEEXT_1)
171 @ENABLE_ALWAYS_BUILD_TESTS_FALSE@@ENABLE_TESTS_TRUE@am__EXEEXT_3 = $(am__EXEEXT_2)
172 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@am__EXEEXT_4 = $(am__EXEEXT_1)
173 @ENABLE_ALWAYS_BUILD_TESTS_TRUE@@ENABLE_TESTS_TRUE@am__EXEEXT_5 = $(am__EXEEXT_2)
174 PROGRAMS = $(installed_test_PROGRAMS) $(noinst_PROGRAMS)
175 test_events_SOURCES = test-events.c
176 test_events_OBJECTS = test-events.$(OBJEXT)
177 test_events_LDADD = $(LDADD)
178 @ENABLE_TESTS_TRUE@test_events_DEPENDENCIES = $(top_builddir)/libvirt-gconfig/libvirt-gconfig-1.0.la \
179 @ENABLE_TESTS_TRUE@ $(top_builddir)/libvirt-glib/libvirt-glib-1.0.la
180 AM_V_lt = $(am__v_lt_@AM_V@)
181 am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
182 am__v_lt_0 = --silent
183 am__v_lt_1 =
184 test_gconfig_SOURCES = test-gconfig.c
185 test_gconfig_OBJECTS = test-gconfig.$(OBJEXT)
186 test_gconfig_LDADD = $(LDADD)
187 @ENABLE_TESTS_TRUE@test_gconfig_DEPENDENCIES = $(top_builddir)/libvirt-gconfig/libvirt-gconfig-1.0.la \
188 @ENABLE_TESTS_TRUE@ $(top_builddir)/libvirt-glib/libvirt-glib-1.0.la
189 SCRIPTS = $(installed_test_SCRIPTS) $(noinst_SCRIPTS)
190 AM_V_P = $(am__v_P_@AM_V@)
191 am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
192 am__v_P_0 = false
193 am__v_P_1 = :
194 AM_V_GEN = $(am__v_GEN_@AM_V@)
195 am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
196 am__v_GEN_0 = @echo " GEN " $@;
197 am__v_GEN_1 =
198 AM_V_at = $(am__v_at_@AM_V@)
199 am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
200 am__v_at_0 = @
201 am__v_at_1 =
202 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
203 depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
204 am__depfiles_maybe = depfiles
205 am__mv = mv -f
206 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
207 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
208 LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
209 $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
210 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
211 $(AM_CFLAGS) $(CFLAGS)
212 AM_V_CC = $(am__v_CC_@AM_V@)
213 am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
214 am__v_CC_0 = @echo " CC " $@;
215 am__v_CC_1 =
216 CCLD = $(CC)
217 LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
218 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
219 $(AM_LDFLAGS) $(LDFLAGS) -o $@
220 AM_V_CCLD = $(am__v_CCLD_@AM_V@)
221 am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
222 am__v_CCLD_0 = @echo " CCLD " $@;
223 am__v_CCLD_1 =
224 SOURCES = test-events.c test-gconfig.c
225 DIST_SOURCES = test-events.c test-gconfig.c
226 am__can_run_installinfo = \
227 case $$AM_UPDATE_INFO_DIR in \
228 n|no|NO) false;; \
229 *) (install-info --version) >/dev/null 2>&1;; \
230 esac
231 DATA = $(installed_test_meta_DATA) $(nobase_installed_test_DATA) \
232 $(noinst_DATA)
233 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
234 # Read a list of newline-separated strings from the standard input,
235 # and print each of them once, without duplicates. Input order is
236 # *not* preserved.
237 am__uniquify_input = $(AWK) '\
238 BEGIN { nonempty = 0; } \
239 { items[$$0] = 1; nonempty = 1; } \
240 END { if (nonempty) { for (i in items) print i; }; } \
241 '
242 # Make sure the list of sources is unique. This is necessary because,
243 # e.g., the same source file might be shared among _SOURCES variables
244 # for different programs/libraries.
245 am__define_uniq_tagged_files = \
246 list='$(am__tagged_files)'; \
247 unique=`for i in $$list; do \
248 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
249 done | $(am__uniquify_input)`
250 ETAGS = etags
251 CTAGS = ctags
252 am__tty_colors_dummy = \
253 mgn= red= grn= lgn= blu= brg= std=; \
254 am__color_tests=no
255 am__tty_colors = { \
256 $(am__tty_colors_dummy); \
257 if test "X$(AM_COLOR_TESTS)" = Xno; then \
258 am__color_tests=no; \
259 elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
260 am__color_tests=yes; \
261 elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
262 am__color_tests=yes; \
263 fi; \
264 if test $$am__color_tests = yes; then \
265 red=''; \
266 grn=''; \
267 lgn=''; \
268 blu=''; \
269 mgn=''; \
270 brg=''; \
271 std=''; \
272 fi; \
273 }
274 am__recheck_rx = ^[ ]*:recheck:[ ]*
275 am__global_test_result_rx = ^[ ]*:global-test-result:[ ]*
276 am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]*
277 # A command that, given a newline-separated list of test names on the
278 # standard input, print the name of the tests that are to be re-run
279 # upon "make recheck".
280 am__list_recheck_tests = $(AWK) '{ \
281 recheck = 1; \
282 while ((rc = (getline line < ($$0 ".trs"))) != 0) \
283 { \
284 if (rc < 0) \
285 { \
286 if ((getline line2 < ($$0 ".log")) < 0) \
287 recheck = 0; \
288 break; \
289 } \
290 else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \
291 { \
292 recheck = 0; \
293 break; \
294 } \
295 else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \
296 { \
297 break; \
298 } \
299 }; \
300 if (recheck) \
301 print $$0; \
302 close ($$0 ".trs"); \
303 close ($$0 ".log"); \
304 }'
305 # A command that, given a newline-separated list of test names on the
306 # standard input, create the global log from their .trs and .log files.
307 am__create_global_log = $(AWK) ' \
308 function fatal(msg) \
309 { \
310 print "fatal: making $@: " msg | "cat >&2"; \
311 exit 1; \
312 } \
313 function rst_section(header) \
314 { \
315 print header; \
316 len = length(header); \
317 for (i = 1; i <= len; i = i + 1) \
318 printf "="; \
319 printf "\n\n"; \
320 } \
321 { \
322 copy_in_global_log = 1; \
323 global_test_result = "RUN"; \
324 while ((rc = (getline line < ($$0 ".trs"))) != 0) \
325 { \
326 if (rc < 0) \
327 fatal("failed to read from " $$0 ".trs"); \
328 if (line ~ /$(am__global_test_result_rx)/) \
329 { \
330 sub("$(am__global_test_result_rx)", "", line); \
331 sub("[ ]*$$", "", line); \
332 global_test_result = line; \
333 } \
334 else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \
335 copy_in_global_log = 0; \
336 }; \
337 if (copy_in_global_log) \
338 { \
339 rst_section(global_test_result ": " $$0); \
340 while ((rc = (getline line < ($$0 ".log"))) != 0) \
341 { \
342 if (rc < 0) \
343 fatal("failed to read from " $$0 ".log"); \
344 print line; \
345 }; \
346 printf "\n"; \
347 }; \
348 close ($$0 ".trs"); \
349 close ($$0 ".log"); \
350 }'
351 # Restructured Text title.
352 am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; }
353 # Solaris 10 'make', and several other traditional 'make' implementations,
354 # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it
355 # by disabling -e (using the XSI extension "set +e") if it's set.
356 am__sh_e_setup = case $$- in *e*) set +e;; esac
357 # Default flags passed to test drivers.
358 am__common_driver_flags = \
359 --color-tests "$$am__color_tests" \
360 --enable-hard-errors "$$am__enable_hard_errors" \
361 --expect-failure "$$am__expect_failure"
362 # To be inserted before the command running the test. Creates the
363 # directory for the log if needed. Stores in $dir the directory
364 # containing $f, in $tst the test, in $log the log. Executes the
365 # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and
366 # passes TESTS_ENVIRONMENT. Set up options for the wrapper that
367 # will run the test scripts (or their associated LOG_COMPILER, if
368 # thy have one).
369 am__check_pre = \
370 $(am__sh_e_setup); \
371 $(am__vpath_adj_setup) $(am__vpath_adj) \
372 $(am__tty_colors); \
373 srcdir=$(srcdir); export srcdir; \
374 case "$@" in \
375 */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \
376 *) am__odir=.;; \
377 esac; \
378 test "x$$am__odir" = x"." || test -d "$$am__odir" \
379 || $(MKDIR_P) "$$am__odir" || exit $$?; \
380 if test -f "./$$f"; then dir=./; \
381 elif test -f "$$f"; then dir=; \
382 else dir="$(srcdir)/"; fi; \
383 tst=$$dir$$f; log='$@'; \
384 if test -n '$(DISABLE_HARD_ERRORS)'; then \
385 am__enable_hard_errors=no; \
386 else \
387 am__enable_hard_errors=yes; \
388 fi; \
389 case " $(XFAIL_TESTS) " in \
390 *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \
391 am__expect_failure=yes;; \
392 *) \
393 am__expect_failure=no;; \
394 esac; \
395 $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT)
396 # A shell command to get the names of the tests scripts with any registered
397 # extension removed (i.e., equivalently, the names of the test logs, with
398 # the '.log' extension removed). The result is saved in the shell variable
399 # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly,
400 # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)",
401 # since that might cause problem with VPATH rewrites for suffix-less tests.
402 # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'.
403 am__set_TESTS_bases = \
404 bases='$(TEST_LOGS)'; \
405 bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \
406 bases=`echo $$bases`
407 RECHECK_LOGS = $(TEST_LOGS)
408 AM_RECURSIVE_TARGETS = check recheck
409 TEST_SUITE_LOG = test-suite.log
410 TEST_EXTENSIONS = @EXEEXT@ .test
411 LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)
412 am__set_b = \
413 case '$@' in \
414 */*) \
415 case '$*' in \
416 */*) b='$*';; \
417 *) b=`echo '$@' | sed 's/\.log$$//'`; \
418 esac;; \
419 *) \
420 b='$*';; \
421 esac
422 am__test_logs1 = $(TESTS:=.log)
423 am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log)
424 TEST_LOGS = $(am__test_logs2:.test.log=.log)
425 TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver
426 TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
427 $(TEST_LOG_FLAGS)
428 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
429 ACLOCAL = @ACLOCAL@
430 ALL_LINGUAS = @ALL_LINGUAS@
431 AMTAR = @AMTAR@
432 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
433 AR = @AR@
434 AS = @AS@
435 AUTOCONF = @AUTOCONF@
436 AUTOHEADER = @AUTOHEADER@
437 AUTOMAKE = @AUTOMAKE@
438 AWK = @AWK@
439 CC = @CC@
440 CCDEPMODE = @CCDEPMODE@
441 CFLAGS = @CFLAGS@
442 COVERAGE_CFLAGS = @COVERAGE_CFLAGS@
443 COVERAGE_LDFLAGS = @COVERAGE_LDFLAGS@
444 COV_FLAGS = @COV_FLAGS@
445 CPP = @CPP@
446 CPPFLAGS = @CPPFLAGS@
447 CYGPATH_W = @CYGPATH_W@
448 CYGWIN_EXTRA_LDFLAGS = @CYGWIN_EXTRA_LDFLAGS@
449 CYGWIN_EXTRA_LIBADD = @CYGWIN_EXTRA_LIBADD@
450 CYGWIN_EXTRA_PYTHON_LIBADD = @CYGWIN_EXTRA_PYTHON_LIBADD@
451 DATADIRNAME = @DATADIRNAME@
452 DEFS = @DEFS@
453 DEPDIR = @DEPDIR@
454 DLLTOOL = @DLLTOOL@
455 DSYMUTIL = @DSYMUTIL@
456 DUMPBIN = @DUMPBIN@
457 ECHO_C = @ECHO_C@
458 ECHO_N = @ECHO_N@
459 ECHO_T = @ECHO_T@
460 EGREP = @EGREP@
461 EXEEXT = @EXEEXT@
462 FGREP = @FGREP@
463 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
464 GIO2_CFLAGS = @GIO2_CFLAGS@
465 GIO2_LIBS = @GIO2_LIBS@
466 GLIB2_CFLAGS = @GLIB2_CFLAGS@
467 GLIB2_LIBS = @GLIB2_LIBS@
468 GLIB2_REQUIRED = @GLIB2_REQUIRED@
469 GLIB_MKENUMS = @GLIB_MKENUMS@
470 GMSGFMT = @GMSGFMT@
471 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
472 GOBJECT2_LIBS = @GOBJECT2_LIBS@
473 GREP = @GREP@
474 GTHREAD2_CFLAGS = @GTHREAD2_CFLAGS@
475 GTHREAD2_LIBS = @GTHREAD2_LIBS@
476 GTKDOC_CHECK = @GTKDOC_CHECK@
477 GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
478 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
479 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
480 GTKDOC_MKPDF = @GTKDOC_MKPDF@
481 GTKDOC_REBASE = @GTKDOC_REBASE@
482 HTML_DIR = @HTML_DIR@
483 INSTALL = @INSTALL@
484 INSTALL_DATA = @INSTALL_DATA@
485 INSTALL_PROGRAM = @INSTALL_PROGRAM@
486 INSTALL_SCRIPT = @INSTALL_SCRIPT@
487 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
488 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
489 INTLTOOL_MERGE = @INTLTOOL_MERGE@
490 INTLTOOL_PERL = @INTLTOOL_PERL@
491 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
492 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
493 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
494 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
495 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
496 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
497 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
498 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
499 INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
500 INTROSPECTION_LIBS = @INTROSPECTION_LIBS@
501 INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@
502 INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
503 INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
504 LD = @LD@
505 LDFLAGS = @LDFLAGS@
506 LIBOBJS = @LIBOBJS@
507 LIBS = @LIBS@
508 LIBTOOL = @LIBTOOL@
509 LIBVIRT_CFLAGS = @LIBVIRT_CFLAGS@
510 LIBVIRT_GLIB_MAJOR_VERSION = @LIBVIRT_GLIB_MAJOR_VERSION@
511 LIBVIRT_GLIB_MICRO_VERSION = @LIBVIRT_GLIB_MICRO_VERSION@
512 LIBVIRT_GLIB_MINOR_VERSION = @LIBVIRT_GLIB_MINOR_VERSION@
513 LIBVIRT_GLIB_VERSION = @LIBVIRT_GLIB_VERSION@
514 LIBVIRT_GLIB_VERSION_INFO = @LIBVIRT_GLIB_VERSION_INFO@
515 LIBVIRT_GLIB_VERSION_NUMBER = @LIBVIRT_GLIB_VERSION_NUMBER@
516 LIBVIRT_LIBS = @LIBVIRT_LIBS@
517 LIBVIRT_REQUIRED = @LIBVIRT_REQUIRED@
518 LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
519 LIBXML2_LIBS = @LIBXML2_LIBS@
520 LIPO = @LIPO@
521 LN_S = @LN_S@
522 LTLIBOBJS = @LTLIBOBJS@
523 MAKEINFO = @MAKEINFO@
524 MANIFEST_TOOL = @MANIFEST_TOOL@
525 MINGW_EXTRA_LDFLAGS = @MINGW_EXTRA_LDFLAGS@
526 MKDIR_P = @MKDIR_P@
527 MSGFMT = @MSGFMT@
528 MSGMERGE = @MSGMERGE@
529 NM = @NM@
530 NMEDIT = @NMEDIT@
531 OBJDUMP = @OBJDUMP@
532 OBJEXT = @OBJEXT@
533 OTOOL = @OTOOL@
534 OTOOL64 = @OTOOL64@
535 PACKAGE = @PACKAGE@
536 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
537 PACKAGE_NAME = @PACKAGE_NAME@
538 PACKAGE_STRING = @PACKAGE_STRING@
539 PACKAGE_TARNAME = @PACKAGE_TARNAME@
540 PACKAGE_URL = @PACKAGE_URL@
541 PACKAGE_VERSION = @PACKAGE_VERSION@
542 PATH_SEPARATOR = @PATH_SEPARATOR@
543 PKG_CONFIG = @PKG_CONFIG@
544 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
545 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
546 PYTHON = @PYTHON@
547 PYTHON_INCLUDES = @PYTHON_INCLUDES@
548 PYTHON_SITE_PACKAGES = @PYTHON_SITE_PACKAGES@
549 PYTHON_VERSION = @PYTHON_VERSION@
550 RANLIB = @RANLIB@
551 SED = @SED@
552 SET_MAKE = @SET_MAKE@
553 SHELL = @SHELL@
554 STRIP = @STRIP@
555 USE_NLS = @USE_NLS@
556 VAPIGEN = @VAPIGEN@
557 VERSION = @VERSION@
558 WARN_CFLAGS = @WARN_CFLAGS@
559 WARN_LDFLAGS = @WARN_LDFLAGS@
560 XGETTEXT = @XGETTEXT@
561 abs_builddir = @abs_builddir@
562 abs_srcdir = @abs_srcdir@
563 abs_top_builddir = @abs_top_builddir@
564 abs_top_srcdir = @abs_top_srcdir@
565 ac_ct_AR = @ac_ct_AR@
566 ac_ct_CC = @ac_ct_CC@
567 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
568 am__include = @am__include@
569 am__leading_dot = @am__leading_dot@
570 am__quote = @am__quote@
571 am__tar = @am__tar@
572 am__untar = @am__untar@
573 bindir = @bindir@
574 build = @build@
575 build_alias = @build_alias@
576 build_cpu = @build_cpu@
577 build_os = @build_os@
578 build_vendor = @build_vendor@
579 builddir = @builddir@
580 datadir = @datadir@
581 datarootdir = @datarootdir@
582 docdir = @docdir@
583 dvidir = @dvidir@
584 exec_prefix = @exec_prefix@
585 host = @host@
586 host_alias = @host_alias@
587 host_cpu = @host_cpu@
588 host_os = @host_os@
589 host_vendor = @host_vendor@
590 htmldir = @htmldir@
591 includedir = @includedir@
592 infodir = @infodir@
593 install_sh = @install_sh@
594 installed_test_metadir = @installed_test_metadir@
595 installed_testdir = @installed_testdir@
596 intltool__v_merge_options_ = @intltool__v_merge_options_@
597 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
598 libdir = @libdir@
599 libexecdir = @libexecdir@
600 localedir = @localedir@
601 localstatedir = @localstatedir@
602 mandir = @mandir@
603 mkdir_p = @mkdir_p@
604 oldincludedir = @oldincludedir@
605 pdfdir = @pdfdir@
606 prefix = @prefix@
607 program_transform_name = @program_transform_name@
608 psdir = @psdir@
609 pythondir = @pythondir@
610 sbindir = @sbindir@
611 sharedstatedir = @sharedstatedir@
612 srcdir = @srcdir@
613 sysconfdir = @sysconfdir@
614 target_alias = @target_alias@
615 top_build_prefix = @top_build_prefix@
616 top_builddir = @top_builddir@
617 top_srcdir = @top_srcdir@
618 @ENABLE_TESTS_TRUE@TESTS_ENVIRONMENT = \
619 @ENABLE_TESTS_TRUE@ G_TEST_SRCDIR="$(abs_srcdir)" \
620 @ENABLE_TESTS_TRUE@ G_TEST_BUILDDIR="$(abs_builddir)" \
621 @ENABLE_TESTS_TRUE@ G_DEBUG=gc-friendly \
622 @ENABLE_TESTS_TRUE@ MALLOC_CHECK_=2 \
623 @ENABLE_TESTS_TRUE@ MALLOC_PERTURB_=$$(($${RANDOM:-256} % 256))
624
625 @ENABLE_TESTS_TRUE@LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/tap-driver.sh
626 @ENABLE_TESTS_TRUE@LOG_COMPILER = $(top_srcdir)/tap-test
627 @ENABLE_TESTS_TRUE@NULL =
628
629 # initialize variables for unconditional += appending
630 @ENABLE_TESTS_TRUE@BUILT_SOURCES =
631 @ENABLE_TESTS_TRUE@BUILT_EXTRA_DIST =
632 @ENABLE_TESTS_TRUE@CLEANFILES = *.log *.trs $(am__append_13)
633 @ENABLE_TESTS_TRUE@DISTCLEANFILES =
634 @ENABLE_TESTS_TRUE@MAINTAINERCLEANFILES =
635 @ENABLE_TESTS_TRUE@EXTRA_DIST = $(all_dist_test_scripts) \
636 @ENABLE_TESTS_TRUE@ $(all_dist_test_data) \
637 @ENABLE_TESTS_TRUE@ xml/gconfig-domain.xml \
638 @ENABLE_TESTS_TRUE@ xml/gconfig-domain-clock.xml \
639 @ENABLE_TESTS_TRUE@ xml/gconfig-domain-cpu.xml \
640 @ENABLE_TESTS_TRUE@ xml/gconfig-domain-device-channel.xml \
641 @ENABLE_TESTS_TRUE@ xml/gconfig-domain-device-console.xml \
642 @ENABLE_TESTS_TRUE@ xml/gconfig-domain-device-disk.xml \
643 @ENABLE_TESTS_TRUE@ xml/gconfig-domain-device-graphics.xml \
644 @ENABLE_TESTS_TRUE@ xml/gconfig-domain-device-input.xml \
645 @ENABLE_TESTS_TRUE@ xml/gconfig-domain-device-network.xml \
646 @ENABLE_TESTS_TRUE@ xml/gconfig-domain-device-sound.xml \
647 @ENABLE_TESTS_TRUE@ xml/gconfig-domain-device-usbredir.xml \
648 @ENABLE_TESTS_TRUE@ xml/gconfig-domain-device-video.xml \
649 @ENABLE_TESTS_TRUE@ xml/gconfig-domain-os.xml $(NULL)
650 @ENABLE_TESTS_TRUE@installed_test_LTLIBRARIES = $(am__append_12)
651 @ENABLE_TESTS_TRUE@installed_test_SCRIPTS = $(am__append_10)
652 @ENABLE_TESTS_TRUE@nobase_installed_test_DATA = $(am__append_11)
653 @ENABLE_TESTS_TRUE@noinst_LTLIBRARIES = $(am__append_1)
654 @ENABLE_TESTS_TRUE@noinst_SCRIPTS = $(am__append_3)
655 @ENABLE_TESTS_TRUE@noinst_DATA = $(am__append_4)
656 @ENABLE_TESTS_TRUE@check_LTLIBRARIES = $(am__append_5)
657 @ENABLE_TESTS_TRUE@check_SCRIPTS = $(am__append_7)
658 @ENABLE_TESTS_TRUE@check_DATA = $(am__append_8)
659
660 # Note: build even the installed-only targets during 'make check' to ensure that they still work.
661 # We need to do a bit of trickery here and manage disting via EXTRA_DIST instead of using dist_ prefixes to
662 # prevent automake from mistreating gmake functions like $(wildcard ...) and $(addprefix ...) as if they were
663 # filenames, including removing duplicate instances of the opening part before the space, eg. '$(addprefix'.
664 @ENABLE_TESTS_TRUE@all_test_programs = $(test_programs) $(uninstalled_test_programs) $(installed_test_programs) \
665 @ENABLE_TESTS_TRUE@ $(test_extra_programs) $(uninstalled_test_extra_programs) $(installed_test_extra_programs)
666
667 @ENABLE_TESTS_TRUE@all_test_scripts = $(test_scripts) \
668 @ENABLE_TESTS_TRUE@ $(uninstalled_test_scripts) \
669 @ENABLE_TESTS_TRUE@ $(installed_test_scripts) \
670 @ENABLE_TESTS_TRUE@ $(test_extra_scripts) \
671 @ENABLE_TESTS_TRUE@ $(uninstalled_test_extra_scripts) \
672 @ENABLE_TESTS_TRUE@ $(installed_test_extra_scripts) \
673 @ENABLE_TESTS_TRUE@ $(all_dist_test_scripts)
674 @ENABLE_TESTS_TRUE@all_dist_test_scripts = $(dist_test_scripts) $(dist_uninstalled_test_scripts) $(dist_installed_test_scripts) \
675 @ENABLE_TESTS_TRUE@ $(dist_test_extra_scripts) $(dist_uninstalled_test_extra_scripts) $(dist_installed_test_extra_scripts)
676
677 @ENABLE_TESTS_TRUE@all_test_data = $(test_data) \
678 @ENABLE_TESTS_TRUE@ $(uninstalled_test_data) \
679 @ENABLE_TESTS_TRUE@ $(installed_test_data) \
680 @ENABLE_TESTS_TRUE@ $(all_dist_test_data)
681 @ENABLE_TESTS_TRUE@all_dist_test_data = $(dist_test_data) $(dist_uninstalled_test_data) $(dist_installed_test_data)
682 @ENABLE_TESTS_TRUE@all_test_ltlibs = $(test_ltlibraries) $(uninstalled_test_ltlibraries) $(installed_test_ltlibraries)
683 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@installed_testcases = $(test_programs) $(installed_test_programs) \
684 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ $(test_scripts) $(installed_test_scripts) \
685 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ $(dist_test_scripts) $(dist_installed_test_scripts)
686
687 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@installed_test_meta_DATA = $(installed_testcases:=.test)
688 @ENABLE_TESTS_TRUE@AM_CFLAGS = \
689 @ENABLE_TESTS_TRUE@ $(COVERAGE_CFLAGS) \
690 @ENABLE_TESTS_TRUE@ -I$(top_srcdir) \
691 @ENABLE_TESTS_TRUE@ $(GOBJECT2_CFLAGS) \
692 @ENABLE_TESTS_TRUE@ $(LIBVIRT_CFLAGS) \
693 @ENABLE_TESTS_TRUE@ $(LIBXML2_CFLAGS) \
694 @ENABLE_TESTS_TRUE@ $(WARN_CFLAGS)
695
696 @ENABLE_TESTS_TRUE@LDADD = \
697 @ENABLE_TESTS_TRUE@ $(top_builddir)/libvirt-gconfig/libvirt-gconfig-1.0.la \
698 @ENABLE_TESTS_TRUE@ $(top_builddir)/libvirt-glib/libvirt-glib-1.0.la
699
700 @ENABLE_TESTS_TRUE@test_programs = test-gconfig test-events
701 all: $(BUILT_SOURCES)
702 $(MAKE) $(AM_MAKEFLAGS) all-am
703
704 .SUFFIXES:
705 .SUFFIXES: .c .lo .log .o .obj .test .test$(EXEEXT) .trs
706 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/build-aux/glib-tap.mk $(am__configure_deps)
707 @for dep in $?; do \
708 case '$(am__configure_deps)' in \
709 *$$dep*) \
710 ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
711 && { if test -f $@; then exit 0; else break; fi; }; \
712 exit 1;; \
713 esac; \
714 done; \
715 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tests/Makefile'; \
716 $(am__cd) $(top_srcdir) && \
717 $(AUTOMAKE) --gnu tests/Makefile
718 .PRECIOUS: Makefile
719 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
720 @case '$?' in \
721 *config.status*) \
722 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
723 *) \
724 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
725 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
726 esac;
727 $(top_srcdir)/build-aux/glib-tap.mk:
728
729 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
730 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
731
732 $(top_srcdir)/configure: $(am__configure_deps)
733 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
734 $(ACLOCAL_M4): $(am__aclocal_m4_deps)
735 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
736 $(am__aclocal_m4_deps):
737
738 clean-checkLTLIBRARIES:
739 -test -z "$(check_LTLIBRARIES)" || rm -f $(check_LTLIBRARIES)
740 @list='$(check_LTLIBRARIES)'; \
741 locs=`for p in $$list; do echo $$p; done | \
742 sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
743 sort -u`; \
744 test -z "$$locs" || { \
745 echo rm -f $${locs}; \
746 rm -f $${locs}; \
747 }
748
749 install-installed_testLTLIBRARIES: $(installed_test_LTLIBRARIES)
750 @$(NORMAL_INSTALL)
751 @list='$(installed_test_LTLIBRARIES)'; test -n "$(installed_testdir)" || list=; \
752 list2=; for p in $$list; do \
753 if test -f $$p; then \
754 list2="$$list2 $$p"; \
755 else :; fi; \
756 done; \
757 test -z "$$list2" || { \
758 echo " $(MKDIR_P) '$(DESTDIR)$(installed_testdir)'"; \
759 $(MKDIR_P) "$(DESTDIR)$(installed_testdir)" || exit 1; \
760 echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(installed_testdir)'"; \
761 $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(installed_testdir)"; \
762 }
763
764 uninstall-installed_testLTLIBRARIES:
765 @$(NORMAL_UNINSTALL)
766 @list='$(installed_test_LTLIBRARIES)'; test -n "$(installed_testdir)" || list=; \
767 for p in $$list; do \
768 $(am__strip_dir) \
769 echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(installed_testdir)/$$f'"; \
770 $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(installed_testdir)/$$f"; \
771 done
772
773 clean-installed_testLTLIBRARIES:
774 -test -z "$(installed_test_LTLIBRARIES)" || rm -f $(installed_test_LTLIBRARIES)
775 @list='$(installed_test_LTLIBRARIES)'; \
776 locs=`for p in $$list; do echo $$p; done | \
777 sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
778 sort -u`; \
779 test -z "$$locs" || { \
780 echo rm -f $${locs}; \
781 rm -f $${locs}; \
782 }
783
784 clean-noinstLTLIBRARIES:
785 -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
786 @list='$(noinst_LTLIBRARIES)'; \
787 locs=`for p in $$list; do echo $$p; done | \
788 sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
789 sort -u`; \
790 test -z "$$locs" || { \
791 echo rm -f $${locs}; \
792 rm -f $${locs}; \
793 }
794
795 clean-checkPROGRAMS:
796 @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
797 echo " rm -f" $$list; \
798 rm -f $$list || exit $$?; \
799 test -n "$(EXEEXT)" || exit 0; \
800 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
801 echo " rm -f" $$list; \
802 rm -f $$list
803 install-installed_testPROGRAMS: $(installed_test_PROGRAMS)
804 @$(NORMAL_INSTALL)
805 @list='$(installed_test_PROGRAMS)'; test -n "$(installed_testdir)" || list=; \
806 if test -n "$$list"; then \
807 echo " $(MKDIR_P) '$(DESTDIR)$(installed_testdir)'"; \
808 $(MKDIR_P) "$(DESTDIR)$(installed_testdir)" || exit 1; \
809 fi; \
810 for p in $$list; do echo "$$p $$p"; done | \
811 sed 's/$(EXEEXT)$$//' | \
812 while read p p1; do if test -f $$p \
813 || test -f $$p1 \
814 ; then echo "$$p"; echo "$$p"; else :; fi; \
815 done | \
816 sed -e 'p;s,.*/,,;n;h' \
817 -e 's|.*|.|' \
818 -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
819 sed 'N;N;N;s,\n, ,g' | \
820 $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
821 { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
822 if ($$2 == $$4) files[d] = files[d] " " $$1; \
823 else { print "f", $$3 "/" $$4, $$1; } } \
824 END { for (d in files) print "f", d, files[d] }' | \
825 while read type dir files; do \
826 if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
827 test -z "$$files" || { \
828 echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(installed_testdir)$$dir'"; \
829 $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(installed_testdir)$$dir" || exit $$?; \
830 } \
831 ; done
832
833 uninstall-installed_testPROGRAMS:
834 @$(NORMAL_UNINSTALL)
835 @list='$(installed_test_PROGRAMS)'; test -n "$(installed_testdir)" || list=; \
836 files=`for p in $$list; do echo "$$p"; done | \
837 sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
838 -e 's/$$/$(EXEEXT)/' \
839 `; \
840 test -n "$$list" || exit 0; \
841 echo " ( cd '$(DESTDIR)$(installed_testdir)' && rm -f" $$files ")"; \
842 cd "$(DESTDIR)$(installed_testdir)" && rm -f $$files
843
844 clean-installed_testPROGRAMS:
845 @list='$(installed_test_PROGRAMS)'; test -n "$$list" || exit 0; \
846 echo " rm -f" $$list; \
847 rm -f $$list || exit $$?; \
848 test -n "$(EXEEXT)" || exit 0; \
849 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
850 echo " rm -f" $$list; \
851 rm -f $$list
852
853 clean-noinstPROGRAMS:
854 @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
855 echo " rm -f" $$list; \
856 rm -f $$list || exit $$?; \
857 test -n "$(EXEEXT)" || exit 0; \
858 list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
859 echo " rm -f" $$list; \
860 rm -f $$list
861
862 test-events$(EXEEXT): $(test_events_OBJECTS) $(test_events_DEPENDENCIES) $(EXTRA_test_events_DEPENDENCIES)
863 @rm -f test-events$(EXEEXT)
864 $(AM_V_CCLD)$(LINK) $(test_events_OBJECTS) $(test_events_LDADD) $(LIBS)
865
866 test-gconfig$(EXEEXT): $(test_gconfig_OBJECTS) $(test_gconfig_DEPENDENCIES) $(EXTRA_test_gconfig_DEPENDENCIES)
867 @rm -f test-gconfig$(EXEEXT)
868 $(AM_V_CCLD)$(LINK) $(test_gconfig_OBJECTS) $(test_gconfig_LDADD) $(LIBS)
869 install-installed_testSCRIPTS: $(installed_test_SCRIPTS)
870 @$(NORMAL_INSTALL)
871 @list='$(installed_test_SCRIPTS)'; test -n "$(installed_testdir)" || list=; \
872 if test -n "$$list"; then \
873 echo " $(MKDIR_P) '$(DESTDIR)$(installed_testdir)'"; \
874 $(MKDIR_P) "$(DESTDIR)$(installed_testdir)" || exit 1; \
875 fi; \
876 for p in $$list; do \
877 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
878 if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
879 done | \
880 sed -e 'p;s,.*/,,;n' \
881 -e 'h;s|.*|.|' \
882 -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
883 $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
884 { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
885 if ($$2 == $$4) { files[d] = files[d] " " $$1; \
886 if (++n[d] == $(am__install_max)) { \
887 print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
888 else { print "f", d "/" $$4, $$1 } } \
889 END { for (d in files) print "f", d, files[d] }' | \
890 while read type dir files; do \
891 if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
892 test -z "$$files" || { \
893 echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(installed_testdir)$$dir'"; \
894 $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(installed_testdir)$$dir" || exit $$?; \
895 } \
896 ; done
897
898 uninstall-installed_testSCRIPTS:
899 @$(NORMAL_UNINSTALL)
900 @list='$(installed_test_SCRIPTS)'; test -n "$(installed_testdir)" || exit 0; \
901 files=`for p in $$list; do echo "$$p"; done | \
902 sed -e 's,.*/,,;$(transform)'`; \
903 dir='$(DESTDIR)$(installed_testdir)'; $(am__uninstall_files_from_dir)
904
905 mostlyclean-compile:
906 -rm -f *.$(OBJEXT)
907
908 distclean-compile:
909 -rm -f *.tab.c
910
911 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-events.Po@am__quote@
912 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-gconfig.Po@am__quote@
913
914 .c.o:
915 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
916 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
917 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
918 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
919 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $<
920
921 .c.obj:
922 @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
923 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
924 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
925 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
926 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'`
927
928 .c.lo:
929 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
930 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
931 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
932 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
933 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
934
935 mostlyclean-libtool:
936 -rm -f *.lo
937
938 clean-libtool:
939 -rm -rf .libs _libs
940 install-installed_test_metaDATA: $(installed_test_meta_DATA)
941 @$(NORMAL_INSTALL)
942 @list='$(installed_test_meta_DATA)'; test -n "$(installed_test_metadir)" || list=; \
943 if test -n "$$list"; then \
944 echo " $(MKDIR_P) '$(DESTDIR)$(installed_test_metadir)'"; \
945 $(MKDIR_P) "$(DESTDIR)$(installed_test_metadir)" || exit 1; \
946 fi; \
947 for p in $$list; do \
948 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
949 echo "$$d$$p"; \
950 done | $(am__base_list) | \
951 while read files; do \
952 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(installed_test_metadir)'"; \
953 $(INSTALL_DATA) $$files "$(DESTDIR)$(installed_test_metadir)" || exit $$?; \
954 done
955
956 uninstall-installed_test_metaDATA:
957 @$(NORMAL_UNINSTALL)
958 @list='$(installed_test_meta_DATA)'; test -n "$(installed_test_metadir)" || list=; \
959 files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
960 dir='$(DESTDIR)$(installed_test_metadir)'; $(am__uninstall_files_from_dir)
961 install-nobase_installed_testDATA: $(nobase_installed_test_DATA)
962 @$(NORMAL_INSTALL)
963 @list='$(nobase_installed_test_DATA)'; test -n "$(installed_testdir)" || list=; \
964 if test -n "$$list"; then \
965 echo " $(MKDIR_P) '$(DESTDIR)$(installed_testdir)'"; \
966 $(MKDIR_P) "$(DESTDIR)$(installed_testdir)" || exit 1; \
967 fi; \
968 $(am__nobase_list) | while read dir files; do \
969 xfiles=; for file in $$files; do \
970 if test -f "$$file"; then xfiles="$$xfiles $$file"; \
971 else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
972 test -z "$$xfiles" || { \
973 test "x$$dir" = x. || { \
974 echo " $(MKDIR_P) '$(DESTDIR)$(installed_testdir)/$$dir'"; \
975 $(MKDIR_P) "$(DESTDIR)$(installed_testdir)/$$dir"; }; \
976 echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(installed_testdir)/$$dir'"; \
977 $(INSTALL_DATA) $$xfiles "$(DESTDIR)$(installed_testdir)/$$dir" || exit $$?; }; \
978 done
979
980 uninstall-nobase_installed_testDATA:
981 @$(NORMAL_UNINSTALL)
982 @list='$(nobase_installed_test_DATA)'; test -n "$(installed_testdir)" || list=; \
983 $(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
984 dir='$(DESTDIR)$(installed_testdir)'; $(am__uninstall_files_from_dir)
985
986 ID: $(am__tagged_files)
987 $(am__define_uniq_tagged_files); mkid -fID $$unique
988 tags: tags-am
989 TAGS: tags
990
991 tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
992 set x; \
993 here=`pwd`; \
994 $(am__define_uniq_tagged_files); \
995 shift; \
996 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
997 test -n "$$unique" || unique=$$empty_fix; \
998 if test $$# -gt 0; then \
999 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
1000 "$$@" $$unique; \
1001 else \
1002 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
1003 $$unique; \
1004 fi; \
1005 fi
1006 ctags: ctags-am
1007
1008 CTAGS: ctags
1009 ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
1010 $(am__define_uniq_tagged_files); \
1011 test -z "$(CTAGS_ARGS)$$unique" \
1012 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
1013 $$unique
1014
1015 GTAGS:
1016 here=`$(am__cd) $(top_builddir) && pwd` \
1017 && $(am__cd) $(top_srcdir) \
1018 && gtags -i $(GTAGS_ARGS) "$$here"
1019 cscopelist: cscopelist-am
1020
1021 cscopelist-am: $(am__tagged_files)
1022 list='$(am__tagged_files)'; \
1023 case "$(srcdir)" in \
1024 [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
1025 *) sdir=$(subdir)/$(srcdir) ;; \
1026 esac; \
1027 for i in $$list; do \
1028 if test -f "$$i"; then \
1029 echo "$(subdir)/$$i"; \
1030 else \
1031 echo "$$sdir/$$i"; \
1032 fi; \
1033 done >> $(top_builddir)/cscope.files
1034
1035 distclean-tags:
1036 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
1037
1038 # Recover from deleted '.trs' file; this should ensure that
1039 # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create
1040 # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells
1041 # to avoid problems with "make -n".
1042 .log.trs:
1043 rm -f $< $@
1044 $(MAKE) $(AM_MAKEFLAGS) $<
1045
1046 # Leading 'am--fnord' is there to ensure the list of targets does not
1047 # expand to empty, as could happen e.g. with make check TESTS=''.
1048 am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck)
1049 am--force-recheck:
1050 @:
1051
1052 $(TEST_SUITE_LOG): $(TEST_LOGS)
1053 @$(am__set_TESTS_bases); \
1054 am__f_ok () { test -f "$$1" && test -r "$$1"; }; \
1055 redo_bases=`for i in $$bases; do \
1056 am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \
1057 done`; \
1058 if test -n "$$redo_bases"; then \
1059 redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \
1060 redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \
1061 if $(am__make_dryrun); then :; else \
1062 rm -f $$redo_logs && rm -f $$redo_results || exit 1; \
1063 fi; \
1064 fi; \
1065 if test -n "$$am__remaking_logs"; then \
1066 echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \
1067 "recursion detected" >&2; \
1068 else \
1069 am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \
1070 fi; \
1071 if $(am__make_dryrun); then :; else \
1072 st=0; \
1073 errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \
1074 for i in $$redo_bases; do \
1075 test -f $$i.trs && test -r $$i.trs \
1076 || { echo "$$errmsg $$i.trs" >&2; st=1; }; \
1077 test -f $$i.log && test -r $$i.log \
1078 || { echo "$$errmsg $$i.log" >&2; st=1; }; \
1079 done; \
1080 test $$st -eq 0 || exit 1; \
1081 fi
1082 @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \
1083 ws='[ ]'; \
1084 results=`for b in $$bases; do echo $$b.trs; done`; \
1085 test -n "$$results" || results=/dev/null; \
1086 all=` grep "^$$ws*:test-result:" $$results | wc -l`; \
1087 pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \
1088 fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \
1089 skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \
1090 xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \
1091 xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \
1092 error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \
1093 if test `expr $$fail + $$xpass + $$error` -eq 0; then \
1094 success=true; \
1095 else \
1096 success=false; \
1097 fi; \
1098 br='==================='; br=$$br$$br$$br$$br; \
1099 result_count () \
1100 { \
1101 if test x"$$1" = x"--maybe-color"; then \
1102 maybe_colorize=yes; \
1103 elif test x"$$1" = x"--no-color"; then \
1104 maybe_colorize=no; \
1105 else \
1106 echo "$@: invalid 'result_count' usage" >&2; exit 4; \
1107 fi; \
1108 shift; \
1109 desc=$$1 count=$$2; \
1110 if test $$maybe_colorize = yes && test $$count -gt 0; then \
1111 color_start=$$3 color_end=$$std; \
1112 else \
1113 color_start= color_end=; \
1114 fi; \
1115 echo "$${color_start}# $$desc $$count$${color_end}"; \
1116 }; \
1117 create_testsuite_report () \
1118 { \
1119 result_count $$1 "TOTAL:" $$all "$$brg"; \
1120 result_count $$1 "PASS: " $$pass "$$grn"; \
1121 result_count $$1 "SKIP: " $$skip "$$blu"; \
1122 result_count $$1 "XFAIL:" $$xfail "$$lgn"; \
1123 result_count $$1 "FAIL: " $$fail "$$red"; \
1124 result_count $$1 "XPASS:" $$xpass "$$red"; \
1125 result_count $$1 "ERROR:" $$error "$$mgn"; \
1126 }; \
1127 { \
1128 echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \
1129 $(am__rst_title); \
1130 create_testsuite_report --no-color; \
1131 echo; \
1132 echo ".. contents:: :depth: 2"; \
1133 echo; \
1134 for b in $$bases; do echo $$b; done \
1135 | $(am__create_global_log); \
1136 } >$(TEST_SUITE_LOG).tmp || exit 1; \
1137 mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \
1138 if $$success; then \
1139 col="$$grn"; \
1140 else \
1141 col="$$red"; \
1142 test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \
1143 fi; \
1144 echo "$${col}$$br$${std}"; \
1145 echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \
1146 echo "$${col}$$br$${std}"; \
1147 create_testsuite_report --maybe-color; \
1148 echo "$$col$$br$$std"; \
1149 if $$success; then :; else \
1150 echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \
1151 if test -n "$(PACKAGE_BUGREPORT)"; then \
1152 echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \
1153 fi; \
1154 echo "$$col$$br$$std"; \
1155 fi; \
1156 $$success || exit 1
1157
1158 check-TESTS:
1159 @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
1160 @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
1161 @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
1162 @set +e; $(am__set_TESTS_bases); \
1163 log_list=`for i in $$bases; do echo $$i.log; done`; \
1164 trs_list=`for i in $$bases; do echo $$i.trs; done`; \
1165 log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \
1166 $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
1167 exit $$?;
1168 recheck: all $(check_LTLIBRARIES) $(check_PROGRAMS) $(check_SCRIPTS) $(check_DATA)
1169 @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
1170 @set +e; $(am__set_TESTS_bases); \
1171 bases=`for i in $$bases; do echo $$i; done \
1172 | $(am__list_recheck_tests)` || exit 1; \
1173 log_list=`for i in $$bases; do echo $$i.log; done`; \
1174 log_list=`echo $$log_list`; \
1175 $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \
1176 am__force_recheck=am--force-recheck \
1177 TEST_LOGS="$$log_list"; \
1178 exit $$?
1179 test-gconfig.log: test-gconfig$(EXEEXT)
1180 @p='test-gconfig$(EXEEXT)'; \
1181 b='test-gconfig'; \
1182 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1183 --log-file $$b.log --trs-file $$b.trs \
1184 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1185 "$$tst" $(AM_TESTS_FD_REDIRECT)
1186 test-events.log: test-events$(EXEEXT)
1187 @p='test-events$(EXEEXT)'; \
1188 b='test-events'; \
1189 $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1190 --log-file $$b.log --trs-file $$b.trs \
1191 $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1192 "$$tst" $(AM_TESTS_FD_REDIRECT)
1193 .test.log:
1194 @p='$<'; \
1195 $(am__set_b); \
1196 $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
1197 --log-file $$b.log --trs-file $$b.trs \
1198 $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
1199 "$$tst" $(AM_TESTS_FD_REDIRECT)
1200 @am__EXEEXT_TRUE@.test$(EXEEXT).log:
1201 @am__EXEEXT_TRUE@ @p='$<'; \
1202 @am__EXEEXT_TRUE@ $(am__set_b); \
1203 @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
1204 @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \
1205 @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
1206 @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
1207
1208 distdir: $(DISTFILES)
1209 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1210 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1211 list='$(DISTFILES)'; \
1212 dist_files=`for file in $$list; do echo $$file; done | \
1213 sed -e "s|^$$srcdirstrip/||;t" \
1214 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
1215 case $$dist_files in \
1216 */*) $(MKDIR_P) `echo "$$dist_files" | \
1217 sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
1218 sort -u` ;; \
1219 esac; \
1220 for file in $$dist_files; do \
1221 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
1222 if test -d $$d/$$file; then \
1223 dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
1224 if test -d "$(distdir)/$$file"; then \
1225 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
1226 fi; \
1227 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
1228 cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
1229 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
1230 fi; \
1231 cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
1232 else \
1233 test -f "$(distdir)/$$file" \
1234 || cp -p $$d/$$file "$(distdir)/$$file" \
1235 || exit 1; \
1236 fi; \
1237 done
1238 check-am: all-am
1239 $(MAKE) $(AM_MAKEFLAGS) $(check_LTLIBRARIES) $(check_PROGRAMS) \
1240 $(check_SCRIPTS) $(check_DATA)
1241 $(MAKE) $(AM_MAKEFLAGS) check-TESTS
1242 check: $(BUILT_SOURCES)
1243 $(MAKE) $(AM_MAKEFLAGS) check-am
1244 all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(DATA)
1245 installdirs:
1246 for dir in "$(DESTDIR)$(installed_testdir)" "$(DESTDIR)$(installed_testdir)" "$(DESTDIR)$(installed_testdir)" "$(DESTDIR)$(installed_test_metadir)" "$(DESTDIR)$(installed_testdir)"; do \
1247 test -z "$$dir" || $(MKDIR_P) "$$dir"; \
1248 done
1249 install: $(BUILT_SOURCES)
1250 $(MAKE) $(AM_MAKEFLAGS) install-am
1251 install-exec: install-exec-am
1252 install-data: install-data-am
1253 uninstall: uninstall-am
1254
1255 install-am: all-am
1256 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
1257
1258 installcheck: installcheck-am
1259 install-strip:
1260 if test -z '$(STRIP)'; then \
1261 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1262 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1263 install; \
1264 else \
1265 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1266 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1267 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
1268 fi
1269 mostlyclean-generic:
1270 -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS)
1271 -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs)
1272 -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
1273
1274 clean-generic:
1275 -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
1276
1277 distclean-generic:
1278 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
1279 -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
1280 -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
1281
1282 maintainer-clean-generic:
1283 @echo "This command is intended for maintainers to use"
1284 @echo "it deletes files that may require special tools to rebuild."
1285 -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
1286 -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
1287 clean: clean-am
1288
1289 clean-am: clean-checkLTLIBRARIES clean-checkPROGRAMS clean-generic \
1290 clean-installed_testLTLIBRARIES clean-installed_testPROGRAMS \
1291 clean-libtool clean-noinstLTLIBRARIES clean-noinstPROGRAMS \
1292 mostlyclean-am
1293
1294 distclean: distclean-am
1295 -rm -rf ./$(DEPDIR)
1296 -rm -f Makefile
1297 distclean-am: clean-am distclean-compile distclean-generic \
1298 distclean-tags
1299
1300 dvi: dvi-am
1301
1302 dvi-am:
1303
1304 html: html-am
1305
1306 html-am:
1307
1308 info: info-am
1309
1310 info-am:
1311
1312 install-data-am: install-installed_testLTLIBRARIES \
1313 install-installed_testPROGRAMS install-installed_testSCRIPTS \
1314 install-installed_test_metaDATA \
1315 install-nobase_installed_testDATA
1316
1317 install-dvi: install-dvi-am
1318
1319 install-dvi-am:
1320
1321 install-exec-am:
1322
1323 install-html: install-html-am
1324
1325 install-html-am:
1326
1327 install-info: install-info-am
1328
1329 install-info-am:
1330
1331 install-man:
1332
1333 install-pdf: install-pdf-am
1334
1335 install-pdf-am:
1336
1337 install-ps: install-ps-am
1338
1339 install-ps-am:
1340
1341 installcheck-am:
1342
1343 maintainer-clean: maintainer-clean-am
1344 -rm -rf ./$(DEPDIR)
1345 -rm -f Makefile
1346 maintainer-clean-am: distclean-am maintainer-clean-generic
1347
1348 mostlyclean: mostlyclean-am
1349
1350 mostlyclean-am: mostlyclean-compile mostlyclean-generic \
1351 mostlyclean-libtool
1352
1353 pdf: pdf-am
1354
1355 pdf-am:
1356
1357 ps: ps-am
1358
1359 ps-am:
1360
1361 uninstall-am: uninstall-installed_testLTLIBRARIES \
1362 uninstall-installed_testPROGRAMS \
1363 uninstall-installed_testSCRIPTS \
1364 uninstall-installed_test_metaDATA \
1365 uninstall-nobase_installed_testDATA
1366
1367 .MAKE: all check check-am install install-am install-strip
1368
1369 .PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
1370 clean-checkLTLIBRARIES clean-checkPROGRAMS clean-generic \
1371 clean-installed_testLTLIBRARIES clean-installed_testPROGRAMS \
1372 clean-libtool clean-noinstLTLIBRARIES clean-noinstPROGRAMS \
1373 cscopelist-am ctags ctags-am distclean distclean-compile \
1374 distclean-generic distclean-libtool distclean-tags distdir dvi \
1375 dvi-am html html-am info info-am install install-am \
1376 install-data install-data-am install-dvi install-dvi-am \
1377 install-exec install-exec-am install-html install-html-am \
1378 install-info install-info-am install-installed_testLTLIBRARIES \
1379 install-installed_testPROGRAMS install-installed_testSCRIPTS \
1380 install-installed_test_metaDATA install-man \
1381 install-nobase_installed_testDATA install-pdf install-pdf-am \
1382 install-ps install-ps-am install-strip installcheck \
1383 installcheck-am installdirs maintainer-clean \
1384 maintainer-clean-generic mostlyclean mostlyclean-compile \
1385 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
1386 recheck tags tags-am uninstall uninstall-am \
1387 uninstall-installed_testLTLIBRARIES \
1388 uninstall-installed_testPROGRAMS \
1389 uninstall-installed_testSCRIPTS \
1390 uninstall-installed_test_metaDATA \
1391 uninstall-nobase_installed_testDATA
1392
1393
1394 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@%.test: %$(EXEEXT) Makefile
1395 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ $(AM_V_GEN) (echo '[Test]' > $@.tmp; \
1396 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ echo 'Type=session' >> $@.tmp; \
1397 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ echo 'Exec=$(installed_testdir)/$(notdir $<) --tap' >> $@.tmp; \
1398 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ echo 'Output=TAP' >> $@.tmp; \
1399 @ENABLE_INSTALLED_TESTS_TRUE@@ENABLE_TESTS_TRUE@ mv $@.tmp $@)
1400
1401 # Tell versions [3.59,3.63) of GNU make to not export all variables.
1402 # Otherwise a system limit (for SysV at least) may be exceeded.
1403 .NOEXPORT:
0 /*
1 * test-events.c: unit tests for libvirt/glib mainloop integration
2 *
3 * Copyright (C) 2014 Red Hat, Inc.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * Author: Christophe Fergeau <cfergeau@redhat.com>
20 */
21
22 #include <config.h>
23
24 #include <libvirt-glib/libvirt-glib.h>
25
26 #include <libvirt/libvirt.h>
27
28 #include <errno.h>
29 #include <fcntl.h>
30 #include <unistd.h>
31
32 static GMainLoop *main_loop;
33 static int watch_fd;
34 static int watch_id;
35 static int timeout_id;
36
37 static void watch_destroyed(void *opaque)
38 {
39 gint *watch = opaque;
40
41 g_assert_cmpint(*watch, >=, 0);
42 g_assert_cmpint(*watch, ==, watch_id);
43 g_message("destroyed watch %d", *watch);
44 *watch = -1;
45 }
46
47
48 static gboolean check_destroyed(gpointer user_data)
49 {
50 gint *id = user_data;
51
52 g_assert_cmpint(*id, ==, -1);
53
54 return G_SOURCE_REMOVE;
55 }
56
57
58 static void watch_cb(int watch, int fd, int events, void *opaque)
59 {
60 g_assert_cmpint(watch_id, !=, -1);
61 g_assert_cmpint(watch, ==, watch_id);
62 g_assert_cmpint(fd, ==, watch_fd);
63
64 g_message("got event(s) %x on fd %d (watch %d)", events, fd, watch);
65 }
66
67
68 static gboolean test_watch(gpointer user_data)
69 {
70 int removal_status;
71
72 watch_id = virEventAddHandle(watch_fd,
73 VIR_EVENT_HANDLE_READABLE | VIR_EVENT_HANDLE_WRITABLE,
74 watch_cb, &watch_id, watch_destroyed);
75 virEventUpdateHandle(watch_id, 0);
76 removal_status = virEventRemoveHandle(watch_id);
77 g_assert_cmpint(removal_status, ==, 0);
78 virEventUpdateHandle(watch_id, VIR_EVENT_HANDLE_READABLE);
79 removal_status = virEventRemoveHandle(watch_id);
80 g_assert_cmpint(removal_status, ==, -1);
81 g_idle_add_full(G_PRIORITY_LOW, check_destroyed, &watch_id, NULL);
82 g_idle_add_full(G_PRIORITY_LOW,
83 (GSourceFunc)g_main_loop_quit,
84 main_loop,
85 NULL);
86
87 return G_SOURCE_REMOVE;
88 }
89
90
91 static void test_remove_disabled_watch(void)
92 {
93 main_loop = g_main_loop_new(NULL, FALSE);
94 watch_fd = open("/bin/true", O_RDONLY);
95 g_idle_add(test_watch, NULL);
96 g_main_loop_run(main_loop);
97 g_main_loop_unref(main_loop);
98 close(watch_fd);
99 watch_fd = -1;
100 g_assert_cmpint(watch_id, ==, -1);
101 }
102
103
104 static void timeout_destroyed(void *opaque)
105 {
106 gint *timeout = opaque;
107
108 g_assert_cmpint(*timeout, !=, -1);
109 g_assert_cmpint(*timeout, ==, timeout_id);
110 g_message("destroyed timeout %d", *timeout);
111 *timeout = -1;
112 }
113
114
115 static void timeout_cb(int timer, void *opaque)
116 {
117 g_assert_cmpint(timeout_id, !=, -1);
118 g_assert_cmpint(timer, ==, timeout_id);
119
120 g_message("timer %d fired", timer);
121 }
122
123
124 static gboolean test_timeout(gpointer user_data)
125 {
126 int removal_status;
127
128 timeout_id = virEventAddTimeout(10000, timeout_cb, &timeout_id, timeout_destroyed);
129 virEventUpdateTimeout(timeout_id, -1);
130 removal_status = virEventRemoveTimeout(timeout_id);
131 g_assert_cmpint(removal_status, ==, 0);
132 virEventUpdateTimeout(timeout_id, 20000);
133 removal_status = virEventRemoveTimeout(timeout_id);
134 g_assert_cmpint(removal_status, ==, -1);
135
136 g_idle_add_full(G_PRIORITY_LOW, check_destroyed, &timeout_id, NULL);
137 g_idle_add_full(G_PRIORITY_LOW,
138 (GSourceFunc)g_main_loop_quit,
139 main_loop,
140 NULL);
141
142 return G_SOURCE_REMOVE;
143 }
144
145
146 static void test_remove_disabled_timeout(void)
147 {
148 main_loop = g_main_loop_new(NULL, FALSE);
149 g_idle_add(test_timeout, NULL);
150 g_main_loop_run(main_loop);
151 g_main_loop_unref(main_loop);
152 g_assert_cmpint(timeout_id, ==, -1);
153 }
154
155
156 int main(int argc, char **argv)
157 {
158
159 gvir_init(&argc, &argv);
160 g_test_init(&argc, &argv, NULL);
161 gvir_event_register();
162
163 g_test_add_func("/libvirt-glib/remove-disabled-watch",
164 test_remove_disabled_watch);
165 g_test_add_func("/libvirt-glib/remove-disabled-timeout",
166 test_remove_disabled_timeout);
167
168 return g_test_run();
169 }
0 /*
1 * test-gconfig.c: unit tests for libvirt-gconfig
2 *
3 * Copyright (C) 2014 Red Hat, Inc.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * Author: Christophe Fergeau <cfergeau@redhat.com>
20 */
21
22 #include <config.h>
23
24 #include <libvirt-gconfig/libvirt-gconfig.h>
25
26 #define g_assert_cmpstr_free1(str1, op, str2) G_STMT_START { \
27 char *alloced_str = (str1); \
28 g_assert_cmpstr(alloced_str, op, (str2)); \
29 g_free(alloced_str); \
30 } G_STMT_END
31
32 static void check_xml(GVirConfigDomain *domain, const char *reference_file)
33 {
34 const char *reference_path;
35 GError *error = NULL;
36 char *reference_xml;
37 char *xml;
38
39 reference_path = g_test_get_filename(G_TEST_DIST, "xml",
40 reference_file, NULL);
41 g_file_get_contents(reference_path, &reference_xml, NULL, &error);
42 g_assert_no_error(error);
43 /* I could not generate text files without a trailing \n with vim or
44 * gedit, workaround this issue by removing trailing whitespace from
45 * the reference file */
46 g_strchomp(reference_xml);
47 xml = gvir_config_object_to_xml(GVIR_CONFIG_OBJECT(domain));
48 g_assert_cmpstr(xml, ==, reference_xml);
49 g_free(xml);
50 }
51
52
53 static GList *get_devices_by_type(GVirConfigDomain *domain, GType type)
54 {
55 GList *devices;
56 GList *it;
57 GList *matches = NULL;
58
59 devices = gvir_config_domain_get_devices(domain);
60 for (it = devices; it != NULL; it = it->next) {
61 if (g_type_is_a(G_OBJECT_TYPE(it->data), type)) {
62 matches = g_list_prepend(matches, g_object_ref(G_OBJECT(it->data)));
63 }
64 }
65 g_list_free_full(devices, g_object_unref);
66
67 return g_list_reverse(matches);
68 }
69
70
71 static void test_domain(void)
72 {
73 GVirConfigDomain *domain;
74 const char *features[] = { "foo", "bar", "baz", NULL };
75 GStrv feat;
76 unsigned int i;
77
78 domain = gvir_config_domain_new();
79 g_assert(domain != NULL);
80
81 gvir_config_domain_set_virt_type(domain, GVIR_CONFIG_DOMAIN_VIRT_KVM);
82 g_assert_cmpint(gvir_config_domain_get_virt_type(domain), ==, GVIR_CONFIG_DOMAIN_VIRT_KVM);
83
84 gvir_config_domain_set_name(domain, "foo");
85 g_assert_cmpstr(gvir_config_domain_get_name(domain), ==, "foo");
86
87 gvir_config_domain_set_memory(domain, 1234);
88 g_assert_cmpint(gvir_config_domain_get_memory(domain), ==, 1234);
89 gvir_config_domain_set_vcpus(domain, 3);
90 g_assert_cmpint(gvir_config_domain_get_vcpus(domain), ==, 3);
91
92 gvir_config_domain_set_features(domain, (const GStrv)features);
93 feat = gvir_config_domain_get_features(domain);
94 for (i = 0; features[i] != NULL; i++) {
95 g_assert(feat[i] != NULL);
96 g_assert_cmpstr(feat[i], ==, features[i]);
97 }
98 g_strfreev(feat);
99
100 gvir_config_domain_set_lifecycle(domain,
101 GVIR_CONFIG_DOMAIN_LIFECYCLE_ON_POWEROFF,
102 GVIR_CONFIG_DOMAIN_LIFECYCLE_RESTART);
103
104 gvir_config_domain_set_custom_xml(domain, "<foo/>", "ns", "http://foo", NULL);
105 gvir_config_domain_set_custom_xml(domain, "<foo/>", "nsbar", "http://bar", NULL);
106 gvir_config_domain_set_custom_xml(domain, "<foo/>", "ns", "http://bar", NULL);
107 gvir_config_domain_set_custom_xml(domain, "<bar/>", "ns", "http://foo", NULL);
108
109 g_assert_cmpstr_free1(gvir_config_domain_get_custom_xml(domain, "http://foo"), ==, "<ns:bar xmlns:ns=\"http://foo\"/>");
110 g_assert_cmpstr_free1(gvir_config_domain_get_custom_xml(domain, "http://bar"), ==, "<ns:foo xmlns:ns=\"http://bar\"/>");
111
112 check_xml(domain, "gconfig-domain.xml");
113
114 g_object_unref(G_OBJECT(domain));
115 }
116
117
118 static void test_domain_clock(void)
119 {
120 GVirConfigDomain *domain;
121 GVirConfigDomainClock *klock;
122 GVirConfigDomainTimerPit *pit;
123 GVirConfigDomainTimerRtc *rtc;
124 GVirConfigDomainTimerHpet *hpet;
125
126 domain = gvir_config_domain_new();
127
128 klock = gvir_config_domain_clock_new();
129 gvir_config_domain_clock_set_offset(klock, GVIR_CONFIG_DOMAIN_CLOCK_TIMEZONE);
130 gvir_config_domain_clock_set_timezone(klock, "CEST");
131 g_assert_cmpint(gvir_config_domain_clock_get_offset(klock), ==, GVIR_CONFIG_DOMAIN_CLOCK_TIMEZONE);
132 g_assert_cmpstr(gvir_config_domain_clock_get_timezone(klock), ==, "CEST");
133
134 pit = gvir_config_domain_timer_pit_new();
135 gvir_config_domain_timer_set_tick_policy(GVIR_CONFIG_DOMAIN_TIMER(pit),
136 GVIR_CONFIG_DOMAIN_TIMER_TICK_POLICY_DELAY);
137 gvir_config_domain_clock_add_timer(klock, GVIR_CONFIG_DOMAIN_TIMER(pit));
138 g_assert_cmpint(gvir_config_domain_timer_get_tick_policy(GVIR_CONFIG_DOMAIN_TIMER(pit)), ==, GVIR_CONFIG_DOMAIN_TIMER_TICK_POLICY_DELAY);
139 g_assert(gvir_config_domain_timer_get_present(GVIR_CONFIG_DOMAIN_TIMER(pit)) != FALSE);
140 g_object_unref(G_OBJECT(pit));
141
142 rtc = gvir_config_domain_timer_rtc_new();
143 gvir_config_domain_timer_set_tick_policy(GVIR_CONFIG_DOMAIN_TIMER(rtc),
144 GVIR_CONFIG_DOMAIN_TIMER_TICK_POLICY_CATCHUP);
145 gvir_config_domain_clock_add_timer(klock, GVIR_CONFIG_DOMAIN_TIMER(rtc));
146 g_assert_cmpint(gvir_config_domain_timer_get_tick_policy(GVIR_CONFIG_DOMAIN_TIMER(rtc)), ==, GVIR_CONFIG_DOMAIN_TIMER_TICK_POLICY_CATCHUP);
147 g_assert(gvir_config_domain_timer_get_present(GVIR_CONFIG_DOMAIN_TIMER(rtc)) != FALSE);
148 g_object_unref(G_OBJECT(rtc));
149
150 hpet = gvir_config_domain_timer_hpet_new();
151 gvir_config_domain_timer_set_present(GVIR_CONFIG_DOMAIN_TIMER(hpet), FALSE);
152 gvir_config_domain_clock_add_timer(klock, GVIR_CONFIG_DOMAIN_TIMER(hpet));
153 g_assert(gvir_config_domain_timer_get_present(GVIR_CONFIG_DOMAIN_TIMER(hpet)) == FALSE);
154 g_object_unref(G_OBJECT(hpet));
155
156 gvir_config_domain_set_clock(domain, klock);
157 g_object_unref(G_OBJECT(klock));
158
159 klock = gvir_config_domain_get_clock(domain);
160 g_assert(klock != NULL);
161 g_assert_cmpint(gvir_config_domain_clock_get_offset(klock), ==, GVIR_CONFIG_DOMAIN_CLOCK_TIMEZONE);
162 g_assert_cmpstr(gvir_config_domain_clock_get_timezone(klock), ==, "CEST");
163 g_object_unref(G_OBJECT(klock));
164 /* FIXME: gvir_config_domain_clock_get_timers() */
165
166 check_xml(domain, "gconfig-domain-clock.xml");
167
168 gvir_config_domain_set_clock(domain, NULL);
169 klock = gvir_config_domain_get_clock(domain);
170 g_assert(klock == NULL);
171
172 g_object_unref(G_OBJECT(domain));
173 }
174
175
176 static void domain_os_check_boot_devices(GVirConfigDomainOs *os)
177 {
178 GList *devices = NULL;
179 GList *it;
180
181 devices = gvir_config_domain_os_get_boot_devices(os);
182 it = devices;
183 g_assert_cmpint(GPOINTER_TO_INT(it->data), ==, GVIR_CONFIG_DOMAIN_OS_BOOT_DEVICE_CDROM);
184 it = it->next;
185 g_assert_cmpint(GPOINTER_TO_INT(it->data), ==, GVIR_CONFIG_DOMAIN_OS_BOOT_DEVICE_NETWORK);
186 g_assert(it->next == NULL);
187 g_list_free(devices);
188 }
189
190
191 static void test_domain_os(void)
192 {
193 GVirConfigDomain *domain;
194 GVirConfigDomainOs *os;
195 GList *devices = NULL;
196
197 domain = gvir_config_domain_new();
198 os = gvir_config_domain_os_new();
199 gvir_config_domain_os_set_os_type(os, GVIR_CONFIG_DOMAIN_OS_TYPE_HVM);
200 gvir_config_domain_os_set_arch(os, "x86_64");
201 g_assert_cmpint(gvir_config_domain_os_get_os_type(os), ==, GVIR_CONFIG_DOMAIN_OS_TYPE_HVM);
202 g_assert_cmpstr(gvir_config_domain_os_get_arch(os), ==, "x86_64");
203 devices = g_list_append(devices,
204 GINT_TO_POINTER(GVIR_CONFIG_DOMAIN_OS_BOOT_DEVICE_CDROM));
205 devices = g_list_append(devices,
206 GINT_TO_POINTER(GVIR_CONFIG_DOMAIN_OS_BOOT_DEVICE_NETWORK));
207 gvir_config_domain_os_set_boot_devices(os, devices);
208 g_list_free(devices);
209 devices = NULL;
210 domain_os_check_boot_devices(os);
211 gvir_config_domain_set_os(domain, os);
212 g_object_unref(G_OBJECT(os));
213
214 os = gvir_config_domain_get_os(domain);
215 g_assert(os != NULL);
216 g_assert_cmpstr(gvir_config_domain_os_get_arch(os), ==, "x86_64");
217 g_assert_cmpint(gvir_config_domain_os_get_os_type(os), ==, GVIR_CONFIG_DOMAIN_OS_TYPE_HVM);
218 domain_os_check_boot_devices(os);
219 g_object_unref(G_OBJECT(os));
220
221 check_xml(domain, "gconfig-domain-os.xml");
222
223 gvir_config_domain_set_os(domain, NULL);
224 os = gvir_config_domain_get_os(domain);
225 g_assert(os == NULL);
226 }
227
228
229 static void test_domain_cpu(void)
230 {
231 GVirConfigDomain *domain;
232 /* cpu node */
233 GVirConfigDomainCpu *cpu;
234
235 domain = gvir_config_domain_new();
236 cpu = gvir_config_domain_cpu_new();
237 gvir_config_domain_set_vcpus(domain, 3);
238
239 /* cpu/feature nodes */
240 GVirConfigDomainCpuFeature *feature;
241 GList *cpu_features = NULL;
242
243 gvir_config_domain_cpu_set_match_policy(cpu, GVIR_CONFIG_DOMAIN_CPU_MATCH_POLICY_STRICT);
244 gvir_config_domain_cpu_set_mode(cpu, GVIR_CONFIG_DOMAIN_CPU_MODE_HOST_PASSTHROUGH);
245 feature = gvir_config_domain_cpu_feature_new();
246 gvir_config_capabilities_cpu_feature_set_name(GVIR_CONFIG_CAPABILITIES_CPU_FEATURE(feature),
247 "foo");
248 gvir_config_domain_cpu_feature_set_policy(feature, GVIR_CONFIG_DOMAIN_CPU_FEATURE_POLICY_REQUIRE);
249 gvir_config_capabilities_cpu_add_feature(GVIR_CONFIG_CAPABILITIES_CPU(cpu),
250 GVIR_CONFIG_CAPABILITIES_CPU_FEATURE(feature));
251 g_object_unref(feature);
252
253 /* cpu/topology nodes */
254 GVirConfigCapabilitiesCpuTopology *topology;
255
256 topology = gvir_config_capabilities_cpu_topology_new();
257 gvir_config_capabilities_cpu_topology_set_cores(topology, 1);
258 gvir_config_capabilities_cpu_topology_set_sockets(topology, 2);
259 gvir_config_capabilities_cpu_topology_set_threads(topology, 3);
260 gvir_config_capabilities_cpu_set_topology(GVIR_CONFIG_CAPABILITIES_CPU(cpu),
261 topology);
262 g_object_unref(topology);
263 gvir_config_domain_set_cpu(domain, cpu);
264 g_object_unref(cpu);
265
266
267 cpu = gvir_config_domain_get_cpu(domain);
268 g_assert(cpu != NULL);
269 g_assert(GVIR_CONFIG_IS_CAPABILITIES_CPU(cpu));
270 g_assert_cmpint(gvir_config_domain_cpu_get_match_policy(cpu), ==, GVIR_CONFIG_DOMAIN_CPU_MATCH_POLICY_STRICT);
271 g_assert_cmpint(gvir_config_domain_cpu_get_mode(cpu), ==, GVIR_CONFIG_DOMAIN_CPU_MODE_HOST_PASSTHROUGH);
272
273 cpu_features = gvir_config_capabilities_cpu_get_features(GVIR_CONFIG_CAPABILITIES_CPU(cpu));
274 g_assert_cmpint(g_list_length(cpu_features), ==, 1);
275 g_assert(GVIR_CONFIG_IS_DOMAIN_CPU_FEATURE(cpu_features->data));
276 feature = GVIR_CONFIG_DOMAIN_CPU_FEATURE(cpu_features->data);
277 g_assert_cmpstr(gvir_config_capabilities_cpu_feature_get_name(GVIR_CONFIG_CAPABILITIES_CPU_FEATURE(feature)), ==, "foo");
278 g_assert_cmpint(gvir_config_domain_cpu_feature_get_policy(feature), ==, GVIR_CONFIG_DOMAIN_CPU_FEATURE_POLICY_REQUIRE);
279 g_list_free_full(cpu_features, g_object_unref);
280
281 topology = gvir_config_capabilities_cpu_get_topology(GVIR_CONFIG_CAPABILITIES_CPU(cpu));
282 g_assert(topology != NULL);
283 g_assert_cmpint(gvir_config_capabilities_cpu_topology_get_cores(topology), ==, 1);
284 g_assert_cmpint(gvir_config_capabilities_cpu_topology_get_sockets(topology), ==, 2);
285 g_assert_cmpint(gvir_config_capabilities_cpu_topology_get_threads(topology), ==, 3);
286 g_object_unref(topology);
287 g_object_unref(cpu);
288
289 check_xml(domain, "gconfig-domain-cpu.xml");
290
291 cpu = gvir_config_domain_get_cpu(domain);
292 gvir_config_capabilities_cpu_set_topology(GVIR_CONFIG_CAPABILITIES_CPU(cpu),
293 NULL);
294 topology = gvir_config_capabilities_cpu_get_topology(GVIR_CONFIG_CAPABILITIES_CPU(cpu));
295 g_assert(topology == NULL);
296 gvir_config_domain_set_cpu(domain, NULL);
297 cpu = gvir_config_domain_get_cpu(domain);
298 g_assert(cpu == NULL);
299 }
300
301
302 static void test_domain_device_disk(void)
303 {
304 GVirConfigDomain *domain;
305 GVirConfigDomainDisk *disk;
306 GVirConfigDomainDiskDriver *driver;
307 GList *disks;
308
309 domain = gvir_config_domain_new();
310
311 driver = gvir_config_domain_disk_driver_new();
312 gvir_config_domain_disk_driver_set_name(driver, "foo");
313 gvir_config_domain_disk_driver_set_format(driver, GVIR_CONFIG_DOMAIN_DISK_FORMAT_BOCHS);
314 gvir_config_domain_disk_driver_set_name(driver, "qemu");
315 gvir_config_domain_disk_driver_set_cache(driver, GVIR_CONFIG_DOMAIN_DISK_CACHE_NONE);
316 gvir_config_domain_disk_driver_set_format(driver, GVIR_CONFIG_DOMAIN_DISK_FORMAT_QCOW2);
317 gvir_config_domain_disk_driver_set_copy_on_read(driver, TRUE);
318
319 disk = gvir_config_domain_disk_new();
320 gvir_config_domain_disk_set_type(disk, GVIR_CONFIG_DOMAIN_DISK_FILE);
321 gvir_config_domain_disk_set_guest_device_type(disk, GVIR_CONFIG_DOMAIN_DISK_GUEST_DEVICE_DISK);
322 gvir_config_domain_disk_set_source(disk, "/tmp/foo/bar");
323 gvir_config_domain_disk_set_startup_policy (disk, GVIR_CONFIG_DOMAIN_DISK_STARTUP_POLICY_REQUISITE);
324 gvir_config_domain_disk_set_target_bus(disk, GVIR_CONFIG_DOMAIN_DISK_BUS_IDE);
325 gvir_config_domain_disk_set_target_dev(disk, "hda");
326 gvir_config_domain_disk_set_driver(disk, driver);
327 g_object_unref(G_OBJECT(driver));
328 gvir_config_domain_add_device(domain, GVIR_CONFIG_DOMAIN_DEVICE(disk));
329 g_object_unref(disk);
330
331 check_xml(domain, "gconfig-domain-device-disk.xml");
332
333 disks = get_devices_by_type(domain, GVIR_CONFIG_TYPE_DOMAIN_DISK);
334 g_assert_cmpint(g_list_length(disks), ==, 1);
335 g_assert(GVIR_CONFIG_IS_DOMAIN_DISK(disks->data));
336 disk = GVIR_CONFIG_DOMAIN_DISK(disks->data);
337 g_assert_cmpint(gvir_config_domain_disk_get_disk_type(disk), ==, GVIR_CONFIG_DOMAIN_DISK_FILE);
338 g_assert_cmpint(gvir_config_domain_disk_get_guest_device_type(disk), ==, GVIR_CONFIG_DOMAIN_DISK_GUEST_DEVICE_DISK);
339 g_assert_cmpint(gvir_config_domain_disk_get_startup_policy (disk), ==, GVIR_CONFIG_DOMAIN_DISK_STARTUP_POLICY_REQUISITE);
340 g_assert_cmpstr(gvir_config_domain_disk_get_source(disk), ==, "/tmp/foo/bar");
341 driver = gvir_config_domain_disk_get_driver(disk);
342 g_assert(driver != NULL);
343 g_assert_cmpint(gvir_config_domain_disk_driver_get_cache(driver), ==, GVIR_CONFIG_DOMAIN_DISK_CACHE_NONE);
344 g_assert_cmpstr(gvir_config_domain_disk_driver_get_name(driver), ==, "qemu");
345 g_assert_cmpint(gvir_config_domain_disk_driver_get_format(driver), ==, GVIR_CONFIG_DOMAIN_DISK_FORMAT_QCOW2);
346 g_assert(gvir_config_domain_disk_driver_get_copy_on_read(driver));
347 g_assert_cmpint(gvir_config_domain_disk_get_target_bus(disk), ==, GVIR_CONFIG_DOMAIN_DISK_BUS_IDE);
348 g_assert_cmpstr(gvir_config_domain_disk_get_target_dev(disk), ==, "hda");
349
350 gvir_config_domain_disk_set_driver(disk, NULL);
351 driver = gvir_config_domain_disk_get_driver(disk);
352 g_assert(driver == NULL);
353
354 g_list_free_full(disks, g_object_unref);
355
356 g_object_unref(G_OBJECT(domain));
357 }
358
359
360 static void test_domain_device_network(void)
361 {
362 GVirConfigDomain *domain;
363 GVirConfigDomainInterface *interface;
364
365 domain = gvir_config_domain_new();
366
367 interface = GVIR_CONFIG_DOMAIN_INTERFACE(gvir_config_domain_interface_network_new());
368 gvir_config_domain_interface_network_set_source(GVIR_CONFIG_DOMAIN_INTERFACE_NETWORK(interface),
369 "default");
370 gvir_config_domain_add_device(domain, GVIR_CONFIG_DOMAIN_DEVICE(interface));
371 g_object_unref(G_OBJECT(interface));
372
373 interface = GVIR_CONFIG_DOMAIN_INTERFACE(gvir_config_domain_interface_user_new());
374 gvir_config_domain_interface_set_ifname(interface, "eth0");
375 gvir_config_domain_interface_set_link_state(interface,
376 GVIR_CONFIG_DOMAIN_INTERFACE_LINK_STATE_UP);
377 gvir_config_domain_interface_set_mac(interface, "00:11:22:33:44:55");
378 gvir_config_domain_interface_set_model(interface, "foo");
379 gvir_config_domain_add_device(domain, GVIR_CONFIG_DOMAIN_DEVICE(interface));
380 g_object_unref(G_OBJECT(interface));
381
382 check_xml(domain, "gconfig-domain-device-network.xml");
383
384 g_object_unref(G_OBJECT(domain));
385 }
386
387
388 static void test_domain_device_input(void)
389 {
390 GVirConfigDomain *domain;
391 GVirConfigDomainInput *input;
392 GList *inputs;
393
394 domain = gvir_config_domain_new();
395
396 input = gvir_config_domain_input_new();
397 gvir_config_domain_input_set_device_type(input,
398 GVIR_CONFIG_DOMAIN_INPUT_DEVICE_TABLET);
399 gvir_config_domain_input_set_bus(input, GVIR_CONFIG_DOMAIN_INPUT_BUS_USB);
400 gvir_config_domain_add_device(domain, GVIR_CONFIG_DOMAIN_DEVICE(input));
401
402 check_xml(domain, "gconfig-domain-device-input.xml");
403
404 inputs = get_devices_by_type(domain, GVIR_CONFIG_TYPE_DOMAIN_INPUT);
405 g_assert_cmpint(g_list_length(inputs), ==, 1);
406 g_assert(GVIR_CONFIG_IS_DOMAIN_INPUT(inputs->data));
407 input = GVIR_CONFIG_DOMAIN_INPUT(inputs->data);
408 g_assert_cmpint(gvir_config_domain_input_get_device_type(input), ==, GVIR_CONFIG_DOMAIN_INPUT_DEVICE_TABLET);
409 g_assert_cmpint(gvir_config_domain_input_get_bus(input), ==, GVIR_CONFIG_DOMAIN_INPUT_BUS_USB);
410 g_list_free_full(inputs, g_object_unref);
411
412 g_object_unref(G_OBJECT(domain));
413 }
414
415
416 static void test_domain_device_graphics(void)
417 {
418 GVirConfigDomain *domain;
419 GVirConfigDomainGraphicsSpice *graphics;
420
421 domain = gvir_config_domain_new();
422 graphics = gvir_config_domain_graphics_spice_new();
423 gvir_config_domain_graphics_spice_set_port(graphics, 1234);
424 g_assert_cmpint(gvir_config_domain_graphics_spice_get_port(graphics), ==, 1234);
425
426 /* SPICE image compression configuration */
427 gvir_config_domain_graphics_spice_set_image_compression
428 (graphics, GVIR_CONFIG_DOMAIN_GRAPHICS_SPICE_IMAGE_COMPRESSION_AUTO_LZ);
429 g_assert_cmpint(gvir_config_domain_graphics_spice_get_image_compression(graphics), ==,
430 GVIR_CONFIG_DOMAIN_GRAPHICS_SPICE_IMAGE_COMPRESSION_AUTO_LZ);
431
432 gvir_config_domain_add_device(domain, GVIR_CONFIG_DOMAIN_DEVICE(graphics));
433 g_object_unref(G_OBJECT(graphics));
434
435 check_xml(domain, "gconfig-domain-device-graphics.xml");
436
437 g_object_unref(G_OBJECT(domain));
438 }
439
440
441 static void test_domain_device_video(void)
442 {
443 GVirConfigDomain *domain;
444
445 domain = gvir_config_domain_new();
446
447 /* video node */
448 GVirConfigDomainVideo *video;
449
450 video = gvir_config_domain_video_new();
451 gvir_config_domain_video_set_model(video,
452 GVIR_CONFIG_DOMAIN_VIDEO_MODEL_QXL);
453 gvir_config_domain_add_device(domain, GVIR_CONFIG_DOMAIN_DEVICE(video));
454 g_object_unref(G_OBJECT(video));
455
456 check_xml(domain, "gconfig-domain-device-video.xml");
457
458 g_object_unref(G_OBJECT(domain));
459 }
460
461
462 static void test_domain_device_sound(void)
463 {
464 GVirConfigDomain *domain;
465
466 domain = gvir_config_domain_new();
467 /* sound node */
468 GVirConfigDomainSound *sound;
469
470 sound = gvir_config_domain_sound_new();
471 gvir_config_domain_sound_set_model(sound,
472 GVIR_CONFIG_DOMAIN_SOUND_MODEL_ES1370);
473 gvir_config_domain_add_device(domain, GVIR_CONFIG_DOMAIN_DEVICE(sound));
474 g_object_unref(G_OBJECT(sound));
475
476 check_xml(domain, "gconfig-domain-device-sound.xml");
477
478 g_object_unref(G_OBJECT(domain));
479 }
480
481
482 static void test_domain_device_console(void)
483 {
484 GVirConfigDomain *domain;
485
486 domain = gvir_config_domain_new();
487 /* console node */
488 GVirConfigDomainConsole *console;
489 GVirConfigDomainChardevSourcePty *pty;
490
491 console = gvir_config_domain_console_new();
492 pty = gvir_config_domain_chardev_source_pty_new();
493 gvir_config_domain_chardev_set_source(GVIR_CONFIG_DOMAIN_CHARDEV(console),
494 GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE(pty));
495 g_object_unref(G_OBJECT(pty));
496 gvir_config_domain_add_device(domain, GVIR_CONFIG_DOMAIN_DEVICE(console));
497 g_object_unref(G_OBJECT(console));
498
499 check_xml(domain, "gconfig-domain-device-console.xml");
500
501 g_object_unref(G_OBJECT(domain));
502 }
503
504
505 static void test_domain_device_channel(void)
506 {
507 GVirConfigDomain *domain;
508
509 domain = gvir_config_domain_new();
510 /* spice agent channel */
511 GVirConfigDomainChannel *channel;
512 GVirConfigDomainChardevSourceSpiceVmc *spicevmc;
513 GVirConfigDomainChardevSourceSpicePort *spiceport;
514
515 channel = gvir_config_domain_channel_new();
516 gvir_config_domain_channel_set_target_type(channel,
517 GVIR_CONFIG_DOMAIN_CHANNEL_TARGET_VIRTIO);
518 spicevmc = gvir_config_domain_chardev_source_spicevmc_new();
519 gvir_config_domain_chardev_set_source(GVIR_CONFIG_DOMAIN_CHARDEV(channel),
520 GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE(spicevmc));
521 g_object_unref(G_OBJECT(spicevmc));
522 gvir_config_domain_add_device(domain, GVIR_CONFIG_DOMAIN_DEVICE(channel));
523 g_object_unref(G_OBJECT(channel));
524
525 channel = gvir_config_domain_channel_new();
526 gvir_config_domain_channel_set_target_type(channel,
527 GVIR_CONFIG_DOMAIN_CHANNEL_TARGET_VIRTIO);
528 gvir_config_domain_channel_set_target_name(channel,
529 "org.spice-space.webdav.0");
530 spiceport = gvir_config_domain_chardev_source_spiceport_new();
531 gvir_config_domain_chardev_source_spiceport_set_channel(spiceport, "org.spice-space.webdav.0");
532 gvir_config_domain_chardev_set_source(GVIR_CONFIG_DOMAIN_CHARDEV(channel),
533 GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE(spiceport));
534 g_object_unref(G_OBJECT(spiceport));
535 gvir_config_domain_add_device(domain, GVIR_CONFIG_DOMAIN_DEVICE(channel));
536 g_object_unref(G_OBJECT(channel));
537
538 check_xml(domain, "gconfig-domain-device-channel.xml");
539
540 g_object_unref(G_OBJECT(domain));
541 }
542
543
544 static GVirConfigDomainControllerUsb *
545 domain_device_usb_redir_create_usb_controller(GVirConfigDomainControllerUsbModel model,
546 guint indx,
547 GVirConfigDomainControllerUsb *master,
548 guint start_port,
549 guint domain, guint bus,
550 guint slot, guint function,
551 gboolean multifunction)
552 {
553 GVirConfigDomainControllerUsb *controller;
554 GVirConfigDomainAddressPci *address;
555
556 controller = gvir_config_domain_controller_usb_new();
557 gvir_config_domain_controller_usb_set_model(controller, model);
558 gvir_config_domain_controller_set_index(GVIR_CONFIG_DOMAIN_CONTROLLER(controller), indx);
559 if (master)
560 gvir_config_domain_controller_usb_set_master(controller, master, start_port);
561 address = gvir_config_domain_address_pci_new();
562 gvir_config_domain_address_pci_set_domain(address, domain);
563 gvir_config_domain_address_pci_set_bus(address, bus);
564 gvir_config_domain_address_pci_set_slot(address, slot);
565 gvir_config_domain_address_pci_set_function(address, function);
566 if (multifunction)
567 gvir_config_domain_address_pci_set_multifunction(address, multifunction);
568 gvir_config_domain_controller_set_address(GVIR_CONFIG_DOMAIN_CONTROLLER(controller),
569 GVIR_CONFIG_DOMAIN_ADDRESS(address));
570 g_object_unref(G_OBJECT(address));
571
572 return controller;
573 }
574
575
576 static GVirConfigDomainRedirdev *
577 domain_device_usb_redir_create_redirdev(guint bus, guint port)
578 {
579 GVirConfigDomainRedirdev *redirdev;
580 GVirConfigDomainAddressUsb *address;
581 GVirConfigDomainChardevSourceSpiceVmc *spicevmc;
582 gchar *port_str;
583
584 redirdev = gvir_config_domain_redirdev_new();
585 gvir_config_domain_redirdev_set_bus(redirdev,
586 GVIR_CONFIG_DOMAIN_REDIRDEV_BUS_USB);
587 spicevmc = gvir_config_domain_chardev_source_spicevmc_new();
588 gvir_config_domain_chardev_set_source(GVIR_CONFIG_DOMAIN_CHARDEV(redirdev),
589 GVIR_CONFIG_DOMAIN_CHARDEV_SOURCE(spicevmc));
590 g_object_unref(G_OBJECT(spicevmc));
591
592 address = gvir_config_domain_address_usb_new();
593 gvir_config_domain_address_usb_set_bus(address, bus);
594 port_str = g_strdup_printf("%d", port);
595 gvir_config_domain_address_usb_set_port(address, port_str);
596 g_free(port_str);
597 gvir_config_domain_redirdev_set_address(redirdev,
598 GVIR_CONFIG_DOMAIN_ADDRESS(address));
599 g_object_unref(G_OBJECT(address));
600
601 return redirdev;
602 }
603
604
605 static void test_domain_device_usb_redir(void)
606 {
607 GVirConfigDomain *domain;
608
609 domain = gvir_config_domain_new();
610 /* spice usb redirection */
611 GVirConfigDomainControllerUsb *ehci;
612 GVirConfigDomainControllerUsb *uhci1;
613 GVirConfigDomainControllerUsb *uhci2;
614 GVirConfigDomainControllerUsb *uhci3;
615 GVirConfigDomainRedirdev *redirdev;
616
617 ehci = domain_device_usb_redir_create_usb_controller(GVIR_CONFIG_DOMAIN_CONTROLLER_USB_MODEL_ICH9_EHCI1,
618 1, NULL, 0, 0, 0, 8, 7, FALSE);
619 gvir_config_domain_add_device(domain, GVIR_CONFIG_DOMAIN_DEVICE(ehci));
620 uhci1 = domain_device_usb_redir_create_usb_controller(GVIR_CONFIG_DOMAIN_CONTROLLER_USB_MODEL_ICH9_UHCI1,
621 7, ehci, 0, 0, 0, 8, 0, TRUE);
622 gvir_config_domain_add_device(domain, GVIR_CONFIG_DOMAIN_DEVICE(uhci1));
623 uhci2 = domain_device_usb_redir_create_usb_controller(GVIR_CONFIG_DOMAIN_CONTROLLER_USB_MODEL_ICH9_UHCI2,
624 7, ehci, 2, 0, 0, 8, 1, FALSE);
625 gvir_config_domain_add_device(domain, GVIR_CONFIG_DOMAIN_DEVICE(uhci2));
626 uhci3 = domain_device_usb_redir_create_usb_controller(GVIR_CONFIG_DOMAIN_CONTROLLER_USB_MODEL_ICH9_UHCI3,
627 7, ehci, 4, 0, 0, 8, 2, FALSE);
628 g_assert_cmpint(gvir_config_domain_controller_get_index(GVIR_CONFIG_DOMAIN_CONTROLLER(uhci1)), ==, 1);
629 gvir_config_domain_add_device(domain, GVIR_CONFIG_DOMAIN_DEVICE(uhci3));
630 g_object_unref(G_OBJECT(uhci1));
631 g_object_unref(G_OBJECT(uhci2));
632 g_object_unref(G_OBJECT(uhci3));
633 g_object_unref(G_OBJECT(ehci));
634
635
636 /* three redirdev channels allows to redirect a maximum of 3 USB
637 * devices at a time. The address which create_redirdev assigns to the
638 * redirdev object is optional
639 */
640 redirdev = domain_device_usb_redir_create_redirdev(0, 3);
641 gvir_config_domain_add_device(domain, GVIR_CONFIG_DOMAIN_DEVICE(redirdev));
642 g_object_unref(G_OBJECT(redirdev));
643 redirdev = domain_device_usb_redir_create_redirdev(0, 4);
644 gvir_config_domain_add_device(domain, GVIR_CONFIG_DOMAIN_DEVICE(redirdev));
645 g_object_unref(G_OBJECT(redirdev));
646 redirdev = domain_device_usb_redir_create_redirdev(0, 5);
647 gvir_config_domain_add_device(domain, GVIR_CONFIG_DOMAIN_DEVICE(redirdev));
648 g_object_unref(G_OBJECT(redirdev));
649
650 check_xml(domain, "gconfig-domain-device-usbredir.xml");
651
652 g_object_unref(G_OBJECT(domain));
653 }
654
655
656 int main(int argc, char **argv)
657 {
658 gvir_config_init(&argc, &argv);
659 g_test_init(&argc, &argv, NULL);
660
661 g_test_add_func("/libvirt-gconfig/domain", test_domain);
662 g_test_add_func("/libvirt-gconfig/domain-clock", test_domain_clock);
663 g_test_add_func("/libvirt-gconfig/domain-os", test_domain_os);
664 g_test_add_func("/libvirt-gconfig/domain-cpu", test_domain_cpu);
665 g_test_add_func("/libvirt-gconfig/domain-device-disk",
666 test_domain_device_disk);
667 g_test_add_func("/libvirt-gconfig/domain-device-network",
668 test_domain_device_network);
669 g_test_add_func("/libvirt-gconfig/domain-device-input",
670 test_domain_device_input);
671 g_test_add_func("/libvirt-gconfig/domain-device-graphics",
672 test_domain_device_graphics);
673 g_test_add_func("/libvirt-gconfig/domain-device-video",
674 test_domain_device_video);
675 g_test_add_func("/libvirt-gconfig/domain-device-sound",
676 test_domain_device_sound);
677 g_test_add_func("/libvirt-gconfig/domain-device-console",
678 test_domain_device_console);
679 g_test_add_func("/libvirt-gconfig/domain-device-channel",
680 test_domain_device_channel);
681 g_test_add_func("/libvirt-gconfig/domain-device-usb-redir",
682 test_domain_device_usb_redir);
683
684 return g_test_run();
685 }
0 <domain>
1 <clock offset="timezone" timezone="CEST">
2 <timer name="pit" tickpolicy="delay"/>
3 <timer name="rtc" tickpolicy="catchup"/>
4 <timer name="hpet" present="no"/>
5 </clock>
6 </domain>
0 <domain>
1 <vcpu>3</vcpu>
2 <cpu match="strict" mode="host-passthrough">
3 <feature name="foo" policy="require"/>
4 <topology cores="1" sockets="2" threads="3"/>
5 </cpu>
6 </domain>
0 <domain>
1 <devices>
2 <channel type="spicevmc">
3 <target type="virtio"/>
4 </channel>
5 <channel type="spiceport">
6 <target type="virtio" name="org.spice-space.webdav.0"/>
7 <source channel="org.spice-space.webdav.0"/>
8 </channel>
9 </devices>
10 </domain>
0 <domain>
1 <devices>
2 <console type="pty"/>
3 </devices>
4 </domain>
0 <domain>
1 <devices>
2 <disk type="file" device="disk">
3 <source file="/tmp/foo/bar" startupPolicy="requisite"/>
4 <target bus="ide" dev="hda"/>
5 <driver name="qemu" cache="none" type="qcow2" copy_on_read="on"/>
6 </disk>
7 </devices>
8 </domain>
0 <domain>
1 <devices>
2 <graphics type="spice" port="1234">
3 <image compression="auto_lz"/>
4 </graphics>
5 </devices>
6 </domain>
0 <domain>
1 <devices>
2 <input type="tablet" bus="usb"/>
3 </devices>
4 </domain>
0 <domain>
1 <devices>
2 <interface type="network">
3 <source network="default"/>
4 </interface>
5 <interface type="user">
6 <target dev="eth0"/>
7 <link state="up"/>
8 <mac address="00:11:22:33:44:55"/>
9 <model type="foo"/>
10 </interface>
11 </devices>
12 </domain>
0 <domain>
1 <devices>
2 <sound model="es1370"/>
3 </devices>
4 </domain>
0 <domain>
1 <devices>
2 <controller type="usb" model="ich9-ehci1" index="1">
3 <address type="pci" domain="0x0000" bus="0x00" slot="0x08" function="0x7"/>
4 </controller>
5 <controller type="usb" model="ich9-uhci1" index="1">
6 <master startport="0"/>
7 <address type="pci" domain="0x0000" bus="0x00" slot="0x08" function="0x0" multifunction="on"/>
8 </controller>
9 <controller type="usb" model="ich9-uhci2" index="1">
10 <master startport="2"/>
11 <address type="pci" domain="0x0000" bus="0x00" slot="0x08" function="0x1"/>
12 </controller>
13 <controller type="usb" model="ich9-uhci3" index="1">
14 <master startport="4"/>
15 <address type="pci" domain="0x0000" bus="0x00" slot="0x08" function="0x2"/>
16 </controller>
17 <redirdev type="spicevmc" bus="usb">
18 <address type="usb" bus="0x000" port="3"/>
19 </redirdev>
20 <redirdev type="spicevmc" bus="usb">
21 <address type="usb" bus="0x000" port="4"/>
22 </redirdev>
23 <redirdev type="spicevmc" bus="usb">
24 <address type="usb" bus="0x000" port="5"/>
25 </redirdev>
26 </devices>
27 </domain>
0 <domain>
1 <devices>
2 <video>
3 <model type="qxl"/>
4 </video>
5 </devices>
6 </domain>
0 <domain>
1 <os>
2 <type arch="x86_64">hvm</type>
3 <boot dev="cdrom"/>
4 <boot dev="network"/>
5 </os>
6 </domain>
0 <domain type="kvm">
1 <name>foo</name>
2 <memory unit="KiB">1234</memory>
3 <vcpu>3</vcpu>
4 <features>
5 <foo/>
6 <bar/>
7 <baz/>
8 </features>
9 <on_poweroff>restart</on_poweroff>
10 <metadata>
11 <ns:foo xmlns:ns="http://bar"/>
12 <ns:bar xmlns:ns="http://foo"/>
13 </metadata>
14 </domain>
1616 --library libvirt-glib-1.0 \
1717 $<
1818
19 libvirt-gobject-1.0.vapi: $(top_builddir)/libvirt-gobject/LibvirtGObject-1.0.gir libvirt-glib-1.0.vapi
19 libvirt-gobject-1.0.vapi: $(top_builddir)/libvirt-gobject/LibvirtGObject-1.0.gir libvirt-gconfig-1.0.vapi libvirt-glib-1.0.vapi
2020 $(AM_V_GEN)$(VAPIGEN) \
2121 --vapidir=$(builddir) \
2222 --pkg gobject-2.0 \
0 # Makefile.in generated by automake 1.13.2 from Makefile.am.
0 # Makefile.in generated by automake 1.13.4 from Makefile.am.
11 # @configure_input@
22
33 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
8080 subdir = vapi
8181 DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
8282 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
83 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
84 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
85 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
86 $(top_srcdir)/m4/lt~obsolete.m4 \
83 am__aclocal_m4_deps = $(top_srcdir)/m4/glibtests.m4 \
84 $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
85 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
86 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
8787 $(top_srcdir)/m4/manywarnings.m4 \
8888 $(top_srcdir)/m4/virt-compile-warnings.m4 \
8989 $(top_srcdir)/m4/virt-gettext.m4 $(top_srcdir)/m4/warnings.m4 \
183183 GIO2_LIBS = @GIO2_LIBS@
184184 GLIB2_CFLAGS = @GLIB2_CFLAGS@
185185 GLIB2_LIBS = @GLIB2_LIBS@
186 GLIB2_REQUIRED = @GLIB2_REQUIRED@
186187 GLIB_MKENUMS = @GLIB_MKENUMS@
187188 GMSGFMT = @GMSGFMT@
188189 GOBJECT2_CFLAGS = @GOBJECT2_CFLAGS@
189190 GOBJECT2_LIBS = @GOBJECT2_LIBS@
190 GOBJECT_INTROSPECTION_CFLAGS = @GOBJECT_INTROSPECTION_CFLAGS@
191 GOBJECT_INTROSPECTION_LIBS = @GOBJECT_INTROSPECTION_LIBS@
192191 GREP = @GREP@
193192 GTHREAD2_CFLAGS = @GTHREAD2_CFLAGS@
194193 GTHREAD2_LIBS = @GTHREAD2_LIBS@
195194 GTKDOC_CHECK = @GTKDOC_CHECK@
195 GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
196196 GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
197197 GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
198198 GTKDOC_MKPDF = @GTKDOC_MKPDF@
199199 GTKDOC_REBASE = @GTKDOC_REBASE@
200 G_IR_COMPILER = @G_IR_COMPILER@
201 G_IR_SCANNER = @G_IR_SCANNER@
202200 HTML_DIR = @HTML_DIR@
203201 INSTALL = @INSTALL@
204202 INSTALL_DATA = @INSTALL_DATA@
213211 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
214212 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
215213 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
214 INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
215 INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
216 INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
217 INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
218 INTROSPECTION_LIBS = @INTROSPECTION_LIBS@
219 INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@
220 INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
221 INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
216222 LD = @LD@
217223 LDFLAGS = @LDFLAGS@
218224 LIBOBJS = @LIBOBJS@
303309 includedir = @includedir@
304310 infodir = @infodir@
305311 install_sh = @install_sh@
312 installed_test_metadir = @installed_test_metadir@
313 installed_testdir = @installed_testdir@
306314 intltool__v_merge_options_ = @intltool__v_merge_options_@
307315 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
308316 libdir = @libdir@
565573 @WITH_VALA_TRUE@ --library libvirt-glib-1.0 \
566574 @WITH_VALA_TRUE@ $<
567575
568 @WITH_VALA_TRUE@libvirt-gobject-1.0.vapi: $(top_builddir)/libvirt-gobject/LibvirtGObject-1.0.gir libvirt-glib-1.0.vapi
576 @WITH_VALA_TRUE@libvirt-gobject-1.0.vapi: $(top_builddir)/libvirt-gobject/LibvirtGObject-1.0.gir libvirt-gconfig-1.0.vapi libvirt-glib-1.0.vapi
569577 @WITH_VALA_TRUE@ $(AM_V_GEN)$(VAPIGEN) \
570578 @WITH_VALA_TRUE@ --vapidir=$(builddir) \
571579 @WITH_VALA_TRUE@ --pkg gobject-2.0 \