Lines Matching refs:ResourceList
632 PCM_RESOURCE_LIST ResourceList; in IsaPnpCreateLogicalDeviceResources() local
682 ResourceList = ExAllocatePoolZero(PagedPool, ListSize, TAG_ISAPNP); in IsaPnpCreateLogicalDeviceResources()
683 if (!ResourceList) in IsaPnpCreateLogicalDeviceResources()
686 ResourceList->Count = 1; in IsaPnpCreateLogicalDeviceResources()
687 ResourceList->List[0].InterfaceType = Isa; in IsaPnpCreateLogicalDeviceResources()
688 ResourceList->List[0].PartialResourceList.Version = 1; in IsaPnpCreateLogicalDeviceResources()
689 ResourceList->List[0].PartialResourceList.Revision = 1; in IsaPnpCreateLogicalDeviceResources()
690 ResourceList->List[0].PartialResourceList.Count = ResourceCount; in IsaPnpCreateLogicalDeviceResources()
712 Descriptor = &ResourceList->List[0].PartialResourceList.PartialDescriptors[ResourceCount++]; in IsaPnpCreateLogicalDeviceResources()
728 Descriptor = &ResourceList->List[0].PartialResourceList.PartialDescriptors[ResourceCount++]; in IsaPnpCreateLogicalDeviceResources()
744 Descriptor = &ResourceList->List[0].PartialResourceList.PartialDescriptors[ResourceCount++]; in IsaPnpCreateLogicalDeviceResources()
767 Descriptor = &ResourceList->List[0].PartialResourceList.PartialDescriptors[ResourceCount++]; in IsaPnpCreateLogicalDeviceResources()
795 Descriptor = &ResourceList->List[0].PartialResourceList.PartialDescriptors[ResourceCount++]; in IsaPnpCreateLogicalDeviceResources()
807 PdoExt->ResourceList = ResourceList; in IsaPnpCreateLogicalDeviceResources()
815 ExFreePoolWithTag(ResourceList, TAG_ISAPNP); in IsaPnpCreateLogicalDeviceResources()
970 PCM_RESOURCE_LIST ResourceList; in IsaPnpCreateReadPortDOResources() local
977 ResourceList = ExAllocatePoolZero(PagedPool, ListSize, TAG_ISAPNP); in IsaPnpCreateReadPortDOResources()
978 if (!ResourceList) in IsaPnpCreateReadPortDOResources()
981 ResourceList->Count = 1; in IsaPnpCreateReadPortDOResources()
982 ResourceList->List[0].InterfaceType = Internal; in IsaPnpCreateReadPortDOResources()
983 ResourceList->List[0].PartialResourceList.Version = 1; in IsaPnpCreateReadPortDOResources()
984 ResourceList->List[0].PartialResourceList.Revision = 1; in IsaPnpCreateReadPortDOResources()
985 ResourceList->List[0].PartialResourceList.Count = RTL_NUMBER_OF(IsaConfigPorts); in IsaPnpCreateReadPortDOResources()
987 Descriptor = &ResourceList->List[0].PartialResourceList.PartialDescriptors[0]; in IsaPnpCreateReadPortDOResources()
999 return ResourceList; in IsaPnpCreateReadPortDOResources()
1188 if (PdoExt->ResourceList) in IsaPnpFillDeviceRelations()
1190 ExFreePoolWithTag(PdoExt->ResourceList, TAG_ISAPNP); in IsaPnpFillDeviceRelations()
1191 PdoExt->ResourceList = NULL; in IsaPnpFillDeviceRelations()