Lines Matching refs:Resource

3  * Module Name: dmresrcs.c - "Small" Resource Descriptor disassembly
132 * PARAMETERS: Resource - Pointer to the resource descriptor
144 AML_RESOURCE *Resource,
158 AcpiGbl_HeDecode [Resource->Irq.Flags & 1],
159 AcpiGbl_LlDecode [(Resource->Irq.Flags >> 3) & 1],
160 AcpiGbl_ShrDecode [(Resource->Irq.Flags >> 4) & 1]);
169 AcpiDmBitList (Resource->Irq.IrqMask);
177 * PARAMETERS: Resource - Pointer to the resource descriptor
189 AML_RESOURCE *Resource,
196 AcpiGbl_TypDecode [(Resource->Dma.Flags >> 5) & 3],
197 AcpiGbl_BmDecode [(Resource->Dma.Flags >> 2) & 1],
198 AcpiGbl_SizDecode [(Resource->Dma.Flags >> 0) & 3]);
206 AcpiDmBitList (Resource->Dma.DmaChannelMask);
214 * PARAMETERS: Resource - Pointer to the resource descriptor
226 AML_RESOURCE *Resource,
233 AcpiGbl_IoDecode [(Resource->Io.Flags & 1)]);
236 AcpiDmDumpInteger16 (Resource->Io.Minimum, "Range Minimum");
239 AcpiDmDumpInteger16 (Resource->Io.Maximum, "Range Maximum");
242 AcpiDmDumpInteger8 (Resource->Io.Alignment, "Alignment");
245 AcpiDmDumpInteger8 (Resource->Io.AddressLength, "Length");
259 * PARAMETERS: Resource - Pointer to the resource descriptor
271 AML_RESOURCE *Resource,
280 AcpiDmDumpInteger16 (Resource->FixedIo.Address, "Address");
283 AcpiDmDumpInteger8 (Resource->FixedIo.AddressLength, "Length");
297 * PARAMETERS: Resource - Pointer to the resource descriptor
309 AML_RESOURCE *Resource,
319 (UINT32) Resource->StartDpf.Flags & 3,
320 (UINT32) (Resource->StartDpf.Flags >> 2) & 3);
336 * PARAMETERS: Resource - Pointer to the resource descriptor
348 AML_RESOURCE *Resource,
364 * PARAMETERS: Resource - Pointer to the resource descriptor
376 AML_RESOURCE *Resource,
382 ACPI_ADD_PTR (UINT8, Resource, sizeof (AML_RESOURCE_SMALL_HEADER)),