Home | History | Annotate | Download | only in acpidump

Lines Matching defs:Address

161     ACPI_PHYSICAL_ADDRESS   Address);
296 * Address - Physical address of the table
309 ACPI_PHYSICAL_ADDRESS Address)
320 AcpiTbPrintTableHeader (Address, Table);
333 * Note: simplest to just always emit a 64-bit address. AcpiXtract
337 Table->Signature, ACPI_FORMAT_UINT64 (Address));
366 ACPI_PHYSICAL_ADDRESS Address;
376 Status = AcpiOsGetTableByIndex (i, &Table, &Instance, &Address);
399 TableStatus = ApDumpTableBuffer (Table, Instance, Address);
418 * PARAMETERS: AsciiAddress - Address for requested ACPI table
422 * DESCRIPTION: Get an ACPI table via a physical address and dump it.
430 ACPI_PHYSICAL_ADDRESS Address;
437 /* Convert argument to an integer physical address */
442 fprintf (stderr, "%s: Could not convert to a physical address\n",
447 Address = (ACPI_PHYSICAL_ADDRESS) LongAddress;
448 Status = AcpiOsGetTableByAddress (Address, &Table);
452 ACPI_FORMAT_UINT64 (Address),
457 TableStatus = ApDumpTableBuffer (Table, 0, Address);
483 ACPI_PHYSICAL_ADDRESS Address;
517 &Table, &Address);
533 TableStatus = ApDumpTableBuffer (Table, Instance, Address);