Searched refs:iRc (Results 1 - 21 of 21) sorted by relevance

/vbox/include/VBox/com/
H A Derrorprint.h173 LONG iRc; \
174 rc = progress->COMGETTER(ResultCode)(&iRc); \
175 if (FAILED(iRc)) \
177 rc = iRc; \
179 com::GlueHandleComErrorProgress(progress, __PRETTY_FUNCTION__, iRc, __FILE__, __LINE__); \
191 LONG iRc; \
192 rc = progress->COMGETTER(ResultCode)(&iRc); \
193 if (FAILED(iRc)) \
195 rc = iRc; \
197 com::GlueHandleComErrorProgress(progress, __PRETTY_FUNCTION__, iRc, __FILE_
[all...]
/vbox/src/VBox/ValidationKit/tests/unittests/
H A DtdUnitTest1.py477 iRc = utils.sudoProcessCall(asArgs, shell = False, close_fds = False);
481 reporter.log('Exit code [sudo]: %s (%s)' % (iRc, asArgs));
482 return iRc is 0;
630 iRc = 1023;
635 iRc = oChild.wait();
638 iRc = 0;
658 if iRc == 0:
659 reporter.log('*** %s: exit code %d' % (sFullPath, iRc));
662 elif iRc == 4: # RTEXITCODE_SKIPPED
663 reporter.log('*** %s: exit code %d (RTEXITCODE_SKIPPED)' % (sFullPath, iRc));
[all...]
/vbox/src/VBox/Main/src-server/
H A DHostPower.cpp176 LONG iRc; local
177 progress->COMGETTER(ResultCode)(&iRc);
178 rc = iRc;
H A DApplianceImpl.cpp1086 LONG iRc; local
1087 rc = pProgressAsync->COMGETTER(ResultCode)(&iRc);
1093 if (FAILED(iRc))
1098 HRESULT rc2 = setError(iRc, pcsz);
H A DMachineImplCloneVM.cpp1234 LONG iRc; local
1235 rc = progress2->COMGETTER(ResultCode)(&iRc);
1239 if (FAILED(iRc))
H A DMachineImpl.cpp5269 LONG iRc; local
5270 rc = pProgress2->COMGETTER(ResultCode)(&iRc);
5274 if (FAILED(iRc))
/vbox/src/VBox/Frontends/VBoxAutostart/
H A DVBoxAutostartStart.cpp154 LONG iRc; local
155 CHECK_ERROR(progress, COMGETTER(ResultCode)(&iRc));
158 if (FAILED(iRc))
H A DVBoxAutostart-posix.cpp221 LONG iRc = E_FAIL; local
222 hrc = progress->COMGETTER(ResultCode)(&iRc);
225 if (SUCCEEDED(iRc))
232 RTStrmPrintf(g_pStdErr, "Progress state: %Rhrc\n", iRc);
234 hrc = iRc;
H A DVBoxAutostart-win.cpp133 LONG iRc = E_FAIL; local
134 hrc = progress->COMGETTER(ResultCode)(&iRc);
137 hrc = iRc;
/vbox/src/VBox/ValidationKit/testdriver/
H A Dvboxinstaller.py340 iRc = utils.processCall(asArgs, shell = False, close_fds = False);
344 reporter.log('Exit code: %s (%s)' % (iRc, asArgs));
345 return iRc is 0;
355 iRc = 0;
357 iRc = utils.sudoProcessCall(asArgs, shell = False, close_fds = False);
361 reporter.log('Exit code [sudo]: %s (%s)' % (iRc, asArgs));
362 return (iRc is 0, iRc);
743 fRc2, iRc = self._sudoExecuteSync(asArgs);
745 if iRc
[all...]
H A Dtxsclient.py1817 iRc = e[0];
1825 iRc = oSocket.getsockopt(socket.SOL_SOCKET, socket.SO_ERROR);
1826 rc = iRc == 0;
1828 iRc = e[0];
1830 iRc = -42;
1835 elif iRc == errno.ECONNREFUSED \
1836 or iRc == errno.EHOSTUNREACH \
1837 or iRc == errno.EINTR \
1838 or iRc == errno.ENETDOWN \
1839 or iRc
[all...]
H A Dbase.py1536 def onExit(self, iRc):
1540 iRc is the exit code or -1 in the case of an unhandled exception.
1543 _ = iRc;
1566 iRc = self.innerMain(asArgs);
1573 self.onExit(iRc);
1574 return iRc;
H A Dvboxwrappers.py287 iRc = self.o.resultCode;
290 iRc = -1;
291 return iRc;
300 iRc = -1;
307 iRc = -2;
310 iRc = oErrInfo.resultCode;
313 return iRc;
H A Dvbox.py1600 iRc = self.oTestVmSet.parseOption(asArgs, iArg);
1601 if iRc != iArg:
1602 return iRc;
1687 def onExit(self, iRc):
1692 reporter.log('*** Shutting down the VBox API... (iRc=%s)' % (iRc,));
1697 return base.TestDriver.onExit(self, iRc);
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManage.cpp215 LONG iRc = E_FAIL; local
216 hrc = progress->COMGETTER(ResultCode)(&iRc);
219 if (SUCCEEDED(iRc))
227 RTStrmPrintf(g_pStdErr, "Progress state: %Rhrc\n", iRc);
229 hrc = iRc;
H A DVBoxManageMisc.cpp605 LONG iRc; local
606 CHECK_ERROR(progress, COMGETTER(ResultCode)(&iRc));
616 rc = iRc;
/vbox/src/VBox/ValidationKit/testboxscript/
H A Dtestboxtasks.py470 iRc = oChild.poll();
471 if iRc is not None:
472 self._log('Child doing "%s" completed with exit code %d' % (oChild.sTestBoxScriptAction, iRc));
478 if iRc == constants.rtexitcode.SKIPPED:
480 if iRc != constants.rtexitcode.SUCCESS:
557 iRc = oChild.poll();
558 if iRc is not None:
559 self._log('Child doing "%s" aborted with exit code %d' % (oChild.sTestBoxScriptAction, iRc));
H A Dtestboxscript_real.py690 iRc = utils.sudoProcessCall(['/bin/rm', '-Rf', sFullName])
692 iRc = utils.sudoProcessCall(['/bin/rm', '-f', sFullName])
693 if iRc != 0:
694 raise Exception('exit code %s' % iRc);
/vbox/src/VBox/ValidationKit/tests/additions/
H A DtdAddGuestCtrl.py663 iRc = oProgress.waitForOperation(0, fIgnoreErrors = True);
664 if iRc != 0:
690 iRc = oProgress.waitForOperation(0, fIgnoreErrors = True);
691 if iRc != 0:
3131 iRc = oProgress.waitForOperation(0, fIgnoreErrors = True);
3132 if iRc != 0:
/vbox/src/VBox/Frontends/VBoxSDL/
H A DVBoxSDL.cpp1519 LONG iRc; local
1520 rc = progress->COMGETTER(ResultCode)(&iRc);
1523 if (FAILED(iRc))
/vbox/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/
H A DVBoxDispD3D.cpp645 int iRc = 0; local
650 iRc = memcmp(pLockInfo->pBits, pAlloc->pvMem, pAlloc->SurfDesc.cbSize);
651 Assert(!iRc);
678 iRc = memcmp(pvDst, pvSrc, pitch);
679 Assert(!iRc);

Completed in 7171 milliseconds