Searched refs:Flink (Results 1 - 18 of 18) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/
H A DVBoxMPCm.cpp317 for (pCur = pHead->Flink; pCur != pHead; pCur = pHead->Flink)
330 pCur = pEntriesHead->Flink;
346 pCur = pCur->Flink;
381 for (pCur = RemainedList.Flink; pCur != &RemainedList; pCur = RemainedList.Flink)
443 for (PLIST_ENTRY pEntry = pMgr->SessionList.Flink; pEntry != &pMgr->SessionList; pEntry = pEntry->Flink)
515 for (PLIST_ENTRY pEntry = pMgr->SessionList.Flink; pEntry != &pMgr->SessionList; pEntry = pEntry->Flink)
[all...]
H A DVBoxMPMisc.h33 Assert(pDstList->Flink->Blink == pList);
34 Assert(pDstList->Blink->Flink == pList);
35 /* pDstList->Flink & pDstList->Blink point to the "real| entries, never to pList
37 pDstList->Flink->Blink = pDstList;
38 pDstList->Blink->Flink = pDstList;
H A DVBoxMPVdma.h78 pCmd->QueueEntry.Flink = NULL;
107 LIST_ENTRY *pEntry = pList->Flink;
111 pEntry = pEntry->Flink;
H A DVBoxMPVhwa.cpp1169 PVBOXWDDM_OVERLAY pOverlay = VBOXWDDM_OVERLAY_FROM_ENTRY(pSource->OverlayList.Flink);
1171 while (pOverlay->ListEntry.Flink != &pSource->OverlayList)
1173 pOverlay = VBOXWDDM_OVERLAY_FROM_ENTRY(pOverlay->ListEntry.Flink);
H A DVBoxMPVdma.cpp516 for (PLIST_ENTRY pCur = pDevExt->SwapchainList3D.Flink; pCur != &pDevExt->SwapchainList3D; pCur = pCur->Flink)
1959 if (pQueue->CmdQueue.Flink == &pCmd->QueueEntry)
1980 pCmd = VBOXVDMADDI_CMD_FROM_ENTRY(pQueue->CmdQueue.Flink);
H A DVBoxMPMisc.cpp287 PLIST_ENTRY pEntry = pSwapchain->AllocList.Flink;
293 pEntry = pEntry->Flink;
H A DVBoxMPWddm.cpp103 for (PLIST_ENTRY pCur = pAllocation->OpenList.Flink; pCur != &pAllocation->OpenList; pCur = pCur->Flink)
/vbox/src/VBox/HostDrivers/VBoxUSB/win/mon/
H A DVBoxUsbFlt.cpp175 for (PLIST_ENTRY pEntry = g_VBoxUsbFltGlobals.BlackDeviceList.Flink;
177 pEntry = pEntry->Flink)
213 for (PLIST_ENTRY pEntry = g_VBoxUsbFltGlobals.BlackDeviceList.Flink;
217 pNext = pEntry->Flink;
289 for (PLIST_ENTRY pEntry = g_VBoxUsbFltGlobals.DeviceList.Flink;
291 pEntry = pEntry->Flink)
294 for (PLIST_ENTRY pEntry2 = pEntry->Flink;
296 pEntry2 = pEntry2->Flink)
305 for (PLIST_ENTRY pEntry = g_VBoxUsbFltGlobals.DeviceList.Flink;
307 pEntry = pEntry->Flink)
[all...]
H A DVBoxUsbHook.cpp175 for (PLIST_ENTRY pLe = pHook->RequestList.Flink; pLe != &pHook->RequestList; pLe = pLe->Flink)
/vbox/src/VBox/Additions/WINNT/SharedFolders/driver/
H A DWin2kWorkarounds.c44 pCur = pAdvancedHeader->FilterContexts.Flink;
47 PLIST_ENTRY pNext = pCur->Flink;
/vbox/src/VBox/Debugger/
H A DDBGPlugInWinNt.cpp50 uint32_t Flink; member in struct:NTMTE32::__anon9850
82 uint64_t Flink; member in struct:NTMTE64::__anon9852
850 if (!WINNT_VALID_ADDRESS(pThis, WINNT_UNION(pThis, &Mte, InLoadOrderLinks.Flink)) )
917 DBGFR3AddrFromFlat(pUVM, &Addr, WINNT_UNION(pThis, &Mte, InLoadOrderLinks.Flink));
1006 && WINNT32_VALID_ADDRESS(uMte2.v32.InLoadOrderLinks.Flink)
1026 && uMte3.v32.InLoadOrderLinks.Flink == MteAddr.FlatPtr
1087 && WINNT64_VALID_ADDRESS(uMte2.v64.InLoadOrderLinks.Flink)
1107 && uMte3.v64.InLoadOrderLinks.Flink == MteAddr.FlatPtr
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dwinternl.h2642 #define InitializeListHead(le) (void)((le)->Flink = (le)->Blink = (le))
2643 #define InsertHeadList(le,e) do { PLIST_ENTRY f = (le)->Flink; (e)->Flink = f; (e)->Blink = (le); f->Blink = (e); (le)->Flink = (e); } while (0)
2644 #define InsertTailList(le,e) do { PLIST_ENTRY b = (le)->Blink; (e)->Flink = (le); (e)->Blink = b; b->Flink = (e); (le)->Blink = (e); } while (0)
2645 #define IsListEmpty(le) ((le)->Flink == (le))
2646 #define RemoveEntryList(e) do { PLIST_ENTRY f = (e)->Flink, b = (e)->Blink; f->Blink = b; b->Flink = f; (e)->Flink
[all...]
H A Dwinnt.h765 struct _LIST_ENTRY *Flink; member in struct:_LIST_ENTRY
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dwinternl.h2582 #define InitializeListHead(le) (void)((le)->Flink = (le)->Blink = (le))
2583 #define InsertHeadList(le,e) do { PLIST_ENTRY f = (le)->Flink; (e)->Flink = f; (e)->Blink = (le); f->Blink = (e); (le)->Flink = (e); } while (0)
2584 #define InsertTailList(le,e) do { PLIST_ENTRY b = (le)->Blink; (e)->Flink = (le); (e)->Blink = b; b->Flink = (e); (le)->Blink = (e); } while (0)
2585 #define IsListEmpty(le) ((le)->Flink == (le))
2586 #define RemoveEntryList(e) do { PLIST_ENTRY f = (e)->Flink, b = (e)->Blink; f->Blink = b; b->Flink = f; (e)->Flink
[all...]
H A Dwinnt.h640 struct _LIST_ENTRY *Flink; member in struct:_LIST_ENTRY
/vbox/src/VBox/Additions/WINNT/Mouse/NT5/
H A DVBoxMFInternal.cpp247 for (PLIST_ENTRY pCur = g_ctx.DevExtList.Flink; pCur != &g_ctx.DevExtList; pCur = pCur->Flink)
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPR3HardenedMainImports-win.cpp250 LIST_ENTRY *pListEntry = pList->Flink;
266 pListEntry = pListEntry->Flink;
/vbox/src/VBox/HostDrivers/VBoxNetFlt/win/drv/
H A DVBoxNetFltRt-win.cpp2035 #define NEXT_LIST_ENTRY(_Entry) ((_Entry)->Flink)

Completed in 460 milliseconds