diff options
author | ydong10 <ydong10@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-02-18 02:11:53 +0000 |
---|---|---|
committer | ydong10 <ydong10@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-02-18 02:11:53 +0000 |
commit | cbdf19a53e502ed4824c587f6b19e8f138032875 (patch) | |
tree | 3802c4da888b8a7fda905383e33350bbb9961e94 /PerformancePkg/Dp_App | |
parent | ba319b960e4a6d63c0c296389baf43a1627a3b03 (diff) | |
download | edk2-cbdf19a53e502ed4824c587f6b19e8f138032875.zip edk2-cbdf19a53e502ed4824c587f6b19e8f138032875.tar.gz edk2-cbdf19a53e502ed4824c587f6b19e8f138032875.tar.bz2 |
Refine coding style.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11323 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'PerformancePkg/Dp_App')
-rw-r--r-- | PerformancePkg/Dp_App/DpInternal.h | 34 | ||||
-rw-r--r-- | PerformancePkg/Dp_App/DpTrace.c | 2 |
2 files changed, 18 insertions, 18 deletions
diff --git a/PerformancePkg/Dp_App/DpInternal.h b/PerformancePkg/Dp_App/DpInternal.h index 9749012..d245406 100644 --- a/PerformancePkg/Dp_App/DpInternal.h +++ b/PerformancePkg/Dp_App/DpInternal.h @@ -62,7 +62,7 @@ extern UINT32 const NumCum; UINT64
GetDuration (
IN OUT MEASUREMENT_RECORD *Measurement
-);
+ );
/**
Determine whether the Measurement record is for an EFI Phase.
@@ -78,7 +78,7 @@ GetDuration ( BOOLEAN
IsPhase(
IN MEASUREMENT_RECORD *Measurement
-);
+ );
/**
Get the file name portion of the Pdb File Name.
@@ -96,7 +96,7 @@ VOID GetShortPdbFileName (
IN CHAR8 *PdbFileName,
OUT CHAR16 *UnicodeBuffer
-);
+ );
/**
Get a human readable name for an image handle.
@@ -110,7 +110,7 @@ GetShortPdbFileName ( VOID
GetNameFromHandle (
IN EFI_HANDLE Handle
-);
+ );
/**
Calculate the Duration in microseconds.
@@ -128,7 +128,7 @@ GetNameFromHandle ( UINT64
DurationInMicroSeconds (
IN UINT64 Duration
-);
+ );
/**
Formatted Print using a Hii Token to reference the localized format string.
@@ -143,7 +143,7 @@ UINTN PrintToken (
IN UINT16 Token,
...
-);
+ );
/**
Get index of Measurement Record's match in the CumData array.
@@ -161,7 +161,7 @@ PrintToken ( INTN
GetCumulativeItem(
IN MEASUREMENT_RECORD *Measurement
-);
+ );
/**
Collect verbose statistics about the logged performance measurements.
@@ -180,7 +180,7 @@ GetCumulativeItem( VOID
GatherStatistics(
VOID
-);
+ );
/**
Gather and print ALL Trace Records.
@@ -204,7 +204,7 @@ VOID DumpAllTrace(
IN UINTN Limit,
IN BOOLEAN ExcludeFlag
-);
+ );
/**
Gather and print Raw Trace Records.
@@ -228,7 +228,7 @@ VOID DumpRawTrace(
IN UINTN Limit,
IN BOOLEAN ExcludeFlag
-);
+ );
/**
Gather and print Major Phase metrics.
@@ -239,7 +239,7 @@ DumpRawTrace( VOID
ProcessPhases(
IN UINT64 Ticker
-);
+ );
/**
@@ -252,7 +252,7 @@ ProcessPhases( EFI_STATUS
ProcessHandles(
IN BOOLEAN ExcludeFlag
-);
+ );
/**
@@ -264,7 +264,7 @@ ProcessHandles( VOID
ProcessPeims(
VOID
-);
+ );
/**
Gather and print global data.
@@ -278,7 +278,7 @@ ProcessPeims( VOID
ProcessGlobal(
VOID
-);
+ );
/**
Gather and print cumulative data.
@@ -292,7 +292,7 @@ ProcessGlobal( VOID
ProcessCumulative(
VOID
-);
+ );
/**
Gather and print ALL Profiling Records.
@@ -316,7 +316,7 @@ VOID DumpAllProfile(
IN UINTN Limit,
IN BOOLEAN ExcludeFlag
-);
+ );
/**
Gather and print Raw Profile Records.
@@ -340,5 +340,5 @@ VOID DumpRawProfile(
IN UINTN Limit,
IN BOOLEAN ExcludeFlag
-);
+ );
#endif
diff --git a/PerformancePkg/Dp_App/DpTrace.c b/PerformancePkg/Dp_App/DpTrace.c index b60d7c9..f4cdb88 100644 --- a/PerformancePkg/Dp_App/DpTrace.c +++ b/PerformancePkg/Dp_App/DpTrace.c @@ -327,7 +327,7 @@ DumpRawTrace( **/
VOID
ProcessPhases(
- UINT64 Ticker
+ IN UINT64 Ticker
)
{
MEASUREMENT_RECORD Measurement;
|