VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/VBoxPkg/Library/VBoxDebugLib/VBoxPrintGuid.c@ 48674

Last change on this file since 48674 was 48674, checked in by vboxsync, 11 years ago

EFI: Export newly imported tinaocore UEFI sources to OSE.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1/* $Id: VBoxPrintGuid.c 48674 2013-09-25 08:26:15Z vboxsync $ */
2/** @file
3 * VBoxPrintGuid.c - Implementation of the VBoxPrintGuid() debug logging routine.
4 */
5
6/*
7 * Copyright (C) 2009-2010 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28
29
30/*******************************************************************************
31* Header Files *
32*******************************************************************************/
33#include "VBoxDebugLib.h"
34#include "DevEFI.h"
35
36
37/**
38 * Prints a EFI GUID.
39 *
40 * @returns Number of bytes printed.
41 *
42 * @param pGuid The GUID to print
43 */
44size_t VBoxPrintGuid(CONST EFI_GUID *pGuid)
45{
46 VBoxPrintHex(pGuid->Data1, sizeof(pGuid->Data1));
47 VBoxPrintChar('-');
48 VBoxPrintHex(pGuid->Data2, sizeof(pGuid->Data2));
49 VBoxPrintChar('-');
50 VBoxPrintHex(pGuid->Data3, sizeof(pGuid->Data3));
51 VBoxPrintChar('-');
52 VBoxPrintHex(pGuid->Data4[0], sizeof(pGuid->Data4[0]));
53 VBoxPrintHex(pGuid->Data4[1], sizeof(pGuid->Data4[1]));
54 VBoxPrintChar('-');
55 VBoxPrintHex(pGuid->Data4[2], sizeof(pGuid->Data4[2]));
56 VBoxPrintHex(pGuid->Data4[3], sizeof(pGuid->Data4[3]));
57 VBoxPrintHex(pGuid->Data4[4], sizeof(pGuid->Data4[4]));
58 VBoxPrintHex(pGuid->Data4[5], sizeof(pGuid->Data4[5]));
59 VBoxPrintHex(pGuid->Data4[6], sizeof(pGuid->Data4[6]));
60 VBoxPrintHex(pGuid->Data4[7], sizeof(pGuid->Data4[7]));
61 return 37;
62}
63
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette