Lines Matching defs:cMillies

384  * If it's desired to poll on the completion of the request set cMillies
391 * @returns VERR_TIMEOUT if cMillies was reached without the packet being completed.
400 * @param cMillies Number of milliseconds to wait for the request to
410 VMMR3DECL(int) VMR3ReqCallU(PUVM pUVM, VMCPUID idDstCpu, PVMREQ *ppReq, RTMSINTERVAL cMillies, uint32_t fFlags,
415 int rc = VMR3ReqCallVU(pUVM, idDstCpu, ppReq, cMillies, fFlags, pfnFunction, cArgs, va);
424 * If it's desired to poll on the completion of the request set cMillies
431 * @returns VERR_TIMEOUT if cMillies was reached without the packet being completed.
440 * @param cMillies Number of milliseconds to wait for the request to
458 VMMR3DECL(int) VMR3ReqCallVU(PUVM pUVM, VMCPUID idDstCpu, PVMREQ *ppReq, RTMSINTERVAL cMillies, uint32_t fFlags,
461 LogFlow(("VMR3ReqCallV: idDstCpu=%u cMillies=%d fFlags=%#x pfnFunction=%p cArgs=%d\n", idDstCpu, cMillies, fFlags, pfnFunction, cArgs));
498 rc = VMR3ReqQueue(pReq, cMillies);
793 * If it's desired to poll on the completion of the request set cMillies
799 * @returns VERR_TIMEOUT if cMillies was reached without the packet being completed.
802 * @param cMillies Number of milliseconds to wait for the request to
806 VMMR3DECL(int) VMR3ReqQueue(PVMREQ pReq, RTMSINTERVAL cMillies)
808 LogFlow(("VMR3ReqQueue: pReq=%p cMillies=%d\n", pReq, cMillies));
842 rc = VMR3ReqQueue(pReq, cMillies);
856 rc = VMR3ReqQueue(pReq, cMillies);
897 rc = VMR3ReqWait(pReq, cMillies);
932 rc = VMR3ReqWait(pReq, cMillies);
954 * @returns VERR_TIMEOUT if cMillies was reached without the packet being completed.
957 * @param cMillies Number of milliseconds to wait.
960 VMMR3DECL(int) VMR3ReqWait(PVMREQ pReq, RTMSINTERVAL cMillies)
962 LogFlow(("VMR3ReqWait: pReq=%p cMillies=%d\n", pReq, cMillies));
992 if (cMillies != RT_INDEFINITE_WAIT)
993 rc = RTSemEventWait(pReq->EventSem, cMillies);