Lines Matching refs:ResourceList
56 IN PCM_RESOURCE_LIST ResourceList) in PciComputeNewCurrentSettings() argument
69 ASSERT((ResourceList == NULL) || (ResourceList->Count == 1)); in PciComputeNewCurrentSettings()
77 if (!(ResourceList) || !(ResourceList->Count)) in PciComputeNewCurrentSettings()
84 PciDebugPrintCmResList(ResourceList); in PciComputeNewCurrentSettings()
90 FullList = ResourceList->List; in PciComputeNewCurrentSettings()
91 for (i = 0; i < ResourceList->Count; i++) in PciComputeNewCurrentSettings()
328 PCM_RESOURCE_LIST ResourceList; in PciAllocateCmResourceList() local
336 ResourceList = ExAllocatePoolWithTag(PagedPool, Size, 'BicP'); in PciAllocateCmResourceList()
337 if (!ResourceList) return NULL; in PciAllocateCmResourceList()
340 RtlZeroMemory(ResourceList, Size); in PciAllocateCmResourceList()
341 ResourceList->Count = 1; in PciAllocateCmResourceList()
342 ResourceList->List[0].BusNumber = BusNumber; in PciAllocateCmResourceList()
343 ResourceList->List[0].InterfaceType = PCIBus; in PciAllocateCmResourceList()
344 ResourceList->List[0].PartialResourceList.Version = 1; in PciAllocateCmResourceList()
345 ResourceList->List[0].PartialResourceList.Revision = 1; in PciAllocateCmResourceList()
346 ResourceList->List[0].PartialResourceList.Count = Count; in PciAllocateCmResourceList()
349 return ResourceList; in PciAllocateCmResourceList()
362 PCM_RESOURCE_LIST ResourceList; in PciQueryResources() local
429 ResourceList = PciAllocateCmResourceList(Count, in PciQueryResources()
431 if (!ResourceList) return STATUS_INSUFFICIENT_RESOURCES; in PciQueryResources()
434 Resource = ResourceList->List[0].PartialResourceList.PartialDescriptors; in PciQueryResources()
505 *Buffer = ResourceList; in PciQueryResources()