TianoCore EDK2 master
|
#include <Uefi.h>
#include <Protocol/ShellParameters.h>
#include "EdbCommon.h"
#include "EdbSupport.h"
Go to the source code of this file.
Functions | |
VOID | PrintUsage (VOID) |
VOID | EdbShowInfo (EFI_DEBUGGER_CONFIGURATION_PROTOCOL *DebuggerConfiguration) |
VOID | EdbConfigBreak (EFI_DEBUGGER_CONFIGURATION_PROTOCOL *DebuggerConfiguration, CHAR16 *Command, CHAR16 *CommandArg) |
EFI_STATUS EFIAPI | InitializeEbcDebuggerConfig (IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *SystemTable) |
Configuration application for the EBC Debugger.
Copyright (c) 2007 - 2016, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file EbcDebuggerConfig.c.
VOID EdbConfigBreak | ( | EFI_DEBUGGER_CONFIGURATION_PROTOCOL * | DebuggerConfiguration, |
CHAR16 * | Command, | ||
CHAR16 * | CommandArg | ||
) |
EdbConfigBreak function.
DebuggerConfiguration | Point to the EFI_DEBUGGER_CONFIGURATION_PROTOCOL. |
Command | Point to the command. |
CommandArg | The argument for this command. |
Definition at line 66 of file EbcDebuggerConfig.c.
VOID EdbShowInfo | ( | EFI_DEBUGGER_CONFIGURATION_PROTOCOL * | DebuggerConfiguration | ) |
The function is to show some information.
DebuggerConfiguration | Point to the EFI_DEBUGGER_CONFIGURATION_PROTOCOL. |
Definition at line 48 of file EbcDebuggerConfig.c.
EFI_STATUS EFIAPI InitializeEbcDebuggerConfig | ( | IN EFI_HANDLE | ImageHandle, |
IN EFI_SYSTEM_TABLE * | SystemTable | ||
) |
Alter the EBC Debugger configuration.
[in] | ImageHandle | The image handle. |
[in] | SystemTable | The system table. |
EFI_SUCCESS | Operation completed successfully. |
EFI_INVALID_PARAMETER | Usage error. |
EFI_NOT_FOUND | A running debugger cannot be located. |
Definition at line 177 of file EbcDebuggerConfig.c.
VOID PrintUsage | ( | VOID | ) |
The function that displays the utility usage message.
Definition at line 21 of file EbcDebuggerConfig.c.