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

/vbox/src/VBox/Runtime/r3/win/
H A Dfileaio-win.cpp74 volatile bool fWaiting; member in struct:RTFILEAIOCTXINTERNAL
433 ASMAtomicXchgBool(&pCtxInt->fWaiting, true);
439 ASMAtomicXchgBool(&pCtxInt->fWaiting, false);
516 bool fWaiting = ASMAtomicReadBool(&pCtxInt->fWaiting); local
519 && fWaiting)
/vbox/src/VBox/Runtime/r3/linux/
H A Dfileaio-linux.cpp185 volatile bool fWaiting; member in struct:RTFILEAIOCTXINTERNAL
502 pCtxInt->fWaiting = false;
707 ASMAtomicXchgBool(&pCtxInt->fWaiting, true);
709 ASMAtomicXchgBool(&pCtxInt->fWaiting, false);
810 * We can ensure that the handle is valid if fWaiting is true
815 bool fWaiting = ASMAtomicReadBool(&pCtxInt->fWaiting); local
817 && fWaiting)
/vbox/src/VBox/Runtime/r3/freebsd/
H A Dfileaio-freebsd.cpp68 volatile bool fWaiting; member in struct:RTFILEAIOCTXINTERNAL
540 ASMAtomicXchgBool(&pCtxInt->fWaiting, true);
542 ASMAtomicXchgBool(&pCtxInt->fWaiting, false);
645 * We can ensure that the handle is valid if fWaiting is true
650 bool fWaiting = ASMAtomicReadBool(&pCtxInt->fWaiting); local
652 && fWaiting)
/vbox/src/VBox/Runtime/r3/posix/
H A Dfileaio-posix.cpp124 volatile bool fWaiting; member in struct:RTFILEAIOCTXINTERNAL
165 * We can ensure that the handle is valid if fWaiting is true
170 bool fWaiting = ASMAtomicReadBool(&pCtxInt->fWaiting); local
171 if (fWaiting)
605 LogFlow(("fWaiting=%RTbool\n", pCtxInt->fWaiting));
922 ASMAtomicXchgBool(&pCtxInt->fWaiting, true);
925 ASMAtomicXchgBool(&pCtxInt->fWaiting, false);
/vbox/src/VBox/Devices/Storage/
H A DDrvVD.cpp1100 volatile bool fWaiting; member in struct:VDSOCKETINT
1126 pSockInt->fWaiting = false;
1370 ASMAtomicXchgBool(&pSockInt->fWaiting, true);
1373 ASMAtomicXchgBool(&pSockInt->fWaiting, false);
1380 ASMAtomicXchgBool(&pSockInt->fWaiting, false);
1424 ASMAtomicXchgBool(&pSockInt->fWaiting, true);
1427 ASMAtomicXchgBool(&pSockInt->fWaiting, false);
1550 ASMAtomicXchgBool(&pSockInt->fWaiting, false);
1564 if (ASMAtomicReadBool(&pSockInt->fWaiting))

Completed in 61 milliseconds