Searched defs:pResList (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Additions/common/VBoxGuest/
H A DVBoxGuest-win.cpp1069 * @param pResList Resource list
1072 NTSTATUS vbgdNtScanPCIResourceList(PCM_RESOURCE_LIST pResList, PVBOXGUESTDEVEXTWIN pDevExt) argument
1076 pResList->List->PartialResourceList.Count));
1083 for (ULONG i = 0; i < pResList->List->PartialResourceList.Count; i++)
1085 pPartialData = &pResList->List->PartialResourceList.PartialDescriptors[i];
/vbox/src/VBox/Additions/WINNT/Mouse/NT4/
H A DVBoxPS2NT.cpp368 static VOID CreateResList(PDEVEXT pDevExt, PCM_RESOURCE_LIST *pResList, PULONG pResListSize);
2243 static VOID CreateResList(PDEVEXT pDevExt, PCM_RESOURCE_LIST *pResList, PULONG pResListSize) argument
2252 *pResList = (PCM_RESOURCE_LIST)ExAllocatePool(PagedPool, *pResListSize);
2253 if (!*pResList)
2259 RtlZeroMemory(*pResList, *pResListSize);
2261 (*pResList)->Count = 1;
2262 (*pResList)->List[0].InterfaceType = pDevExt->Cfg.InterfaceType;
2263 (*pResList)->List[0].BusNumber = pDevExt->Cfg.uBusNr;
2265 (*pResList)->List[0].PartialResourceList.Count = cPorts;
2268 (*pResList)
[all...]

Completed in 56 milliseconds