Changeset 58466 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Application/VariableInfo
- 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/MdeModulePkg/Application/VariableInfo/VariableInfo.c
r48674 r58466 1 1 /** @file 2 If the Variable services have PcdVariableCollectStatistics set to TRUE then 2 If the Variable services have PcdVariableCollectStatistics set to TRUE then 3 3 the EFI system table will contain statistical information about variable usage 4 4 an this utility will print out the information. You can use console redirection 5 5 to capture the data. 6 6 7 7 Copyright (c) 2006 - 2007, Intel Corporation. All rights reserved.<BR> 8 This program and the accompanying materials 9 are licensed and made available under the terms and conditions of the BSD License 10 which accompanies this distribution. The full text of the license may be found at 11 http://opensource.org/licenses/bsd-license.php 8 This program and the accompanying materials 9 are licensed and made available under the terms and conditions of the BSD License 10 which accompanies this distribution. The full text of the license may be found at 11 http://opensource.org/licenses/bsd-license.php 12 12 13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 15 15 16 16 **/ … … 24 24 /** 25 25 The user Entry Point for Application. The user code starts with this function 26 as the real entry point for the image goes into a library that calls this 26 as the real entry point for the image goes into a library that calls this 27 27 function. 28 28 29 29 30 @param[in] ImageHandle The firmware allocated handle for the EFI image. 30 @param[in] ImageHandle The firmware allocated handle for the EFI image. 31 31 @param[in] SystemTable A pointer to the EFI System Table. 32 32 33 33 @retval EFI_SUCCESS The entry point is executed successfully. 34 34 @retval other Some error occurs when executing this entry point. … … 53 53 if (!VariableInfo->Volatile) { 54 54 Print ( 55 L"%g R%03d(%03d) W%03d D%03d:%s\n", 56 &VariableInfo->VendorGuid, 55 L"%g R%03d(%03d) W%03d D%03d:%s\n", 56 &VariableInfo->VendorGuid, 57 57 VariableInfo->ReadCount, 58 58 VariableInfo->CacheCount, … … 71 71 if (VariableInfo->Volatile) { 72 72 Print ( 73 L"%g R%03d(%03d) W%03d D%03d:%s\n", 74 &VariableInfo->VendorGuid, 73 L"%g R%03d(%03d) W%03d D%03d:%s\n", 74 &VariableInfo->VendorGuid, 75 75 VariableInfo->ReadCount, 76 76 VariableInfo->CacheCount,
Note:
See TracChangeset
for help on using the changeset viewer.