data_type
large_stringclasses
3 values
source
large_stringclasses
29 values
code
large_stringlengths
98
49.4M
filepath
large_stringlengths
5
161
message
large_stringclasses
234 values
commit
large_stringclasses
234 values
subject
large_stringclasses
418 values
critique
large_stringlengths
101
1.26M
metadata
dict
source
edk2
/** @file Main file for Edit shell Debug1 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellDebug1CommandsLib.h" #include "TextEditor.h" /** ...
ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/Edit.c
null
null
null
null
null
source
edk2
/** @file Implements filebuffer interface functions. Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "TextEditor.h" #include <Guid/FileSystemInfo.h> #include <Library/FileHandleLib.h> EFI_EDITOR_FILE_BUFFER FileBuffer; EFI_EDIT...
ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/FileBuffer.c
null
null
null
null
null
source
edk2
/** @file Declares filebuffer interface functions. Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include "TextEditorTypes.h" /** Initialization function for FileBuffer. @param EFI_SUCCESS The initializati...
ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/FileBuffer.h
null
null
null
null
null
source
edk2
/** @file Implements editor interface functions. Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "TextEditor.h" #include "EditStatusBar.h" #include "EditInputBar.h" #include "EditMenuBar.h" // // the first time editor launch // ...
ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/MainTextEditor.c
null
null
null
null
null
source
edk2
/** @file Declares editor interface functions. Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include "TextEditorTypes.h" /** The initialization function for MainEditor. @retval EFI_SUCCESS The operation ...
ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/MainTextEditor.h
null
null
null
null
null
source
edk2
/** @file Implementation of various string and line routines. Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "TextEditor.h" #include "Misc.h" /** Duplicate a EFI_EDITOR_LINE structure. @param Src The lin...
ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/Misc.c
null
null
null
null
null
source
edk2
/** @file Declares generic editor helper functions. Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include "TextEditorTypes.h" /** Free a EFI_EDITOR_LINE structure. @param Src The line structure to...
ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/Misc.h
null
null
null
null
null
source
edk2
/** @file Main include file for Edit shell Debug1 function. Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include "TextEditorTypes.h" #include "MainTextEditor.h" #include "FileBuffer.h" #include "EditTitleBar.h" #include...
ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/TextEditor.h
null
null
null
null
null
source
edk2
/** @file Declares editor types. Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include "UefiShellDebug1CommandsLib.h" #include "EditTitleBar.h" #include "EditMenuBar.h" #define MIN_POOL_SIZE 125 #define MAX_STRING_L...
ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/TextEditorTypes.h
null
null
null
null
null
source
edk2
/** @file Defines HBufferImage - the view of the file that is visible at any point, as well as the event handlers for editing the file Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "HexEditor.h" extern EFI_HANDLE HImageHand...
ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/BufferImage.c
null
null
null
null
null
source
edk2
/** @file Defines BufferImage - the view of the file that is visible at any point, as well as the event handlers for editing the file Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include "HexEditor.h" /** Initia...
ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/BufferImage.h
null
null
null
null
null
source
edk2
/** @file Functions to deal with Clip Board Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "HexEditor.h" typedef struct { UINT8 *Buffer; UINTN Size; } HEFI_EDITOR_CLIPBOARD; HEFI_EDITOR_CLIPBOARD HClipBoard; // /...
ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/Clipboard.c
null
null
null
null
null
source
edk2
/** @file Defines DiskImage - the view of the file that is visible at any point, as well as the event handlers for editing the file Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include "HexEditor.h" /** Initiali...
ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/Clipboard.h
null
null
null
null
null
source
edk2
/** @file Functions to deal with Disk buffer. Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "HexEditor.h" #include <Protocol/BlockIo.h> extern EFI_HANDLE HImageHandleBackup; extern HEFI_EDITOR_BUFFER_IMAGE HBuf...
ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/DiskImage.c
null
null
null
null
null
source
edk2
/** @file Defines DiskImage - the view of the file that is visible at any point, as well as the event handlers for editing the file Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include "HexEditor.h" /** Initializati...
ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/DiskImage.h
null
null
null
null
null
source
edk2
/** @file Functions to deal with file buffer. Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "HexEditor.h" extern EFI_HANDLE HImageHandleBackup; extern HEFI_EDITOR_BUFFER_IMAGE HBufferImage; extern BOOLEAN HBu...
ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/FileImage.c
null
null
null
null
null
source
edk2
/** @file Defines FileImage - the view of the file that is visible at any point, as well as the event handlers for editing the file Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include "HexEditor.h" /** Initializati...
ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/FileImage.h
null
null
null
null
null
source
edk2
/** @file Main entry point of editor (C) Copyright 2014-2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellDebug1CommandsLib.h" #include "HexEditor.h" // // Global Vari...
ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/HexEdit.c
null
null
null
null
null
source
edk2
/** @file Main include file for hex editor Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include "UefiShellDebug1CommandsLib.h" #include "HexEditorTypes.h" #include "MainHexEditor.h" #include "BufferImage.h" #include "F...
ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/HexEditor.h
null
null
null
null
null
source
edk2
/** @file data types that are used by editor Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include "UefiShellDebug1CommandsLib.h" #include "EditTitleBar.h" #define EFI_EDITOR_LINE_LIST SIGNATURE_32 ('e', 'e', 'l', 'l') ...
ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/HexEditorTypes.h
null
null
null
null
null
source
edk2
/** @file Defines the Main Editor data type - - Global variables - Instances of the other objects of the editor - Main Interfaces Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "HexEditor.h" #include "EditStatus...
ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MainHexEditor.c
null
null
null
null
null
source
edk2
/** @file Defines the Main Editor data type - - Global variables - Instances of the other objects of the editor - Main Interfaces Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include "HexEditor.h" /** ...
ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MainHexEditor.h
null
null
null
null
null
source
edk2
/** @file Functions to deal with Mem buffer Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "HexEditor.h" extern EFI_HANDLE HImageHandleBackup; extern HEFI_EDITOR_BUFFER_IMAGE HBufferImage; extern BOOLEAN HBufferImageNeedRe...
ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MemImage.c
null
null
null
null
null
source
edk2
/** @file Defines MemImage - the view of the file that is visible at any point, as well as the event handlers for editing the file Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include "HexEditor.h" /** Initializatio...
ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MemImage.h
null
null
null
null
null
source
edk2
/** @file Implementation of various string and line routines Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "HexEditor.h" extern BOOLEAN HEditorMouseAction; /** Free a line and it's internal buffer. @param[in] Src The...
ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/Misc.c
null
null
null
null
null
source
edk2
/** @file Definitions for various line and string routines Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include "HexEditor.h" /** Advance/Retreat lines. @param[in] Count The line number to advance/retreat. ...
ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/Misc.h
null
null
null
null
null
source
edk2
/** @file Module for clarifying the content of the smbios structure element info. Copyright (c) 2005 - 2019, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellDebug1CommandsLib.h" #include "PrintInfo.h" #include "QueryTable.h" #include "EventLogInf...
ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/EventLogInfo.c
null
null
null
null
null
source
edk2
/** @file Module to clarify system event log of smbios structure. Copyright (c) 2005-2011, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #define END_OF_LOG 0xFF #pragma pack(1) typedef struct { UINT8 Type; UINT8 Length; UINT8 Year;...
ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/EventLogInfo.h
null
null
null
null
null
source
edk2
/** @file API for SMBIOS table. Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellDebug1CommandsLib.h" #include <Guid/SmBios.h> #include "LibSmbiosView.h" #include "SmbiosView.h" STATIC UINT8 mInit...
ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/LibSmbiosView.c
null
null
null
null
null
source
edk2
/** @file API for SMBIOS Plug and Play functions, access to SMBIOS table and structures. Copyright (c) 2005 - 2015, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include <IndustryStandard/SmBios.h> #define DMI_SUCCESS 0x00 #define D...
ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/LibSmbiosView.h
null
null
null
null
null
source
edk2
/** @file Module for clarifying the content of the smbios structure element information. Copyright (c) 2005 - 2024, Intel Corporation. All rights reserved.<BR> Copyright (c) 1985 - 2022, American Megatrends International LLC.<BR> (C) Copyright 2014 Hewlett-Packard Development Company, L.P.<BR> (C) Copyright ...
ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.c
null
null
null
null
null
source
edk2
/** @file Module to clarify the element info of the smbios structure. Copyright (c) 2005 - 2015, Intel Corporation. All rights reserved.<BR> (C) Copyright 2017 - 2019 Hewlett Packard Enterprise Development LP<BR> Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. SPDX-License-Identifier...
ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/PrintInfo.h
null
null
null
null
null
source
edk2
/** @file Build a table, each item is (Key, Info) pair. And give a interface of query a string out of a table. Copyright (c) Microsoft Corporation. All rights reserved.<BR> Copyright (c) 2005 - 2024, Intel Corporation. All rights reserved.<BR> (C) Copyright 2016-2019 Hewlett Packard Enterprise Development LP...
ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.c
null
null
null
null
null
source
edk2
/** @file Build a table, each item is (key, info) pair. and give a interface of query a string out of a table. Copyright (c) 2005 - 2019, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include <IndustryStandard/SmBios.h> #define QUERY_TABLE_UNFOUN...
ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/QueryTable.h
null
null
null
null
null
source
edk2
/** @file Tools of clarify the content of the smbios table. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved.<BR> Copyright (c) 2023 Apple Inc. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #includ...
ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/SmbiosView.c
null
null
null
null
null
source
edk2
/** @file Tools of clarify the content of the smbios table. Copyright (c) 2005 - 2015, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #define STRUCTURE_TYPE_RANDOM (UINT8) 0xFE #define STRUCTURE_TYPE_INVALID (UINT8) 0xFF typedef struct { UINT16 ...
ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/SmbiosView.h
null
null
null
null
null
source
edk2
/** @file Main file for connect shell Driver1 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellDriver1CommandsLib.h" /** Create all handles a...
ShellPkg/Library/UefiShellDriver1CommandsLib/Connect.c
null
null
null
null
null
source
edk2
/** @file Main file for DevTree shell Driver1 function. (C) Copyright 2014-2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellDriver1CommandsLib.h" STATIC CONST SHELL_PA...
ShellPkg/Library/UefiShellDriver1CommandsLib/DevTree.c
null
null
null
null
null
source
edk2
/** @file Main file for devices shell Driver1 function. (C) Copyright 2012-2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellDriver1CommandsLib.h" /** Get lots of inf...
ShellPkg/Library/UefiShellDriver1CommandsLib/Devices.c
null
null
null
null
null
source
edk2
/** @file Main file for Dh shell Driver1 function. (C) Copyright 2014-2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR> (C) Copyright 2017 Hewlett Packard Enterprise Development LP<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #...
ShellPkg/Library/UefiShellDriver1CommandsLib/Dh.c
null
null
null
null
null
source
edk2
/** @file Main file for Disconnect shell Driver1 function. (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR> (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/...
ShellPkg/Library/UefiShellDriver1CommandsLib/Disconnect.c
null
null
null
null
null
source
edk2
/** @file Main file for Drivers shell Driver1 function. (C) Copyright 2012-2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2010 - 2019, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellDriver1CommandsLib.h" #define MAX_LEN_DRIVE...
ShellPkg/Library/UefiShellDriver1CommandsLib/Drivers.c
null
null
null
null
null
source
edk2
/** @file Main file for DrvCfg shell Driver1 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellDriver1CommandsLib.h" #include <Protocol/HiiConfig...
ShellPkg/Library/UefiShellDriver1CommandsLib/DrvCfg.c
null
null
null
null
null
source
edk2
/** @file Main file for DrvDiag shell Driver1 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellDriver1CommandsLib.h" STATIC CONST EFI_GUID *Di...
ShellPkg/Library/UefiShellDriver1CommandsLib/DrvDiag.c
null
null
null
null
null
source
edk2
/** @file Main file for OpenInfo shell Driver1 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellDriver1CommandsLib.h" STATIC CONST CHAR16 Stri...
ShellPkg/Library/UefiShellDriver1CommandsLib/OpenInfo.c
null
null
null
null
null
source
edk2
/** @file Main file for Reconnect shell Driver1 function. Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR> (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> (C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ ...
ShellPkg/Library/UefiShellDriver1CommandsLib/Reconnect.c
null
null
null
null
null
source
edk2
/** @file Main file for NULL named library for level 1 shell command functions. Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellDriver1CommandsLib.h" STATIC CONST CHAR16 mFileName[] = L"Driver1Commands"; EFI...
ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.c
null
null
null
null
null
source
edk2
/** @file Main file for NULL named library for Profile1 shell command functions. Copyright (c) 2010 - 2016, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include <Uefi.h> #include <Guid/GlobalVariable.h> #include <Guid/ConsoleInDevice.h> #include <...
ShellPkg/Library/UefiShellDriver1CommandsLib/UefiShellDriver1CommandsLib.h
null
null
null
null
null
source
edk2
/** @file Main file for Unload shell Driver1 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellDriver1CommandsLib.h" /** Function to dump Load...
ShellPkg/Library/UefiShellDriver1CommandsLib/Unload.c
null
null
null
null
null
source
edk2
/** @file Main file for NULL named library for install1 shell command functions. Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include <Library/BcfgCommandLib.h> /** Constructor for the Shell Level 1 Commands library. Install the ...
ShellPkg/Library/UefiShellInstall1CommandsLib/UefiShellInstall1CommandsLib.c
null
null
null
null
null
source
edk2
/** @file Main file for exit shell level 1 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel1CommandsLib.h" STATIC CONST SHELL_PARAM_ITEM ...
ShellPkg/Library/UefiShellLevel1CommandsLib/Exit.c
null
null
null
null
null
source
edk2
/** @file Main file for endfor and for shell level 1 functions. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel1CommandsLib.h" #include <Library/Pr...
ShellPkg/Library/UefiShellLevel1CommandsLib/For.c
null
null
null
null
null
source
edk2
/** @file Main file for goto shell level 1 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel1CommandsLib.h" /** Function for 'goto' comm...
ShellPkg/Library/UefiShellLevel1CommandsLib/Goto.c
null
null
null
null
null
source
edk2
/** @file Main file for If and else shell level 1 function. (C) Copyright 2013-2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel1CommandsLib.h" #include <Library/P...
ShellPkg/Library/UefiShellLevel1CommandsLib/If.c
null
null
null
null
null
source
edk2
/** @file Main file for Shift shell level 1 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel1CommandsLib.h" /** Function for 'shift' co...
ShellPkg/Library/UefiShellLevel1CommandsLib/Shift.c
null
null
null
null
null
source
edk2
/** @file Main file for stall shell level 1 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel1CommandsLib.h" /** Function for 'stall' co...
ShellPkg/Library/UefiShellLevel1CommandsLib/Stall.c
null
null
null
null
null
source
edk2
/** @file Main file for NULL named library for level 1 shell command functions. (C) Copyright 2013 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel1CommandsLib.h" STA...
ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.c
null
null
null
null
null
source
edk2
/** @file Main file for NULL named library for level 1 shell command functions. Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include <Uefi.h> #include <Guid/ShellLibHiiGuid.h> #include <Protocol/Shell.h> #include <Proto...
ShellPkg/Library/UefiShellLevel1CommandsLib/UefiShellLevel1CommandsLib.h
null
null
null
null
null
source
edk2
/** @file Main file for attrib shell level 2 function. (C) Copyright 2014-2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel2CommandsLib.h" STATIC CONST CHAR16 Al...
ShellPkg/Library/UefiShellLevel2CommandsLib/Attrib.c
null
null
null
null
null
source
edk2
/** @file Main file for attrib shell level 2 function. (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR> (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> Copyright (c) 2018, Dell Technologies. All rights res...
ShellPkg/Library/UefiShellLevel2CommandsLib/Cd.c
null
null
null
null
null
source
edk2
/** @file Main file for cp shell level 2 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2019, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel2CommandsLib.h" #include <Guid/FileSystemInfo.h> ...
ShellPkg/Library/UefiShellLevel2CommandsLib/Cp.c
null
null
null
null
null
source
edk2
/** @file Main file for attrib shell level 2 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2019, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel2CommandsLib.h" // This function was from fr...
ShellPkg/Library/UefiShellLevel2CommandsLib/Load.c
null
null
null
null
null
source
edk2
/** @file Main file for ls shell level 2 function. (C) Copyright 2013-2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel2CommandsLib.h" #include <Guid/FileSystemInf...
ShellPkg/Library/UefiShellLevel2CommandsLib/Ls.c
null
null
null
null
null
source
edk2
/** @file Main file for map shell level 2 command. Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> (C) Copyright 2013-2015 Hewlett-Packard Development Company, L.P.<BR> (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ ...
ShellPkg/Library/UefiShellLevel2CommandsLib/Map.c
null
null
null
null
null
source
edk2
/** @file Main file for attrib shell level 2 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel2CommandsLib.h" /** Main function of the 'Mk...
ShellPkg/Library/UefiShellLevel2CommandsLib/MkDir.c
null
null
null
null
null
source
edk2
/** @file Main file for mv shell level 2 function. (C) Copyright 2013-2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2019, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel2CommandsLib.h" /** function to determine...
ShellPkg/Library/UefiShellLevel2CommandsLib/Mv.c
null
null
null
null
null
source
edk2
/** @file Main file for Parse shell level 2 function. (C) Copyright 2013-2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel2CommandsLib.h" /** Check if data is c...
ShellPkg/Library/UefiShellLevel2CommandsLib/Parse.c
null
null
null
null
null
source
edk2
/** @file Main file for attrib shell level 2 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel2CommandsLib.h" STATIC CONST SHELL_PARAM_ITE...
ShellPkg/Library/UefiShellLevel2CommandsLib/Reset.c
null
null
null
null
null
source
edk2
/** @file Main file for attrib shell level 2 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel2CommandsLib.h" STATIC CONST SHELL_PARAM_ITE...
ShellPkg/Library/UefiShellLevel2CommandsLib/Rm.c
null
null
null
null
null
source
edk2
/** @file Main file for attrib shell level 2 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel2CommandsLib.h" /** Print out each environ...
ShellPkg/Library/UefiShellLevel2CommandsLib/Set.c
null
null
null
null
null
source
edk2
/** @file Main file for time, timezone, and date shell level 2 and shell level 3 functions. (C) Copyright 2012-2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel2Co...
ShellPkg/Library/UefiShellLevel2CommandsLib/TimeDate.c
null
null
null
null
null
source
edk2
/** @file Main file for NULL named library for level 2 shell command functions. these functions are: attrib, cd, cp, date*, time*, load, ls, map, mkdir, mv, parse, rm, reset, set, timezone*, vol * functions are non-interactive only Copyright (c) 2014 Hewlett-Packard Developmen...
ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.c
null
null
null
null
null
source
edk2
/** @file Main file for NULL named library for level 2 shell command functions. these functions are: attrib, cd, cp, date*, time*, rm, reset, load, ls, map, mkdir, mv, parse, set, timezone* * functions are non-interactive only Copyright (c) 2009 - 2018, Intel Corporation. All ri...
ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.h
null
null
null
null
null
source
edk2
/** @file Main file for vol shell level 2 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel2CommandsLib.h" #include <Guid/FileSystemInfo.h>...
ShellPkg/Library/UefiShellLevel2CommandsLib/Vol.c
null
null
null
null
null
source
edk2
/** @file Main file for Alias shell level 3 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel3CommandsLib.h" #include <Library/ShellLib.h...
ShellPkg/Library/UefiShellLevel3CommandsLib/Alias.c
null
null
null
null
null
source
edk2
/** @file Main file for attrib shell level 2 function. (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR> (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #...
ShellPkg/Library/UefiShellLevel3CommandsLib/Cls.c
null
null
null
null
null
source
edk2
/** @file Main file for Echo shell level 3 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel3CommandsLib.h" #include <Library/ShellLib.h>...
ShellPkg/Library/UefiShellLevel3CommandsLib/Echo.c
null
null
null
null
null
source
edk2
/** @file Main file for GetMtc shell level 3 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel3CommandsLib.h" #include <Library/ShellLib....
ShellPkg/Library/UefiShellLevel3CommandsLib/GetMtc.c
null
null
null
null
null
source
edk2
/** @file Main file for Help shell level 3 function. Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved. <BR> Copyright (c) 2014, ARM Limited. All rights reserved. <BR> (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include...
ShellPkg/Library/UefiShellLevel3CommandsLib/Help.c
null
null
null
null
null
source
edk2
/** @file Main file for Pause shell level 3 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel3CommandsLib.h" STATIC CONST SHELL_PARAM_ITE...
ShellPkg/Library/UefiShellLevel3CommandsLib/Pause.c
null
null
null
null
null
source
edk2
/** @file Main file for Touch shell level 3 function. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel3CommandsLib.h" #include <Library/ShellLib.h...
ShellPkg/Library/UefiShellLevel3CommandsLib/Touch.c
null
null
null
null
null
source
edk2
/** @file Main file for Type shell level 3 function. (C) Copyright 2013-2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2019, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel3CommandsLib.h" #include <Library/ShellL...
ShellPkg/Library/UefiShellLevel3CommandsLib/Type.c
null
null
null
null
null
source
edk2
/** @file Main file for NULL named library for level 3 shell command functions. (C) Copyright 2014 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellLevel3CommandsLib.h" CON...
ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.c
null
null
null
null
null
source
edk2
/** @file header file for NULL named library for level 3 shell command functions. Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include <Uefi.h> #include <Guid/ShellLibHiiGuid.h> #include <Protocol/Shell.h> #include <Pr...
ShellPkg/Library/UefiShellLevel3CommandsLib/UefiShellLevel3CommandsLib.h
null
null
null
null
null
source
edk2
/** @file Main file for Ver shell level 3 function. (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR> (C) Copyright 2013-2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ ...
ShellPkg/Library/UefiShellLevel3CommandsLib/Ver.c
null
null
null
null
null
source
edk2
/** @file Provides interface to shell functionality for shell commands and applications. (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR> Copyright 2016-2018 Dell Technologies.<BR> Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR> Copyright (C) 2023, Apple Inc. All rights...
ShellPkg/Library/UefiShellLib/UefiShellLib.c
null
null
null
null
null
source
edk2
/** @file Provides interface to shell functionality for shell commands and applications. (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR> Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include <Uefi.h> #i...
ShellPkg/Library/UefiShellLib/UefiShellLib.h
null
null
null
null
null
source
edk2
/** @file The implementation for Shell command ifconfig based on IP4Config2 protocol. (C) Copyright 2013-2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellNetwork1Comma...
ShellPkg/Library/UefiShellNetwork1CommandsLib/Ifconfig.c
null
null
null
null
null
source
edk2
/** @file The implementation for Ping shell command. (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR> (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #in...
ShellPkg/Library/UefiShellNetwork1CommandsLib/Ping.c
null
null
null
null
null
source
edk2
/** @file Main file for NULL named library for network1 shell command functions. Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellNetwork1CommandsLib.h" CONST CHAR16 gShellNetwork1FileName[] = L"ShellCommands"; EFI_HI...
ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.c
null
null
null
null
null
source
edk2
/** @file header file for NULL named library for network1 shell command functions. Copyright (c) 2010 - 2016, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include <Uefi.h> #include <Guid/ShellLibHiiGuid.h> #include <Protocol/Cpu.h> #include <Pr...
ShellPkg/Library/UefiShellNetwork1CommandsLib/UefiShellNetwork1CommandsLib.h
null
null
null
null
null
source
edk2
/** @file The implementation for Shell command IfConfig6. Copyright (c) 2016, Intel Corporation. All rights reserved.<BR> (C) Copyright 2017 Hewlett Packard Enterprise Development LP<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellNetwork2CommandsLib.h" enum { IfConfig6OpList = 1,...
ShellPkg/Library/UefiShellNetwork2CommandsLib/Ifconfig6.c
null
null
null
null
null
source
edk2
/** @file The implementation for Ping6 application. Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellNetwork2CommandsLib.h" #define PING6_DEFAULT_TIMEOUT 5000 #define PING6_MAX_SEND_NUMBER 10000 #define PING6_MAX_BUFF...
ShellPkg/Library/UefiShellNetwork2CommandsLib/Ping6.c
null
null
null
null
null
source
edk2
/** @file Main file for NULL named library for network2 shell command functions. Copyright (c) 2016, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include "UefiShellNetwork2CommandsLib.h" CONST CHAR16 gShellNetwork2FileName[] = L"ShellCommands"; EFI_HII_HANDL...
ShellPkg/Library/UefiShellNetwork2CommandsLib/UefiShellNetwork2CommandsLib.c
null
null
null
null
null
source
edk2
/** @file Main file for NULL named library for network2 shell command functions. Copyright (c) 2016, Intel Corporation. All rights reserved. <BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include <Protocol/Cpu.h> #include <Protocol/ServiceBinding.h> #include <Protocol/Ip6.h> #include <Pro...
ShellPkg/Library/UefiShellNetwork2CommandsLib/UefiShellNetwork2CommandsLib.h
null
null
null
null
null
source
edk2
/** @file MockShellCommandLib.h Google Test mocks for ShellCommandLib Copyright (c) Microsoft Corporation. SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include <Library/GoogleTestLib.h> #include <Library/FunctionMockLib.h> extern "C" { #include <Uefi.h> #include <Library/ShellCommandLib.h...
ShellPkg/Test/Mock/Include/GoogleTest/Library/MockShellCommandLib.h
null
null
null
null
null
source
edk2
/** @file MockShellLib.h Google Test mocks for ShellLib Copyright (c) Microsoft Corporation. SPDX-License-Identifier: BSD-2-Clause-Patent **/ #pragma once #include <Library/GoogleTestLib.h> #include <Library/FunctionMockLib.h> extern "C" { #include <Uefi.h> #include <Library/ShellLib.h> } struct MockShell...
ShellPkg/Test/Mock/Include/GoogleTest/Library/MockShellLib.h
null
null
null
null
null
source
edk2
/** @file MockShellCommandLib.cpp Google Test mocks for ShellCommandLib Copyright (c) Microsoft Corporation. SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include <GoogleTest/Library/MockShellCommandLib.h> MOCK_INTERFACE_DEFINITION (MockShellCommandLib); MOCK_FUNCTION_DEFINITION (MockShellCommandLib, Shel...
ShellPkg/Test/Mock/Library/GoogleTest/MockShellCommandLib/MockShellCommandLib.cpp
null
null
null
null
null
source
edk2
/** @file MockShellLib.cpp Google Test mocks for ShellLib Copyright (c) Microsoft Corporation. SPDX-License-Identifier: BSD-2-Clause-Patent **/ #include <GoogleTest/Library/MockShellLib.h> // // Global Variables that are not const // EFI_SHELL_PARAMETERS_PROTOCOL *gEfiShellParametersProtocol; EFI_SHELL_PROTOC...
ShellPkg/Test/Mock/Library/GoogleTest/MockShellLib/MockShellLib.cpp
null
null
null
null
null
source
edk2
# SignedCapsulePkg This package provides a signed capsule solution in EDKII to support a secure capsule update and recovery solution. Source Repository: https://github.com/tianocore/edk2/tree/master/SignedCapsulePkg A whitepaper to describe the capsule design: https://github.com/tianocore-docs/Docs/raw/master/White_...
SignedCapsulePkg/Readme.md
null
null
null
null
null