TianoCore EDK2 master
|
Go to the source code of this file.
Functions | |
VOID EFIAPI | AcpiConfigSetDefaults (VOID) |
STATIC UINT32 | ConvertStrToAcpiSignature (IN CONST CHAR16 *Str) |
VOID EFIAPI | SelectAcpiTable (IN CONST CHAR16 *TableName) |
VOID EFIAPI | GetSelectedAcpiTable (OUT SELECTED_ACPI_TABLE **SelectedAcpiTable) |
BOOLEAN EFIAPI | GetColourHighlighting (VOID) |
VOID EFIAPI | SetColourHighlighting (BOOLEAN Highlight) |
BOOLEAN EFIAPI | GetConsistencyChecking (VOID) |
VOID EFIAPI | SetConsistencyChecking (BOOLEAN ConsistencyChecking) |
EREPORT_OPTION EFIAPI | GetReportOption (VOID) |
VOID EFIAPI | SetReportOption (EREPORT_OPTION ReportType) |
BOOLEAN EFIAPI | GetMandatoryTableValidate (VOID) |
VOID EFIAPI | SetMandatoryTableValidate (BOOLEAN Validate) |
UINTN EFIAPI | GetMandatoryTableSpec (VOID) |
VOID EFIAPI | SetMandatoryTableSpec (UINTN Spec) |
Variables | |
STATIC BOOLEAN | mConsistencyCheck |
STATIC BOOLEAN | mColourHighlighting |
STATIC EREPORT_OPTION | mReportType |
STATIC BOOLEAN | mMandatoryTableValidate |
STATIC UINTN | mMandatoryTableSpec |
SELECTED_ACPI_TABLE | mSelectedAcpiTable |
State and accessors for 'acpiview' configuration.
Copyright (c) 2016 - 2020, ARM Limited. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file AcpiViewConfig.c.
VOID EFIAPI AcpiConfigSetDefaults | ( | VOID | ) |
Reset the AcpiView user configuration to defaults
Definition at line 28 of file AcpiViewConfig.c.
This function converts a string to ACPI table signature.
[in] | Str | Pointer to the string to be converted to the ACPI table signature. |
The | ACPI table signature. |
Definition at line 51 of file AcpiViewConfig.c.
BOOLEAN EFIAPI GetColourHighlighting | ( | VOID | ) |
This function returns the colour highlighting status.
TRUE | Colour highlighting is enabled. |
Definition at line 115 of file AcpiViewConfig.c.
BOOLEAN EFIAPI GetConsistencyChecking | ( | VOID | ) |
This function returns the consistency checking status.
TRUE | Consistency checking is enabled. |
Definition at line 143 of file AcpiViewConfig.c.
UINTN EFIAPI GetMandatoryTableSpec | ( | VOID | ) |
This function returns the identifier of specification to validate ACPI table requirements against.
Definition at line 228 of file AcpiViewConfig.c.
BOOLEAN EFIAPI GetMandatoryTableValidate | ( | VOID | ) |
This function returns the ACPI table requirements validation flag.
TRUE | Check for mandatory table presence should be performed. |
Definition at line 199 of file AcpiViewConfig.c.
EREPORT_OPTION EFIAPI GetReportOption | ( | VOID | ) |
This function returns the report options.
Definition at line 171 of file AcpiViewConfig.c.
VOID EFIAPI GetSelectedAcpiTable | ( | OUT SELECTED_ACPI_TABLE ** | SelectedAcpiTable | ) |
This function returns the selected ACPI table.
[out] | SelectedAcpiTable | Pointer that will contain the returned struct. |
Definition at line 101 of file AcpiViewConfig.c.
This function selects an ACPI table in current context. The string name of the table is converted into UINT32 table signature.
[in] | TableName | The name of the ACPI table to select. |
Definition at line 84 of file AcpiViewConfig.c.
VOID EFIAPI SetColourHighlighting | ( | BOOLEAN | Highlight | ) |
This function sets the colour highlighting status.
[in] | Highlight | The highlight status. |
Definition at line 129 of file AcpiViewConfig.c.
VOID EFIAPI SetConsistencyChecking | ( | BOOLEAN | ConsistencyChecking | ) |
This function sets the consistency checking status.
[in] | ConsistencyChecking | The consistency checking status. |
Definition at line 157 of file AcpiViewConfig.c.
VOID EFIAPI SetMandatoryTableSpec | ( | UINTN | Spec | ) |
This function sets the identifier of specification to validate ACPI table requirements against.
[in] | Spec | ID of specification listing mandatory tables. |
Definition at line 243 of file AcpiViewConfig.c.
VOID EFIAPI SetMandatoryTableValidate | ( | BOOLEAN | Validate | ) |
This function sets the ACPI table requirements validation flag.
[in] | Validate | Enable/Disable ACPI table requirements validation. |
Definition at line 213 of file AcpiViewConfig.c.
VOID EFIAPI SetReportOption | ( | EREPORT_OPTION | ReportType | ) |
This function sets the report options.
[in] | ReportType | The report option to set. |
Definition at line 185 of file AcpiViewConfig.c.
STATIC BOOLEAN mColourHighlighting |
Definition at line 15 of file AcpiViewConfig.c.
STATIC BOOLEAN mConsistencyCheck |
Definition at line 14 of file AcpiViewConfig.c.
Definition at line 18 of file AcpiViewConfig.c.
STATIC BOOLEAN mMandatoryTableValidate |
Definition at line 17 of file AcpiViewConfig.c.
STATIC EREPORT_OPTION mReportType |
Definition at line 16 of file AcpiViewConfig.c.
SELECTED_ACPI_TABLE mSelectedAcpiTable |
Definition at line 21 of file AcpiViewConfig.c.