Searched defs:rcPosix (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Runtime/r3/posix/
H A Dsemeventmulti-posix.cpp330 int rcPosix = pthread_mutex_lock(&pThis->Mutex); local
331 if (RT_UNLIKELY(rcPosix))
333 AssertMsgFailed(("Failed to lock event multi sem %p, rc=%d.\n", hEventMultiSem, rcPosix));
334 return RTErrConvertFromErrno(rcPosix);
348 rcPosix = pthread_mutex_unlock(&pThis->Mutex);
349 if (RT_UNLIKELY(rcPosix))
351 AssertMsgFailed(("Failed to unlock event multi sem %p, rc=%d.\n", hEventMultiSem, rcPosix));
352 return RTErrConvertFromErrno(rcPosix);
H A Dfileaio-posix.cpp478 int rcPosix = aio_cancel(pReqInt->AioCB.aio_fildes, &pReqInt->AioCB); local
480 if (rcPosix == AIO_CANCELED)
502 else if (rcPosix == AIO_ALLDONE)
504 else if (rcPosix == AIO_NOTCANCELED)
639 int rcPosix = 0; local
691 rcPosix = lio_listio(LIO_NOWAIT, (struct aiocb **)pahReqs, cReqsSubmit, NULL);
692 if (RT_UNLIKELY(rcPosix < 0))
706 rcPosix = aio_error(&pReqInt->AioCB);
708 if ((rcPosix != EINPROGRESS) && (rcPosix !
923 int rcPosix = aio_suspend((const struct aiocb * const *)pCtxInt->apReqs, local
[all...]
/vbox/src/VBox/ValidationKit/utils/usb/
H A DUsbTest.cpp295 int rcPosix = usbTestIoctl(iDevFd, 0, &Params); local
296 if (rcPosix < 0 && errno == EOPNOTSUPP)
302 if (rcPosix < 0)

Completed in 46 milliseconds