Searched refs:Rc (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Runtime/r3/win/
H A Dfileaio-win.cpp107 int Rc; member in struct:RTFILEAIOREQINTERNAL
264 rc = pReqInt->Rc;
378 pReqInt->Rc = rc;
465 pReqInt->Rc = VINF_SUCCESS;
469 pReqInt->Rc = RTErrConvertFromWin32(errCode);
470 if (pReqInt->Rc == VERR_UNRESOLVED_ERROR)
471 LogRel(("AIO/win: Request %#p returned rc=%Rrc (native %u\n)", pReqInt, pReqInt->Rc, errCode));
/vbox/src/VBox/Runtime/r3/freebsd/
H A Dfileaio-freebsd.cpp96 int Rc; member in struct:RTFILEAIOREQINTERNAL
211 pReqInt->Rc = VERR_FILE_AIO_IN_PROGRESS;
277 pReqInt->Rc = VERR_FILE_AIO_CANCELED;
297 if ( (RT_SUCCESS(pReqInt->Rc))
301 return pReqInt->Rc;
435 pReqInt->Rc = RTErrConvertFromErrno(rcBSD);
473 pReqInt->Rc = RTErrConvertFromErrno(errno);
475 return pReqInt->Rc;
571 pReqInt->Rc = RTErrConvertFromErrno(cbTransfered);
576 pReqInt->Rc
[all...]
/vbox/src/VBox/Runtime/r3/posix/
H A Dfileaio-posix.cpp101 int Rc; member in struct:RTFILEAIOREQINTERNAL
417 pReqInt->Rc = VERR_FILE_AIO_IN_PROGRESS;
454 pReqInt->Rc = VERR_FILE_AIO_IN_PROGRESS;
498 pReqInt->Rc = VERR_FILE_AIO_CANCELED;
519 if ( (RT_SUCCESS(pReqInt->Rc))
523 return pReqInt->Rc;
733 pReqInt->Rc = RTErrConvertFromErrno(errno);
735 pReqInt->Rc = RTErrConvertFromErrno(rcPosix);
793 pReqInt->Rc = rc;
953 pReq->Rc
[all...]
/vbox/src/VBox/Runtime/r3/linux/
H A Dfileaio-linux.cpp207 int Rc; member in struct:RTFILEAIOREQINTERNAL
456 pReqInt->Rc = VERR_FILE_AIO_CANCELED;
475 && RT_SUCCESS(pReqInt->Rc))
478 return pReqInt->Rc;
637 pReqInt->Rc = rc;
734 pReqInt->Rc = RTErrConvertFromErrno(-aPortEvents[i].rc); /* Convert to positive value. */
737 pReqInt->Rc = VINF_SUCCESS;
/vbox/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/
H A DVBoxD3DIf.cpp816 VBOXWDDMDISP_RESOURCE Rc; local
817 vboxWddmResourceInit(&Rc, 1);
819 Rc.RcDesc.enmFormat = D3DDDIFMT_A8R8G8B8;
820 Rc.RcDesc.enmPool = D3DDDIPOOL_LOCALVIDMEM;
821 Rc.RcDesc.enmMultisampleType = D3DDDIMULTISAMPLE_NONE;
822 Rc.RcDesc.MultisampleQuality = 0;
823 PVBOXWDDMDISP_ALLOCATION pAlloc = &Rc.aAllocations[0];
830 VBoxD3DIfFillPresentParams(&Params.Base, &Rc, 2);

Completed in 89 milliseconds