Changeset 58466 in vbox for trunk/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/BufferImage.c
- Timestamp:
- Oct 29, 2015 4:30:44 AM (9 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware
- Property svn:mergeinfo changed
/vendor/edk2/current merged: 103769-103776
- Property svn:mergeinfo changed
-
trunk/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/BufferImage.c
r58459 r58466 2 2 Defines HBufferImage - the view of the file that is visible at any point, 3 3 as well as the event handlers for editing the file 4 4 5 5 Copyright (c) 2005 - 2014, Intel Corporation. All rights reserved. <BR> 6 6 This program and the accompanying materials … … 139 139 140 140 /** 141 Backup function for HBufferImage. Only a few fields need to be backup. 141 Backup function for HBufferImage. Only a few fields need to be backup. 142 142 This is for making the file buffer refresh as few as possible. 143 143 … … 191 191 CurrentLine 192 192 NumLines 193 ListHead 193 ListHead 194 194 195 195 @retval EFI_SUCCESS The operation was successful. … … 948 948 Status = HMemImageRead (MemOffset, MemSize, Recover); 949 949 break; 950 950 951 951 default: 952 952 Status = EFI_NOT_FOUND; … … 1015 1015 Status = HMemImageSave (MemOffset, MemSize); 1016 1016 break; 1017 1017 1018 1018 default: 1019 1019 Status = EFI_NOT_FOUND; … … 1032 1032 Fields affected: 1033 1033 NumLines 1034 Lines 1034 Lines 1035 1035 1036 1036 @retval NULL create line failed. … … 1374 1374 1375 1375 @param[in] FileRow Row of file position ( start from 1 ). 1376 1376 1377 1377 @retval TRUE It is above the current screen. 1378 1378 @retval FALSE It is not above the current screen. … … 1886 1886 /** 1887 1887 Delete character from buffer. 1888 1888 1889 1889 @param[in] Pos Position, Pos starting from 0. 1890 1890 @param[in] Count The Count of characters to delete. 1891 1891 @param[out] DeleteBuffer The DeleteBuffer. 1892 1892 1893 @retval EFI_SUCCESS Success 1893 @retval EFI_SUCCESS Success 1894 1894 **/ 1895 1895 EFI_STATUS … … 2020 2020 @param[in] AddBuffer Add buffer. 2021 2021 2022 @retval EFI_SUCCESS Success. 2022 @retval EFI_SUCCESS Success. 2023 2023 **/ 2024 2024 EFI_STATUS … … 2173 2173 /** 2174 2174 Change the raw buffer to a list of lines for the UI. 2175 2175 2176 2176 @param[in] Buffer The pointer to the buffer to fill. 2177 2177 @param[in] Bytes The size of the buffer in bytes. … … 2239 2239 /** 2240 2240 Change the list of lines from the UI to a raw buffer. 2241 2241 2242 2242 @param[in] Buffer The pointer to the buffer to fill. 2243 2243 @param[in] Bytes The size of the buffer in bytes.
Note:
See TracChangeset
for help on using the changeset viewer.