OpenCore
1.0.4
OpenCore Bootloader
|
#include <Uefi.h>
#include <Library/BaseLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/OcDebugLogLib.h>
#include <Library/OcFileLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Library/PrintLib.h>
#include <Library/UefiLib.h>
#include <Library/UefiBootServicesTableLib.h>
#include <Library/OcMiscLib.h>
#include <IndustryStandard/AcpiAml.h>
#include <IndustryStandard/Acpi.h>
#include <Guid/Acpi.h>
#include <Library/OcAcpiLib.h>
Go to the source code of this file.
Functions | |
STATIC EFI_STATUS | AcpiDumpTable (IN EFI_FILE_PROTOCOL *Root, IN CONST CHAR8 *Name, IN VOID *Data, IN UINTN Size) |
STATIC VOID | AcpiGetTableName (IN EFI_FILE_PROTOCOL *Root, IN EFI_ACPI_COMMON_HEADER *Data, OUT CHAR8 *Name, IN UINTN NameSize) |
EFI_STATUS | AcpiDumpTables (IN EFI_FILE_PROTOCOL *Root) |
Copyright (C) 2016, The HermitCrabs Lab. All rights reserved.
All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license.php
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
Definition in file AcpiDump.c.
STATIC EFI_STATUS AcpiDumpTable | ( | IN EFI_FILE_PROTOCOL * | Root, |
IN CONST CHAR8 * | Name, | ||
IN VOID * | Data, | ||
IN UINTN | Size ) |
Definition at line 35 of file AcpiDump.c.
EFI_STATUS AcpiDumpTables | ( | IN EFI_FILE_PROTOCOL * | Root | ) |
Dump ACPI tables to the specified directory.
[in] | Root | Directory to write tables. |
Definition at line 102 of file AcpiDump.c.
STATIC VOID AcpiGetTableName | ( | IN EFI_FILE_PROTOCOL * | Root, |
IN EFI_ACPI_COMMON_HEADER * | Data, | ||
OUT CHAR8 * | Name, | ||
IN UINTN | NameSize ) |
Definition at line 50 of file AcpiDump.c.