Searched refs:pHead (Results 26 - 40 of 40) sorted by relevance

12

/vbox/src/VBox/VMM/include/
H A DPDMBlkCacheInternal.h92 PPDMBLKCACHEENTRY pHead; member in struct:PDMBLKLRULIST
H A DSSMInternal.h309 R3PTRTYPE(PSSMUNIT) pHead; member in struct:SSM
/vbox/src/VBox/Devices/Input/
H A DUsbMouse.cpp111 PVUSBURB pHead; member in struct:USBHIDURBQUEUE
990 pQueue->pHead = NULL;
991 pQueue->ppTail = &pQueue->pHead;
1018 PVUSBURB pUrb = pQueue->pHead;
1022 pQueue->pHead = pNext;
1024 pQueue->ppTail = &pQueue->pHead;
1041 PVUSBURB pCur = pQueue->pHead;
1044 pQueue->pHead = pUrb->Dev.pNext;
1046 pQueue->ppTail = &pQueue->pHead;
1077 return pQueue->pHead
[all...]
/vbox/src/VBox/Devices/Storage/
H A DUsbMsd.cpp184 PVUSBURB pHead; member in struct:USBMSDURBQUEUE
635 pQueue->pHead = NULL;
636 pQueue->ppTail = &pQueue->pHead;
663 PVUSBURB pUrb = pQueue->pHead;
667 pQueue->pHead = pNext;
669 pQueue->ppTail = &pQueue->pHead;
686 PVUSBURB pCur = pQueue->pHead;
688 pQueue->pHead = pUrb->Dev.pNext;
704 pQueue->ppTail = &pQueue->pHead;
717 return pQueue->pHead
[all...]
/vbox/src/VBox/VMM/VMMAll/
H A DPGMAllHandler.cpp1366 PPGMPHYS2VIRTHANDLER pHead = (PPGMPHYS2VIRTHANDLER)RTAvlroGCPhysGet(&pVM->pgm.s.CTX_SUFF(pTrees)->PhysToVirtHandlers, pPhys2Virt->Core.Key);
1368 AssertReleaseMsg(pHead != pPhys2Virt, ("%RGp-%RGp offVirtHandler=%#RX32\n",
1371 if (RT_UNLIKELY(!pHead || pHead->Core.KeyLast != pPhys2Virt->Core.KeyLast))
1382 if (!(pHead->offNextAlias & PGMPHYS2VIRTHANDLER_OFF_MASK))
1386 PPGMPHYS2VIRTHANDLER pNext = (PPGMPHYS2VIRTHANDLER)((intptr_t)pHead + (pHead->offNextAlias & PGMPHYS2VIRTHANDLER_OFF_MASK));
1390 pHead->offNextAlias = ((intptr_t)pPhys2Virt - (intptr_t)pHead)
1391 | (pHead
[all...]
/vbox/src/VBox/VMM/VMMR3/
H A DPDMBlkCache.cpp163 PPDMBLKCACHEENTRY pCurr = pList->pHead;
217 pList->pHead = pNext;
261 pEntry->pNext = pList->pHead;
262 if (pList->pHead)
263 pList->pHead->pPrev = pEntry;
271 pList->pHead = pEntry;
289 while (pList->pHead)
291 PPDMBLKCACHEENTRY pEntry = pList->pHead;
293 pList->pHead = pEntry->pNext;
1012 pBlkCacheGlobal->LruRecentlyUsedIn.pHead
[all...]
H A DVMReq.cpp518 * Joins the list pList with whatever is linked up at *pHead.
524 PVMREQ pHead = ASMAtomicXchgPtrT(ppHead, pList, PVMREQ); local
525 if (!pHead)
527 PVMREQ pTail = pHead;
532 if (ASMAtomicCmpXchgPtr(ppHead, pHead, pList))
536 if (ASMAtomicCmpXchgPtr(ppHead, pHead, NULL))
538 pList = pHead;
546 * Joins the list pList with whatever is linked up at *pHead.
/vbox/src/VBox/Devices/USB/linux/
H A DUSBProxyDevice-linux.cpp1308 static PUSBPROXYURBLNX usbProxyLinuxSplitURBFragment(PUSBPROXYDEV pProxyDev, PUSBPROXYURBLNX pHead, PUSBPROXYURBLNX pCur)
1314 LogFlowFunc(("pProxyDev=%p pHead=%p pCur=%p\n", pProxyDev, pHead, pCur));
1317 pNew = pCur->pSplitNext = usbProxyLinuxUrbAlloc(pProxyDev, pHead);
1320 usbProxyLinuxUrbFreeSplitList(pProxyDev, pHead);
1323 Assert(pNew->pSplitHead == pHead);
1326 pNew->KUrb = pHead->KUrb;
/vbox/src/VBox/Devices/USB/
H A DVUSBInternal.h447 void vusbUrbDoReapAsync(PVUSBURB pHead, RTMSINTERVAL cMillies);
H A DVUSBUrb.cpp1987 * @param pHead Pointer to the head of the URB list.
1991 void vusbUrbDoReapAsync(PVUSBURB pHead, RTMSINTERVAL cMillies) argument
1993 PVUSBURB pUrb = pHead;
/vbox/src/VBox/Main/include/
H A DConsoleVRDPServer.h231 RemoteUSBBackend *pHead; member in struct:ConsoleVRDPServer::_USBBackends
/vbox/src/VBox/Main/src-client/
H A DConsoleVRDPServer.cpp1372 mUSBBackends.pHead = NULL;
3620 pRemoteUSBBackend->pNext = mUSBBackends.pHead;
3621 if (mUSBBackends.pHead)
3623 mUSBBackends.pHead->pPrev = pRemoteUSBBackend;
3630 mUSBBackends.pHead = pRemoteUSBBackend;
3760 pNextRemoteUSBBackend = mUSBBackends.pHead;
3789 RemoteUSBBackend *pRemoteUSBBackend = mUSBBackends.pHead;
3807 RemoteUSBBackend *pRemoteUSBBackend = mUSBBackends.pHead;
3846 mUSBBackends.pHead = (RemoteUSBBackend *)pRemoteUSBBackend->pNext;
/vbox/src/VBox/Devices/USB/darwin/
H A DUSBProxyDevice-darwin.cpp344 static int usbProxyDarwinRemoveSourceRefFromAllRunLoops(PRTLISTANCHOR pHead, argument
347 AssertPtrReturn(pHead, VERR_INVALID_PARAMETER);
349 while (!RTListIsEmpty(pHead))
351 PRUNLOOPREFLIST pNode = RTListGetFirst(pHead, RUNLOOPREFLIST, List);
/vbox/src/VBox/Storage/
H A DVD.cpp4351 PVDIOTASK pHead = ASMAtomicXchgPtrT(&pDisk->pIoTasksPendingHead, NULL, PVDIOTASK); local
4356 PVDIOTASK pCur = pHead;
4357 pHead = NULL;
4362 pInsert->pNext = pHead;
4363 pHead = pInsert;
4366 while (pHead)
4368 PVDIOSTORAGE pIoStorage = pHead->pIoStorage;
4370 if (!pHead->fMeta)
4371 vdUserXferCompleted(pIoStorage, pHead->Type.User.pIoCtx,
4372 pHead
[all...]
H A DISCSI.cpp789 PISCSICMD pHead; local
792 pHead = pImage->aCmdsWaiting[idx];
795 if (pHead)
798 pTail = pHead;
804 pIScsiCmdHead = pHead;

Completed in 301 milliseconds

12