Changeset 89983 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiView.h
- Timestamp:
- Jul 1, 2021 8:17:41 AM (4 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-139864 /vendor/edk2/current 103735-103757,103769-103776,129194-145445
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiView.h
r85718 r89983 23 23 **/ 24 24 #define RSDP_LENGTH_OFFSET 20 25 26 /**27 The EREPORT_OPTION enum describes ACPI table Reporting options.28 **/29 typedef enum ReportOption {30 ReportAll, ///< Report All tables.31 ReportSelected, ///< Report Selected table.32 ReportTableList, ///< Report List of tables.33 ReportDumpBinFile, ///< Dump selected table to a file.34 ReportMax,35 } EREPORT_OPTION;36 25 37 26 /** … … 72 61 73 62 /** 74 This function returns the colour highlighting status.75 76 @retval TRUE if colour highlighting is enabled.77 **/78 BOOLEAN79 GetColourHighlighting (80 VOID81 );82 83 /**84 This function sets the colour highlighting status.85 86 @param Highlight The Highlight status.87 88 **/89 VOID90 SetColourHighlighting (91 BOOLEAN Highlight92 );93 94 /**95 This function returns the consistency checking status.96 97 @retval TRUE if consistency checking is enabled.98 **/99 BOOLEAN100 GetConsistencyChecking (101 VOID102 );103 104 /**105 This function sets the consistency checking status.106 107 @param ConsistencyChecking The consistency checking status.108 109 **/110 VOID111 SetConsistencyChecking (112 BOOLEAN ConsistencyChecking113 );114 115 /**116 This function returns the ACPI table requirements validation flag.117 118 @retval TRUE if check for mandatory table presence should be performed.119 **/120 BOOLEAN121 GetMandatoryTableValidate (122 VOID123 );124 125 /**126 This function sets the ACPI table requirements validation flag.127 128 @param Validate Enable/Disable ACPI table requirements validation.129 **/130 VOID131 SetMandatoryTableValidate (132 BOOLEAN Validate133 );134 135 /**136 This function returns the identifier of specification to validate ACPI table137 requirements against.138 139 @return ID of specification listing mandatory tables.140 **/141 UINTN142 GetMandatoryTableSpec (143 VOID144 );145 146 /**147 This function sets the identifier of specification to validate ACPI table148 requirements against.149 150 @param Spec ID of specification listing mandatory tables.151 **/152 VOID153 SetMandatoryTableSpec (154 UINTN Spec155 );156 157 /**158 63 This function processes the table reporting options for the ACPI table. 159 64 160 65 @param [in] Signature The ACPI table Signature. 161 66 @param [in] TablePtr Pointer to the ACPI table data. 162 @param [in] Length The length fothe ACPI table.67 @param [in] Length The length of the ACPI table. 163 68 164 69 @retval Returns TRUE if the ACPI table should be traced. … … 171 76 ); 172 77 78 /** 79 This function iterates the configuration table entries in the 80 system table, retrieves the RSDP pointer and starts parsing the ACPI tables. 81 82 @param [in] SystemTable Pointer to the EFI system table. 83 84 @retval EFI_NOT_FOUND The RSDP pointer was not found. 85 @retval EFI_UNSUPPORTED The RSDP version was less than 2. 86 @retval EFI_SUCCESS The command was successful. 87 **/ 88 EFI_STATUS 89 EFIAPI 90 AcpiView ( 91 IN EFI_SYSTEM_TABLE* SystemTable 92 ); 93 173 94 #endif // ACPIVIEW_H_
Note:
See TracChangeset
for help on using the changeset viewer.