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

/vbox/src/VBox/Runtime/generic/
H A Dsemrw-lockless-generic.cpp54 /** Indicates whether hEvtRead needs resetting. */
81 RTSEMEVENTMULTI hEvtRead; member in struct:RTSEMRWINTERNAL
129 int rc = RTSemEventMultiCreate(&pThis->hEvtRead);
171 RTSemEventMultiDestroy(pThis->hEvtRead);
195 RTSEMEVENTMULTI hEvtRead; local
196 ASMAtomicXchgHandle(&pThis->hEvtRead, NIL_RTSEMEVENTMULTI, &hEvtRead);
197 int rc = RTSemEventMultiDestroy(hEvtRead);
349 rc = RTSemEventMultiWaitNoResume(pThis->hEvtRead, cMillies);
351 rc = RTSemEventMultiWait(pThis->hEvtRead, cMillie
[all...]
H A Dcritsectrw-generic.cpp74 pThis->hEvtRead = NIL_RTSEMEVENTMULTI;
114 rc = RTSemEventMultiCreate(&pThis->hEvtRead);
123 RTSemEventMultiDestroy(pThis->hEvtRead);
264 rc = RTSemEventMultiWait(pThis->hEvtRead, RT_INDEFINITE_WAIT);
311 int rc = RTSemEventMultiReset(pThis->hEvtRead);
741 int rc = RTSemEventMultiSignal(pThis->hEvtRead);
905 RTSEMEVENTMULTI hEvtRead = pThis->hEvtRead;
906 pThis->hEvtRead = NIL_RTSEMEVENTMULTI;
909 int rc2 = RTSemEventMultiDestroy(hEvtRead); AssertR
[all...]
/vbox/src/VBox/VMM/VMMR3/
H A DPDMCritSect.cpp240 AssertCompile(sizeof(SUPSEMEVENTMULTI) == sizeof(pCritSect->Core.hEvtRead));
241 rc = SUPSemEventMultiCreate(pVM->pSession, (PSUPSEMEVENT)&pCritSect->Core.hEvtRead);
309 SUPSemEventMultiClose(pVM->pSession, (SUPSEMEVENT)pCritSect->Core.hEvtRead);
582 SUPSEMEVENTMULTI hEvtRead = (SUPSEMEVENTMULTI)pCritSect->Core.hEvtRead; local
583 pCritSect->Core.hEvtRead = NIL_RTSEMEVENTMULTI;
584 AssertCompile(sizeof(hEvtRead) == sizeof(pCritSect->Core.hEvtRead));
587 int rc2 = SUPSemEventMultiClose(pVM->pSession, hEvtRead); AssertRC(rc2);
/vbox/include/iprt/
H A Dcritsect.h392 /** Indicates whether hEvtRead needs resetting. */
423 RTSEMEVENTMULTI hEvtRead; member in struct:RTCRITSECTRW
/vbox/src/VBox/VMM/VMMAll/
H A DPDMAllCritSectRw.cpp286 (SUPSEMEVENTMULTI)pThis->s.Core.hEvtRead,
344 (SUPSEMEVENTMULTI)pThis->s.Core.hEvtRead);
1170 int rc = SUPSemEventMultiSignal(pThis->s.CTX_SUFF(pVM)->pSession, (SUPSEMEVENTMULTI)pThis->s.Core.hEvtRead);

Completed in 54 milliseconds