Home | History | Annotate | Download | only in PcatRealTimeClockRuntimeDxe

Lines Matching defs:Table

1204   This function find ACPI table with the specified signature in RSDT or XSDT.

1207 @param Signature ACPI table signature.
1208 @param TablePointerSize Size of table pointer: 4 or 8.
1210 table or NULL if not found.
1222 EFI_ACPI_DESCRIPTION_HEADER *Table;
1231 Table = 0;
1232 CopyMem (&Table, (VOID *) (EntryBase + Index * TablePointerSize), TablePointerSize);
1234 if (Table == NULL) {
1238 if (Table->Signature == Signature) {
1239 return Table;
1247 Get the century RTC address from the ACPI FADT table.
1303 Notification function of ACPI Table change.
1305 This is a notification function registered on ACPI Table change event.
1306 It saves the Century address stored in ACPI FADT table.