TianoCore EDK2 master
|
Go to the source code of this file.
Functions | |
SHELL_STATUS EFIAPI | TftpCommandHandler (IN EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL *This, IN EFI_SYSTEM_TABLE *SystemTable, IN EFI_SHELL_PARAMETERS_PROTOCOL *ShellParameters, IN EFI_SHELL_PROTOCOL *Shell) |
CHAR16 *EFIAPI | TftpCommandGetHelp (IN EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL *This, IN CONST CHAR8 *Language) |
EFI_STATUS EFIAPI | TftpCommandInitialize (IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *SystemTable) |
EFI_STATUS EFIAPI | TftpUnload (IN EFI_HANDLE ImageHandle) |
Variables | |
EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL | mTftpDynamicCommand |
Produce "tftp" shell dynamic command.
Copyright (c) 2010 - 2017, Intel Corporation. All rights reserved.
Copyright (c) 2015, ARM Ltd. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file TftpDynamicCommand.c.
CHAR16 *EFIAPI TftpCommandGetHelp | ( | IN EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL * | This, |
IN CONST CHAR8 * | Language | ||
) |
This is the command help handler function pointer callback type. This function is responsible for displaying help information for the associated command.
[in] | This | The instance of the EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL. |
[in] | Language | The pointer to the language string to use. |
Definition at line 52 of file TftpDynamicCommand.c.
SHELL_STATUS EFIAPI TftpCommandHandler | ( | IN EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL * | This, |
IN EFI_SYSTEM_TABLE * | SystemTable, | ||
IN EFI_SHELL_PARAMETERS_PROTOCOL * | ShellParameters, | ||
IN EFI_SHELL_PROTOCOL * | Shell | ||
) |
This is the shell command handler function pointer callback type. This function handles the command when it is invoked in the shell.
[in] | This | The instance of the EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL. |
[in] | SystemTable | The pointer to the system table. |
[in] | ShellParameters | The parameters associated with the command. |
[in] | Shell | The instance of the shell protocol used in the context of processing this command. |
Definition at line 28 of file TftpDynamicCommand.c.
EFI_STATUS EFIAPI TftpCommandInitialize | ( | IN EFI_HANDLE | ImageHandle, |
IN EFI_SYSTEM_TABLE * | SystemTable | ||
) |
Entry point of Tftp Dynamic Command.
Produce the DynamicCommand protocol to handle "tftp" command.
ImageHandle | The image handle of the process. |
SystemTable | The EFI System Table pointer. |
EFI_SUCCESS | Tftp command is executed successfully. |
EFI_ABORTED | HII package was failed to initialize. |
others | Other errors when executing tftp command. |
Definition at line 80 of file TftpDynamicCommand.c.
EFI_STATUS EFIAPI TftpUnload | ( | IN EFI_HANDLE | ImageHandle | ) |
Tftp driver unload handler.
ImageHandle | The image handle of the process. |
EFI_SUCCESS | The image is unloaded. |
Others | Failed to unload the image. |
Definition at line 112 of file TftpDynamicCommand.c.
EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL mTftpDynamicCommand |
Definition at line 60 of file TftpDynamicCommand.c.