* docs/libvirt-api.xml docs/libvirt-refs.xml

docs/devhelp/libvirt-virterror.html docs/html/libvirt-virterror.html:
  regenerated the APIs and documentation.
* po/*: updated the polish translation, regenerated.
daniel
This commit is contained in:
Daniel Veillard 2009-02-27 14:30:51 +00:00
parent 2e187bcbca
commit 9bceeca83c
79 changed files with 126320 additions and 102924 deletions

View File

@ -1,3 +1,10 @@
Fri Feb 27 15:27:31 CET 2009 Daniel Veillard <veillard@redhat.com>
* docs/libvirt-api.xml docs/libvirt-refs.xml
docs/devhelp/libvirt-virterror.html docs/html/libvirt-virterror.html:
regenerated the APIs and documentation.
* po/*: updated the polish translation, regenerated.
Thu Feb 26 16:01:04 GMT 2009 Daniel P. Berrange <berrange@redhat.com>
* src/libvirt_private.syms, src/util.c, src/util.h: Add new

View File

@ -43,6 +43,7 @@ typedef enum <a href="#virErrorLevel">virErrorLevel</a>;
typedef enum <a href="#virErrorDomain">virErrorDomain</a>;
typedef enum <a href="#virErrorNumber">virErrorNumber</a>;
typedef struct _virError <a href="#virError">virError</a>;
void <a href="#virFreeError">virFreeError</a> (<a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> err);
int <a href="#virCopyLastError">virCopyLastError</a> (<a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> to);
void <a href="#virConnSetErrorFunc">virConnSetErrorFunc</a> (<a href="libvirt-libvirt.html#virConnectPtr">virConnectPtr</a> conn, <br/> void * userData, <br/> <a href="libvirt-virterror.html#virErrorFunc">virErrorFunc</a> handler);
void <a href="#virResetLastError">virResetLastError</a> (void);
@ -54,6 +55,7 @@ void <a href="#virDefaultErrorFunc">virDefaultErrorFunc</a> (<a href="libvirt-v
void <a href="#virSetErrorFunc">virSetErrorFunc</a> (void * userData, <br/> <a href="libvirt-virterror.html#virErrorFunc">virErrorFunc</a> handler);
int <a href="#virConnCopyLastError">virConnCopyLastError</a> (<a href="libvirt-libvirt.html#virConnectPtr">virConnectPtr</a> conn, <br/> <a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> to);
void <a href="#virConnResetLastError">virConnResetLastError</a> (<a href="libvirt-libvirt.html#virConnectPtr">virConnectPtr</a> conn);
<a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> <a href="#virSaveLastError">virSaveLastError</a> (void);
</pre>
</div>
<div class="refsect1" lang="en">
@ -206,6 +208,10 @@ void <a href="#virConnResetLastError">virConnResetLastError</a> (<a href="libvi
<div class="refsect2" lang="en"><h3><a name="virDefaultErrorFunc"/>virDefaultErrorFunc ()</h3><pre class="programlisting">void virDefaultErrorFunc (<a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> err)<br/>
</pre><p>Default routine reporting an error to stderr.</p>
<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>pointer to the error.</td></tr></tbody></table></div></div>
<hr/>
<div class="refsect2" lang="en"><h3><a name="virFreeError"/>virFreeError ()</h3><pre class="programlisting">void virFreeError (<a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> err)<br/>
</pre><p>Resets and frees the given error.</p>
<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>error to free</td></tr></tbody></table></div></div>
<hr/>
<div class="refsect2" lang="en"><h3><a name="virGetLastError"/>virGetLastError ()</h3><pre class="programlisting"><a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> virGetLastError (void)<br/>
</pre><p>Provide a pointer to the last error caught at the library level The error object is kept in thread local storage, so separate threads can safely access this concurrently.</p>
@ -218,6 +224,10 @@ void <a href="#virConnResetLastError">virConnResetLastError</a> (<a href="libvi
<div class="refsect2" lang="en"><h3><a name="virResetLastError"/>virResetLastError ()</h3><pre class="programlisting">void virResetLastError (void)<br/>
</pre><p>Reset the last error caught at the library level. The error object is kept in thread local storage, so separate threads can safely access this concurrently, only resetting their own error object.</p>
</div>
<hr/>
<div class="refsect2" lang="en"><h3><a name="virSaveLastError"/>virSaveLastError ()</h3><pre class="programlisting"><a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> virSaveLastError (void)<br/>
</pre><p>Save the last error into a new error object.</p>
<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the copied error or NULL if allocation failed. It is the caller's responsibility to free the error with virFreeError().</td></tr></tbody></table></div></div>
<hr/>
<div class="refsect2" lang="en"><h3><a name="virSetErrorFunc"/>virSetErrorFunc ()</h3><pre class="programlisting">void virSetErrorFunc (void * userData, <br/> <a href="libvirt-virterror.html#virErrorFunc">virErrorFunc</a> handler)<br/>
</pre><p>Set a library global error handling function, if @handler is NULL, it will reset to default printing on stderr. The error raised there are those for which no handler at the connection level could caught.</p>

View File

@ -17,9 +17,11 @@ void <a href="#virDefaultErrorFunc">virDefaultErrorFunc</a> (<a href="libvirt-v
typedef <a href="#virErrorFunc">virErrorFunc</a>
void <a href="#virErrorFunc">virErrorFunc</a> (void * userData, <br /> <a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> error)
void <a href="#virFreeError">virFreeError</a> (<a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> err)
<a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> <a href="#virGetLastError">virGetLastError</a> (void)
void <a href="#virResetError">virResetError</a> (<a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> err)
void <a href="#virResetLastError">virResetLastError</a> (void)
<a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> <a href="#virSaveLastError">virSaveLastError</a> (void)
void <a href="#virSetErrorFunc">virSetErrorFunc</a> (void * userData, <br /> <a href="libvirt-virterror.html#virErrorFunc">virErrorFunc</a> handler)
</pre><h2>Description</h2><h3><a name="types" id="types">Types</a></h3><h3><a name="virError" id="virError"><code>virError</code></a></h3><div class="api"><pre>struct virError{
</pre><table><tr><td>int</td><td>code</td><td> : The error code, a <a href="libvirt-virterror.html#virErrorNumber">virErrorNumber</a></td></tr><tr><td>int</td><td>domain</td><td> : What part of the library raised this error</td></tr><tr><td>char *</td><td>message</td><td> : human-readable informative error message</td></tr><tr><td><a href="libvirt-virterror.html#virErrorLevel">virErrorLevel</a></td><td>level</td><td> : how consequent is the error</td></tr><tr><td><a href="libvirt-libvirt.html#virConnectPtr">virConnectPtr</a></td><td>conn</td><td> : connection if available, deprecated see note above</td></tr><tr><td><a href="libvirt-libvirt.html#virDomainPtr">virDomainPtr</a></td><td>dom</td><td> : domain if available, deprecated see note above</td></tr><tr><td>char *</td><td>str1</td><td> : extra string information</td></tr><tr><td>char *</td><td>str2</td><td> : extra string information</td></tr><tr><td>char *</td><td>str3</td><td> : extra string information</td></tr><tr><td>int</td><td>int1</td><td> : extra number information</td></tr><tr><td>int</td><td>int2</td><td> : extra number information</td></tr><tr><td><a href="libvirt-libvirt.html#virNetworkPtr">virNetworkPtr</a></td><td>net</td><td> : network if available, deprecated see note above</td></tr></table><pre>
@ -37,9 +39,11 @@ void <a href="#virSetErrorFunc">virSetErrorFunc</a> (void * userData, <br />
</pre><p>Set a connection error handling function, if @handler is NULL it will reset to default which is to pass error back to the global library handler.</p><div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>conn</tt></i>:</span></td><td>pointer to the hypervisor connection</td></tr><tr><td><span class="term"><i><tt>userData</tt></i>:</span></td><td>pointer to the user data provided in the handler callback</td></tr><tr><td><span class="term"><i><tt>handler</tt></i>:</span></td><td>the function to get called in case of error or NULL</td></tr></tbody></table></div><h3><a name="virCopyLastError" id="virCopyLastError"><code>virCopyLastError</code></a></h3><pre class="programlisting">int virCopyLastError (<a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> to)<br />
</pre><p>Copy the content of the last error caught at the library level The error object is kept in thread local storage, so separate threads can safely access this concurrently. One will need to free the result with virResetError()</p><div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>to</tt></i>:</span></td><td>target to receive the copy</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if no error was found and the error code otherwise and -1 in case of parameter error.</td></tr></tbody></table></div><h3><a name="virDefaultErrorFunc" id="virDefaultErrorFunc"><code>virDefaultErrorFunc</code></a></h3><pre class="programlisting">void virDefaultErrorFunc (<a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> err)<br />
</pre><p>Default routine reporting an error to stderr.</p><div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>pointer to the error.</td></tr></tbody></table></div><h3><a name="virErrorFunc" id="virErrorFunc"><code>virErrorFunc</code></a></h3><pre class="programlisting">typedef void (*virErrorFunc ) (void * userData, <br /> <a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> error)
</pre><p>Signature of a function to use when there is an error raised by the library.</p><div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>userData</tt></i>:</span></td><td>user provided data for the error callback</td></tr><tr><td><span class="term"><i><tt>error</tt></i>:</span></td><td>the error being raised.</td></tr></tbody></table></div><br /><h3><a name="virGetLastError" id="virGetLastError"><code>virGetLastError</code></a></h3><pre class="programlisting"><a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> virGetLastError (void)<br />
</pre><p>Signature of a function to use when there is an error raised by the library.</p><div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>userData</tt></i>:</span></td><td>user provided data for the error callback</td></tr><tr><td><span class="term"><i><tt>error</tt></i>:</span></td><td>the error being raised.</td></tr></tbody></table></div><br /><h3><a name="virFreeError" id="virFreeError"><code>virFreeError</code></a></h3><pre class="programlisting">void virFreeError (<a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> err)<br />
</pre><p>Resets and frees the given error.</p><div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>error to free</td></tr></tbody></table></div><h3><a name="virGetLastError" id="virGetLastError"><code>virGetLastError</code></a></h3><pre class="programlisting"><a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> virGetLastError (void)<br />
</pre><p>Provide a pointer to the last error caught at the library level The error object is kept in thread local storage, so separate threads can safely access this concurrently.</p><div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the last error or NULL if none occurred.</td></tr></tbody></table></div><h3><a name="virResetError" id="virResetError"><code>virResetError</code></a></h3><pre class="programlisting">void virResetError (<a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> err)<br />
</pre><p>Reset the error being pointed to</p><div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>err</tt></i>:</span></td><td>pointer to the <a href="libvirt-virterror.html#virError">virError</a> to clean up</td></tr></tbody></table></div><h3><a name="virResetLastError" id="virResetLastError"><code>virResetLastError</code></a></h3><pre class="programlisting">void virResetLastError (void)<br />
</pre><p>Reset the last error caught at the library level. The error object is kept in thread local storage, so separate threads can safely access this concurrently, only resetting their own error object.</p><h3><a name="virSetErrorFunc" id="virSetErrorFunc"><code>virSetErrorFunc</code></a></h3><pre class="programlisting">void virSetErrorFunc (void * userData, <br /> <a href="libvirt-virterror.html#virErrorFunc">virErrorFunc</a> handler)<br />
</pre><p>Reset the last error caught at the library level. The error object is kept in thread local storage, so separate threads can safely access this concurrently, only resetting their own error object.</p><h3><a name="virSaveLastError" id="virSaveLastError"><code>virSaveLastError</code></a></h3><pre class="programlisting"><a href="libvirt-virterror.html#virErrorPtr">virErrorPtr</a> virSaveLastError (void)<br />
</pre><p>Save the last error into a new error object.</p><div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a pointer to the copied error or NULL if allocation failed. It is the caller's responsibility to free the error with virFreeError().</td></tr></tbody></table></div><h3><a name="virSetErrorFunc" id="virSetErrorFunc"><code>virSetErrorFunc</code></a></h3><pre class="programlisting">void virSetErrorFunc (void * userData, <br /> <a href="libvirt-virterror.html#virErrorFunc">virErrorFunc</a> handler)<br />
</pre><p>Set a library global error handling function, if @handler is NULL, it will reset to default printing on stderr. The error raised there are those for which no handler at the connection level could caught.</p><div class="variablelist"><table border="0"><col align="left" /><tbody><tr><td><span class="term"><i><tt>userData</tt></i>:</span></td><td>pointer to the user data provided in the handler callback</td></tr><tr><td><span class="term"><i><tt>handler</tt></i>:</span></td><td>the function to get called in case of error or NULL</td></tr></tbody></table></div></div></div><div id="footer"><p id="sponsor">
Sponsored by:<br /><a href="http://et.redhat.com/"><img src="../et.png" alt="Project sponsored by Red Hat Emerging Technology" /></a></p></div></body></html>

View File

@ -397,6 +397,7 @@
<exports symbol='virErrorNumber' type='typedef'/>
<exports symbol='virError' type='typedef'/>
<exports symbol='_virError' type='struct'/>
<exports symbol='virFreeError' type='function'/>
<exports symbol='virCopyLastError' type='function'/>
<exports symbol='virConnSetErrorFunc' type='function'/>
<exports symbol='virResetLastError' type='function'/>
@ -408,6 +409,7 @@
<exports symbol='virSetErrorFunc' type='function'/>
<exports symbol='virConnCopyLastError' type='function'/>
<exports symbol='virConnResetLastError' type='function'/>
<exports symbol='virSaveLastError' type='function'/>
</file>
</files>
<symbols>
@ -1332,6 +1334,11 @@ see note above'/>
<return type='void'/>
<arg name='opaque' type='void *' info=''/>
</functype>
<function name='virFreeError' file='virterror' module='virterror'>
<info>Resets and frees the given error.</info>
<return type='void'/>
<arg name='err' type='virErrorPtr' info='error to free'/>
</function>
<function name='virGetLastError' file='virterror' module='virterror'>
<info>Provide a pointer to the last error caught at the library level The error object is kept in thread local storage, so separate threads can safely access this concurrently.</info>
<return type='virErrorPtr' info='a pointer to the last error or NULL if none occurred.'/>
@ -1535,6 +1542,10 @@ see note above'/>
<info>Reset the last error caught at the library level. The error object is kept in thread local storage, so separate threads can safely access this concurrently, only resetting their own error object.</info>
<return type='void'/>
</function>
<function name='virSaveLastError' file='virterror' module='virterror'>
<info>Save the last error into a new error object.</info>
<return type='virErrorPtr' info='a pointer to the copied error or NULL if allocation failed. It is the caller&apos;s responsibility to free the error with virFreeError().'/>
</function>
<function name='virSetErrorFunc' file='virterror' module='virterror'>
<info>Set a library global error handling function, if @handler is NULL, it will reset to default printing on stderr. The error raised there are those for which no handler at the connection level could caught.</info>
<return type='void'/>

View File

@ -300,6 +300,7 @@
<reference name='virEventUpdateHandleFunc' href='html/libvirt-libvirt.html#virEventUpdateHandleFunc'/>
<reference name='virEventUpdateTimeoutFunc' href='html/libvirt-libvirt.html#virEventUpdateTimeoutFunc'/>
<reference name='virFreeCallback' href='html/libvirt-libvirt.html#virFreeCallback'/>
<reference name='virFreeError' href='html/libvirt-virterror.html#virFreeError'/>
<reference name='virGetLastError' href='html/libvirt-virterror.html#virGetLastError'/>
<reference name='virGetVersion' href='html/libvirt-libvirt.html#virGetVersion'/>
<reference name='virInitialize' href='html/libvirt-libvirt.html#virInitialize'/>
@ -342,6 +343,7 @@
<reference name='virNodeNumOfDevices' href='html/libvirt-libvirt.html#virNodeNumOfDevices'/>
<reference name='virResetError' href='html/libvirt-virterror.html#virResetError'/>
<reference name='virResetLastError' href='html/libvirt-virterror.html#virResetLastError'/>
<reference name='virSaveLastError' href='html/libvirt-virterror.html#virSaveLastError'/>
<reference name='virSchedParameter' href='html/libvirt-libvirt.html#virSchedParameter'/>
<reference name='virSchedParameterPtr' href='html/libvirt-libvirt.html#virSchedParameterPtr'/>
<reference name='virSchedParameterType' href='html/libvirt-libvirt.html#virSchedParameterType'/>
@ -707,6 +709,7 @@
<ref name='virEventUpdateHandleFunc'/>
<ref name='virEventUpdateTimeoutFunc'/>
<ref name='virFreeCallback'/>
<ref name='virFreeError'/>
<ref name='virGetLastError'/>
<ref name='virGetVersion'/>
<ref name='virInitialize'/>
@ -749,6 +752,7 @@
<ref name='virNodeNumOfDevices'/>
<ref name='virResetError'/>
<ref name='virResetLastError'/>
<ref name='virSaveLastError'/>
<ref name='virSchedParameter'/>
<ref name='virSchedParameterPtr'/>
<ref name='virSchedParameterType'/>
@ -840,6 +844,7 @@
<type name='virErrorPtr'>
<ref name='virConnGetLastError'/>
<ref name='virGetLastError'/>
<ref name='virSaveLastError'/>
</type>
<type name='virNetworkPtr'>
<ref name='virNetworkCreateXML'/>
@ -1069,6 +1074,7 @@
<ref name='virCopyLastError'/>
<ref name='virDefaultErrorFunc'/>
<ref name='virErrorFunc'/>
<ref name='virFreeError'/>
<ref name='virResetError'/>
</type>
<type name='virEventAddHandleFunc'>
@ -1588,9 +1594,11 @@
<ref name='virErrorLevel'/>
<ref name='virErrorNumber'/>
<ref name='virErrorPtr'/>
<ref name='virFreeError'/>
<ref name='virGetLastError'/>
<ref name='virResetError'/>
<ref name='virResetLastError'/>
<ref name='virSaveLastError'/>
<ref name='virSetErrorFunc'/>
</file>
</files>
@ -2089,6 +2097,9 @@
<ref name='virResetError'/>
<ref name='virResetLastError'/>
</word>
<word name='Resets'>
<ref name='virFreeError'/>
</word>
<word name='Result'>
<ref name='_virConnectCredential'/>
</word>
@ -2103,6 +2114,9 @@
</word>
</letter>
<letter name='S'>
<word name='Save'>
<ref name='virSaveLastError'/>
</word>
<word name='See'>
<ref name='virConnectGetType'/>
</word>
@ -2424,6 +2438,7 @@
<word name='allocation'>
<ref name='_virStoragePoolInfo'/>
<ref name='_virStorageVolInfo'/>
<ref name='virSaveLastError'/>
<ref name='virStorageVolGetInfo'/>
</word>
<word name='allowed'>
@ -2776,6 +2791,7 @@
<ref name='virNetworkRef'/>
<ref name='virNodeDeviceRef'/>
<ref name='virNodeGetCellsFreeMemory'/>
<ref name='virSaveLastError'/>
<ref name='virStoragePoolRef'/>
<ref name='virStorageVolRef'/>
</word>
@ -2993,6 +3009,9 @@
<word name='controlled'>
<ref name='virDomainMemoryPeek'/>
</word>
<word name='copied'>
<ref name='virSaveLastError'/>
</word>
<word name='copy'>
<ref name='VIR_COPY_CPUMAP'/>
<ref name='virConnCopyLastError'/>
@ -3450,6 +3469,7 @@
<ref name='virDomainSetVcpus'/>
</word>
<word name='failed'>
<ref name='virSaveLastError'/>
<ref name='virStoragePoolCreateXML'/>
<ref name='virStoragePoolDefineXML'/>
<ref name='virStoragePoolUndefine'/>
@ -3604,11 +3624,13 @@
<ref name='virDomainGetXMLDesc'/>
<ref name='virEventAddHandleFunc'/>
<ref name='virEventAddTimeoutFunc'/>
<ref name='virFreeError'/>
<ref name='virNetworkDestroy'/>
<ref name='virNetworkGetBridgeName'/>
<ref name='virNetworkGetXMLDesc'/>
<ref name='virNodeGetCellsFreeMemory'/>
<ref name='virNodeGetFreeMemory'/>
<ref name='virSaveLastError'/>
<ref name='virStoragePoolDelete'/>
<ref name='virStoragePoolDestroy'/>
<ref name='virStoragePoolFree'/>
@ -3627,6 +3649,9 @@
<word name='freeing'>
<ref name='virNodeDeviceFree'/>
</word>
<word name='frees'>
<ref name='virFreeError'/>
</word>
<word name='frequency'>
<ref name='_virNodeInfo'/>
</word>
@ -3705,6 +3730,7 @@
<ref name='virDomainLookupByUUID'/>
<ref name='virDomainLookupByUUIDString'/>
<ref name='virDomainMigrate'/>
<ref name='virFreeError'/>
<ref name='virNetworkDestroy'/>
<ref name='virNetworkLookupByName'/>
<ref name='virNetworkLookupByUUID'/>
@ -3984,6 +4010,7 @@
<word name='into'>
<ref name='VIR_COPY_CPUMAP'/>
<ref name='virConnectDomainEventRegister'/>
<ref name='virSaveLastError'/>
<ref name='virStoragePoolGetXMLDesc'/>
</word>
<word name='invalid'>
@ -4095,6 +4122,7 @@
<ref name='virGetLastError'/>
<ref name='virNodeDeviceFree'/>
<ref name='virResetLastError'/>
<ref name='virSaveLastError'/>
</word>
<word name='later'>
<ref name='VIR_COPY_CPUMAP'/>
@ -5168,6 +5196,9 @@
<word name='response'>
<ref name='_virConnectCredential'/>
</word>
<word name='responsibility'>
<ref name='virSaveLastError'/>
</word>
<word name='restart'>
<ref name='virDomainReboot'/>
</word>
@ -6192,6 +6223,9 @@
<word name='virEventTimeoutFreeFunc'>
<ref name='virEventRemoveTimeoutFunc'/>
</word>
<word name='virFreeError'>
<ref name='virSaveLastError'/>
</word>
<word name='virGetLastError'>
<ref name='virConnCopyLastError'/>
<ref name='virConnGetLastError'/>

3087
po/af.po

File diff suppressed because it is too large Load Diff

3087
po/am.po

File diff suppressed because it is too large Load Diff

3087
po/ar.po

File diff suppressed because it is too large Load Diff

3075
po/as.po

File diff suppressed because it is too large Load Diff

3087
po/be.po

File diff suppressed because it is too large Load Diff

3068
po/bg.po

File diff suppressed because it is too large Load Diff

3087
po/bn.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

3068
po/bs.po

File diff suppressed because it is too large Load Diff

3084
po/ca.po

File diff suppressed because it is too large Load Diff

3068
po/cs.po

File diff suppressed because it is too large Load Diff

3087
po/cy.po

File diff suppressed because it is too large Load Diff

3068
po/da.po

File diff suppressed because it is too large Load Diff

3075
po/de.po

File diff suppressed because it is too large Load Diff

3087
po/el.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

3068
po/es.po

File diff suppressed because it is too large Load Diff

3087
po/et.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

3087
po/fa.po

File diff suppressed because it is too large Load Diff

3068
po/fi.po

File diff suppressed because it is too large Load Diff

3078
po/fr.po

File diff suppressed because it is too large Load Diff

3087
po/gl.po

File diff suppressed because it is too large Load Diff

3072
po/gu.po

File diff suppressed because it is too large Load Diff

3087
po/he.po

File diff suppressed because it is too large Load Diff

3073
po/hi.po

File diff suppressed because it is too large Load Diff

3068
po/hr.po

File diff suppressed because it is too large Load Diff

3068
po/hu.po

File diff suppressed because it is too large Load Diff

3087
po/hy.po

File diff suppressed because it is too large Load Diff

3068
po/id.po

File diff suppressed because it is too large Load Diff

3087
po/is.po

File diff suppressed because it is too large Load Diff

3073
po/it.po

File diff suppressed because it is too large Load Diff

3072
po/ja.po

File diff suppressed because it is too large Load Diff

3087
po/ka.po

File diff suppressed because it is too large Load Diff

3072
po/kn.po

File diff suppressed because it is too large Load Diff

3068
po/ko.po

File diff suppressed because it is too large Load Diff

3087
po/ku.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

3087
po/lo.po

File diff suppressed because it is too large Load Diff

3087
po/lt.po

File diff suppressed because it is too large Load Diff

3087
po/lv.po

File diff suppressed because it is too large Load Diff

3068
po/mk.po

File diff suppressed because it is too large Load Diff

3072
po/ml.po

File diff suppressed because it is too large Load Diff

3072
po/mr.po

File diff suppressed because it is too large Load Diff

3098
po/ms.po

File diff suppressed because it is too large Load Diff

3087
po/my.po

File diff suppressed because it is too large Load Diff

3096
po/nb.po

File diff suppressed because it is too large Load Diff

3224
po/nl.po

File diff suppressed because it is too large Load Diff

3087
po/nn.po

File diff suppressed because it is too large Load Diff

3087
po/nso.po

File diff suppressed because it is too large Load Diff

3072
po/or.po

File diff suppressed because it is too large Load Diff

3068
po/pa.po

File diff suppressed because it is too large Load Diff

4166
po/pl.po

File diff suppressed because it is too large Load Diff

3068
po/pt.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

3087
po/ro.po

File diff suppressed because it is too large Load Diff

3076
po/ru.po

File diff suppressed because it is too large Load Diff

3087
po/si.po

File diff suppressed because it is too large Load Diff

3087
po/sk.po

File diff suppressed because it is too large Load Diff

3087
po/sl.po

File diff suppressed because it is too large Load Diff

3087
po/sq.po

File diff suppressed because it is too large Load Diff

3076
po/sr.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

3068
po/sv.po

File diff suppressed because it is too large Load Diff

3072
po/ta.po

File diff suppressed because it is too large Load Diff

3072
po/te.po

File diff suppressed because it is too large Load Diff

3087
po/th.po

File diff suppressed because it is too large Load Diff

3087
po/tr.po

File diff suppressed because it is too large Load Diff

3068
po/uk.po

File diff suppressed because it is too large Load Diff

3087
po/ur.po

File diff suppressed because it is too large Load Diff

3087
po/vi.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

3087
po/zu.po

File diff suppressed because it is too large Load Diff