Changeset 58466 in vbox for trunk/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDriver1CommandsLib/Devices.c
- Timestamp:
- Oct 29, 2015 4:30:44 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103777
- 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/UefiShellDriver1CommandsLib/Devices.c
r58459 r58466 20 20 21 21 @param[in] TheHandle The device handle to get info on. 22 @param[in, out] Type On successful return R, B, or D (root, bus, or 22 @param[in, out] Type On successful return R, B, or D (root, bus, or 23 23 device) will be placed in this buffer. 24 @param[in, out] Cfg On successful return this buffer will be 24 @param[in, out] Cfg On successful return this buffer will be 25 25 TRUE if the handle has configuration, FALSE 26 26 otherwise. 27 @param[in, out] Diag On successful return this buffer will be 27 @param[in, out] Diag On successful return this buffer will be 28 28 TRUE if the handle has disgnostics, FALSE 29 29 otherwise. 30 @param[in, out] Parents On successful return this buffer will be 30 @param[in, out] Parents On successful return this buffer will be 31 31 contain the number of parent handles. 32 @param[in, out] Devices On successful return this buffer will be 32 @param[in, out] Devices On successful return this buffer will be 33 33 contain the number of devices controlled. 34 @param[in, out] Children On successful return this buffer will be 34 @param[in, out] Children On successful return this buffer will be 35 35 contain the number of child handles. 36 36 @param[out] Name The pointer to a buffer that will be allocated … … 60 60 UINTN Count; 61 61 62 if (TheHandle == NULL 62 if (TheHandle == NULL 63 63 || Type == NULL 64 64 || Cfg == NULL … … 255 255 break; 256 256 } 257 257 258 258 } 259 259 … … 261 261 FreePool(HandleList); 262 262 } 263 263 264 264 } 265 265 SHELL_FREE_NON_NULL(Language);
Note:
See TracChangeset
for help on using the changeset viewer.