Searched defs:rcThread (Results 1 - 15 of 15) sorted by relevance

/vbox/src/VBox/Runtime/testcase/
H A DtstSemPingPong.cpp142 int rcThread; local
143 rc = RTThreadWait(hThread, 5000, &rcThread);
H A DtstRTR0SemMutexDriver.cpp137 int rcThread = VINF_SUCCESS; local
138 int rc2 = RTThreadWait(ahThreads[i], 3600*1000, &rcThread);
142 if (RT_FAILURE(rcThread) && RT_SUCCESS(rc2))
143 rc = rcThread;
H A DtstRTLockValidator.cpp310 int rcThread; local
312 RTTEST_CHECK_RC_OK(g_hTest, rc2 = RTThreadWait(g_ahThreads[i], cMillies, &rcThread));
315 if (fStopOnError && (RT_FAILURE(rc2) || RT_FAILURE(rcThread)))
/vbox/src/VBox/HostDrivers/Support/testcase/
H A DtstSupSem.cpp192 int rcThread = VINF_SUCCESS; local
193 RTTESTI_CHECK_RC(RTThreadWait(hThread, 60*1000, &rcThread), VINF_SUCCESS);
194 RTTESTI_CHECK_RC(rcThread, VERR_INTERRUPTED);
204 rcThread = VINF_SUCCESS;
205 RTTESTI_CHECK_RC(RTThreadWait(hThread, 60*1000, &rcThread), VINF_SUCCESS);
206 RTTESTI_CHECK_RC(rcThread, VERR_INTERRUPTED);
218 rcThread = VINF_SUCCESS;
219 RTTESTI_CHECK_RC(RTThreadWait(hThread, 60*1000, &rcThread), VINF_SUCCESS);
220 RTTESTI_CHECK_RC(rcThread, VERR_INTERRUPTED);
230 rcThread
[all...]
/vbox/src/VBox/ValidationKit/utils/TestExecServ/
H A DTestExecServiceTcp.cpp237 int rcThread; local
238 int rc2 = RTThreadWait(g_hThreadTcpConnect, cMillies, &rcThread);
242 rcRet = rcThread;
248 int rcThread; local
249 int rc2 = RTThreadWait(g_hThreadTcpServer, cMillies, &rcThread);
254 rcRet = rcThread;
H A DTestExecService.cpp2384 int rcThread = VINF_SUCCESS; local
2386 rcThread = RTThreadWait(pTxsExec->hThreadWaiter, 5000, NULL);
2387 if (RT_SUCCESS(rcThread))
/vbox/src/VBox/Devices/Serial/
H A DDrvHostSerial.cpp607 int rcThread = VINF_SUCCESS; local
647 rcThread = RTErrConvertFromErrno(err);
648 LogRel(("HostSerial#%d: select failed with errno=%d / %Rrc, terminating the worker thread.\n", pDrvIns->iInstance, err, rcThread));
667 rcThread = rc;
678 rcThread = rc;
707 rcThread = RTErrConvertFromErrno(err);
708 LogRel(("HostSerial#%d: poll failed with errno=%d / %Rrc, terminating the worker thread.\n", pDrvIns->iInstance, err, rcThread));
730 rcThread = rc;
758 rcThread = RTErrConvertFromWin32(dwRet);
759 LogRel(("HostSerial#%d: Wait failed with error %Rrc; terminating the worker thread.\n", pDrvIns->iInstance, rcThread));
[all...]
/vbox/src/VBox/Additions/WINNT/VBoxTray/
H A DVBoxDnD.cpp137 int rcThread = VERR_WRONG_ORDER; local
138 int rc = RTThreadWait(hThread, 60 * 1000 /* Timeout in ms */, &rcThread);
140 rc, rcThread));
/vbox/src/VBox/VMM/testcase/
H A DtstPDMAsyncCompletionStress.cpp527 int rcThread; local
536 rc = PDMR3ThreadDestroy(pTestFile->hThread, &rcThread);
538 RTPrintf("Thread terminated with status code rc=%Rrc\n", rcThread);
/vbox/src/VBox/Main/src-server/
H A DPerformance.cpp419 int rcThread = 0; local
426 rc = RTThreadWait(mThread, 1000 /* 1 sec */, &rcThread);
428 this, __PRETTY_FUNCTION__, rc, rcThread));
/vbox/src/VBox/Devices/USB/
H A DVUSBDevice.cpp1200 int rcThread = VINF_SUCCESS; local
1205 rc = RTThreadWait(pDev->hUrbIoThread, RT_INDEFINITE_WAIT, &rcThread);
1207 rc = rcThread;
/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServiceControlProcess.cpp249 int rcThread; local
251 rc = RTThreadWait(pProcess->Thread, msTimeout, &rcThread);
260 pProcess->uPID, rcThread);
262 *pRc = rcThread;
H A DVBoxServiceControlSession.cpp2189 int rcThread; local
2190 rc = RTThreadWait(pThread->Thread, uTimeoutMS, &rcThread);
2198 pThread->StartupInfo.uSessionID, rcThread);
/vbox/src/VBox/GuestHost/SharedClipboard/
H A Dx11-clipboard.cpp900 int rc, rcThread; local
914 rc = RTThreadWait(pCtx->thread, 1000, &rcThread);
920 rcThread = VINF_SUCCESS;
923 AssertRC(rcThread);
/vbox/src/VBox/Devices/Storage/
H A DDevAHCI.cpp7870 int rcThread; local
7872 rc = PDMR3ThreadDestroy(pAhciPort->pAsyncIOThread, &rcThread);
7873 if (RT_FAILURE(rc) || RT_FAILURE(rcThread))
7874 AssertMsgFailed(("%s Failed to destroy async IO thread rc=%Rrc rcThread=%Rrc\n", __FUNCTION__, rc, rcThread));

Completed in 131 milliseconds