Searched refs:LogEntryKey (Results 1 - 14 of 14) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxeSmmPerformanceLib/
H A DDxeSmmPerformanceLib.c275 SmmPerfCommData->LogEntryKey = 0;
345 SmmPerfCommData->LogEntryKey = 0;
363 Attempts to retrieve the performance log entry specified by LogEntryKey. If LogEntryKey is
366 then no entry is retrieved and zero is returned. If LogEntryKey is not zero, then the performance
367 log entry associated with LogEntryKey is retrieved, and the key for the next entry in the log is
368 returned. If LogEntryKey is the key for the last entry in the log, then the last log entry is
370 log is returned. If LogEntryKey is equal this implementation specific non-zero key value, then no entry
373 If LogEntryKey is not a valid log entry key for the performance measurement log, then ASSERT().
381 @param LogEntryKey O
401 GetPerformanceMeasurementEx( IN UINTN LogEntryKey, OUT CONST VOID **Handle, OUT CONST CHAR8 **Token, OUT CONST CHAR8 **Module, OUT UINT64 *StartTimeStamp, OUT UINT64 *EndTimeStamp, OUT UINT32 *Identifier ) argument
504 GetPerformanceMeasurement( IN UINTN LogEntryKey, OUT CONST VOID **Handle, OUT CONST CHAR8 **Token, OUT CONST CHAR8 **Module, OUT UINT64 *StartTimeStamp, OUT UINT64 *EndTimeStamp ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/PerformancePkg/Dp_App/
H A DDpTrace.c53 UINTN LogEntryKey; local
56 LogEntryKey = 0;
57 while ((LogEntryKey = GetPerformanceMeasurementEx (
58 LogEntryKey,
132 UINTN LogEntryKey; local
180 LogEntryKey = 0;
184 ((LogEntryKey = GetPerformanceMeasurementEx (
185 LogEntryKey,
288 UINTN LogEntryKey; local
310 LogEntryKey
382 UINTN LogEntryKey; local
519 UINTN LogEntryKey; local
638 UINTN LogEntryKey; local
715 UINTN LogEntryKey; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/GenericBdsLib/
H A DPerformance.c158 UINTN LogEntryKey; local
234 LogEntryKey = 0;
235 while ((LogEntryKey = GetPerformanceMeasurement (
236 LogEntryKey,
252 LogEntryKey = 0;
254 while ((LogEntryKey = GetPerformanceMeasurement (
255 LogEntryKey,
298 LogEntryKey = 0;
300 while ((LogEntryKey = GetPerformanceMeasurement (
301 LogEntryKey,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/PeiPerformanceLib/
H A DPeiPerformanceLib.c266 Attempts to retrieve the performance log entry specified by LogEntryKey. If LogEntryKey is
269 then no entry is retrieved and zero is returned. If LogEntryKey is not zero, then the performance
270 log entry associated with LogEntryKey is retrieved, and the key for the next entry in the log is
271 returned. If LogEntryKey is the key for the last entry in the log, then the last log entry is
273 log is returned. If LogEntryKey is equal this implementation specific non-zero key value, then no entry
276 If LogEntryKey is not a valid log entry key for the performance measurement log, then ASSERT().
284 @param LogEntryKey On entry, the key of the performance measurement log entry to retrieve.
305 IN UINTN LogEntryKey,
332 // Make sure that LogEntryKey i
304 GetPerformanceMeasurementEx( IN UINTN LogEntryKey, OUT CONST VOID **Handle, OUT CONST CHAR8 **Token, OUT CONST CHAR8 **Module, OUT UINT64 *StartTimeStamp, OUT UINT64 *EndTimeStamp, OUT UINT32 *Identifier ) argument
459 GetPerformanceMeasurement( IN UINTN LogEntryKey, OUT CONST VOID **Handle, OUT CONST CHAR8 **Token, OUT CONST CHAR8 **Module, OUT UINT64 *StartTimeStamp, OUT UINT64 *EndTimeStamp ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/SmmCorePerformanceLib/
H A DSmmCorePerformanceLib.c281 Retrieves the performance log entry from the performance log specified by LogEntryKey.
285 @param LogEntryKey The key for the previous performance measurement log entry.
287 @param GaugeDataEntryEx The indirect pointer to the extended gauge data entry specified by LogEntryKey
290 @retval EFI_SUCCESS The GuageDataEntryEx is successfully found based on LogEntryKey.
291 @retval EFI_NOT_FOUND The LogEntryKey is the last entry (equals to the total entry number).
292 @retval EFI_INVALIDE_PARAMETER The LogEntryKey is not a valid entry (greater than the total entry number).
299 IN UINTN LogEntryKey,
307 if (LogEntryKey > NumberOfEntries) {
310 if (LogEntryKey == NumberOfEntries) {
319 *GaugeDataEntryEx = &GaugeEntryExArray[LogEntryKey];
298 GetGaugeEx( IN UINTN LogEntryKey, OUT GAUGE_DATA_ENTRY_EX **GaugeDataEntryEx ) argument
417 GetGauge( IN UINTN LogEntryKey, OUT GAUGE_DATA_ENTRY **GaugeDataEntry ) argument
583 UINTN LogEntryKey; local
894 GetPerformanceMeasurementEx( IN UINTN LogEntryKey, OUT CONST VOID **Handle, OUT CONST CHAR8 **Token, OUT CONST CHAR8 **Module, OUT UINT64 *StartTimeStamp, OUT UINT64 *EndTimeStamp, OUT UINT32 *Identifier ) argument
1054 GetPerformanceMeasurement( IN UINTN LogEntryKey, OUT CONST VOID **Handle, OUT CONST CHAR8 **Token, OUT CONST CHAR8 **Module, OUT UINT64 *StartTimeStamp, OUT UINT64 *EndTimeStamp ) argument
[all...]
H A DSmmCorePerformanceLibInternal.h118 Retrieves the performance log entry from the performance log specified by LogEntryKey.
122 @param LogEntryKey The key for the previous performance measurement log entry.
124 @param GaugeDataEntryEx The indirect pointer to the extended gauge data entry specified by LogEntryKey
127 @retval EFI_SUCCESS The GuageDataEntryEx is successfully found based on LogEntryKey.
128 @retval EFI_NOT_FOUND The LogEntryKey is the last entry (equals to the total entry number).
129 @retval EFI_INVALIDE_PARAMETER The LogEntryKey is not a valid entry (greater than the total entry number).
136 IN UINTN LogEntryKey,
213 Retrieves the performance log entry from the performance log specified by LogEntryKey.
217 @param LogEntryKey The key for the previous performance measurement log entry.
219 @param GaugeDataEntry The indirect pointer to the gauge data entry specified by LogEntryKey
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Include/Guid/
H A DPerformance.h141 UINTN LogEntryKey; member in struct:__anon11008
149 UINTN LogEntryKey; member in struct:__anon11009
225 Retrieves the performance log entry from the performance log specified by LogEntryKey.
229 @param LogEntryKey The key for the previous performance measurement log entry.
231 @param GaugeDataEntry Out parameter for the indirect pointer to the gauge data entry specified by LogEntryKey.
233 @retval EFI_SUCCESS The GuageDataEntry is successfully found based on LogEntryKey.
234 @retval EFI_NOT_FOUND There is no entry after the measurement referred to by LogEntryKey.
235 @retval EFI_INVALID_PARAMETER The LogEntryKey is not a valid entry, or GaugeDataEntry is NULL.
241 IN UINTN LogEntryKey,
320 Retrieves the performance log entry from the performance log specified by LogEntryKey
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxeCorePerformanceLib/
H A DDxeCorePerformanceLib.c267 Retrieves the performance log entry from the performance log specified by LogEntryKey.
271 @param LogEntryKey The key for the previous performance measurement log entry.
273 @param GaugeDataEntryEx The indirect pointer to the extended gauge data entry specified by LogEntryKey
276 @retval EFI_SUCCESS The GuageDataEntryEx is successfully found based on LogEntryKey.
277 @retval EFI_NOT_FOUND The LogEntryKey is the last entry (equals to the total entry number).
278 @retval EFI_INVALIDE_PARAMETER The LogEntryKey is not a valid entry (greater than the total entry number).
285 IN UINTN LogEntryKey,
293 if (LogEntryKey > NumberOfEntries) {
296 if (LogEntryKey == NumberOfEntries) {
305 *GaugeDataEntryEx = &GaugeEntryExArray[LogEntryKey];
284 GetGaugeEx( IN UINTN LogEntryKey, OUT GAUGE_DATA_ENTRY_EX **GaugeDataEntryEx ) argument
403 GetGauge( IN UINTN LogEntryKey, OUT GAUGE_DATA_ENTRY **GaugeDataEntry ) argument
651 GetPerformanceMeasurementEx( IN UINTN LogEntryKey, OUT CONST VOID **Handle, OUT CONST CHAR8 **Token, OUT CONST CHAR8 **Module, OUT UINT64 *StartTimeStamp, OUT UINT64 *EndTimeStamp, OUT UINT32 *Identifier ) argument
811 GetPerformanceMeasurement( IN UINTN LogEntryKey, OUT CONST VOID **Handle, OUT CONST CHAR8 **Token, OUT CONST CHAR8 **Module, OUT UINT64 *StartTimeStamp, OUT UINT64 *EndTimeStamp ) argument
[all...]
H A DDxeCorePerformanceLibInternal.h115 Retrieves the performance log entry from the performance log specified by LogEntryKey.
119 @param LogEntryKey The key for the previous performance measurement log entry.
121 @param GaugeDataEntryEx The indirect pointer to the extended gauge data entry specified by LogEntryKey
124 @retval EFI_SUCCESS The GuageDataEntryEx is successfully found based on LogEntryKey.
125 @retval EFI_NOT_FOUND The LogEntryKey is the last entry (equals to the total entry number).
126 @retval EFI_INVALIDE_PARAMETER The LogEntryKey is not a valid entry (greater than the total entry number).
133 IN UINTN LogEntryKey,
210 Retrieves the performance log entry from the performance log specified by LogEntryKey.
214 @param LogEntryKey The key for the previous performance measurement log entry.
216 @param GaugeDataEntry The indirect pointer to the gauge data entry specified by LogEntryKey
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxePerformanceLib/
H A DDxePerformanceLib.c189 Attempts to retrieve the performance log entry specified by LogEntryKey. If LogEntryKey is
192 then no entry is retrieved and zero is returned. If LogEntryKey is not zero, then the performance
193 log entry associated with LogEntryKey is retrieved, and the key for the next entry in the log is
194 returned. If LogEntryKey is the key for the last entry in the log, then the last log entry is
196 log is returned. If LogEntryKey is equal this implementation specific non-zero key value, then no entry
199 If LogEntryKey is not a valid log entry key for the performance measurement log, then ASSERT().
207 @param LogEntryKey On entry, the key of the performance measurement log entry to retrieve.
228 IN UINTN LogEntryKey,
255 Status = mPerformanceEx->GetGaugeEx (LogEntryKey
227 GetPerformanceMeasurementEx( IN UINTN LogEntryKey, OUT CONST VOID **Handle, OUT CONST CHAR8 **Token, OUT CONST CHAR8 **Module, OUT UINT64 *StartTimeStamp, OUT UINT64 *EndTimeStamp, OUT UINT32 *Identifier ) argument
398 GetPerformanceMeasurement( IN UINTN LogEntryKey, OUT CONST VOID **Handle, OUT CONST CHAR8 **Token, OUT CONST CHAR8 **Module, OUT UINT64 *StartTimeStamp, OUT UINT64 *EndTimeStamp ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/SmmPerformanceLib/
H A DSmmPerformanceLib.c211 Attempts to retrieve the performance log entry specified by LogEntryKey. If LogEntryKey is
214 then no entry is retrieved and zero is returned. If LogEntryKey is not zero, then the performance
215 log entry associated with LogEntryKey is retrieved, and the key for the next entry in the log is
216 returned. If LogEntryKey is the key for the last entry in the log, then the last log entry is
218 log is returned. If LogEntryKey is equal this implementation specific non-zero key value, then no entry
221 If LogEntryKey is not a valid log entry key for the performance measurement log, then ASSERT().
229 @param LogEntryKey On entry, the key of the performance measurement log entry to retrieve.
250 IN UINTN LogEntryKey,
277 Status = mPerformanceEx->GetGaugeEx (LogEntryKey
249 GetPerformanceMeasurementEx( IN UINTN LogEntryKey, OUT CONST VOID **Handle, OUT CONST CHAR8 **Token, OUT CONST CHAR8 **Module, OUT UINT64 *StartTimeStamp, OUT UINT64 *EndTimeStamp, OUT UINT32 *Identifier ) argument
420 GetPerformanceMeasurement( IN UINTN LogEntryKey, OUT CONST VOID **Handle, OUT CONST CHAR8 **Token, OUT CONST CHAR8 **Module, OUT UINT64 *StartTimeStamp, OUT UINT64 *EndTimeStamp ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Library/
H A DPerformanceLib.h91 Attempts to retrieve the performance log entry specified by LogEntryKey. If LogEntryKey is
94 then no entry is retrieved and zero is returned. If LogEntryKey is not zero, then the performance
95 log entry associated with LogEntryKey is retrieved, and the key for the next entry in the log is
96 returned. If LogEntryKey is the key for the last entry in the log, then the last log entry is
98 log is returned. If LogEntryKey is equal this implementation specific non-zero key value, then no entry
101 If LogEntryKey is not a valid log entry key for the performance measurement log, then ASSERT().
108 @param LogEntryKey On entry, the key of the performance measurement log entry to retrieve.
128 IN UINTN LogEntryKey,
209 Attempts to retrieve the performance log entry specified by LogEntryKey
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePerformanceLibNull/
H A DPerformanceLib.c97 Attempts to retrieve the performance log entry specified by LogEntryKey. If LogEntryKey is
100 then no entry is retrieved and zero is returned. If LogEntryKey is not zero, then the performance
101 log entry associated with LogEntryKey is retrieved, and the key for the next entry in the log is
102 returned. If LogEntryKey is the key for the last entry in the log, then the last log entry is
104 log is returned. If LogEntryKey is equal this implementation specific non-zero key value, then no entry
107 If LogEntryKey is not a valid log entry key for the performance measurement log, then ASSERT().
114 @param LogEntryKey On entry, the key of the performance measurement log entry to retrieve.
134 IN UINTN LogEntryKey,
230 Attempts to retrieve the performance log entry specified by LogEntryKey
133 GetPerformanceMeasurement( IN UINTN LogEntryKey, OUT CONST VOID **Handle, OUT CONST CHAR8 **Token, OUT CONST CHAR8 **Module, OUT UINT64 *StartTimeStamp, OUT UINT64 *EndTimeStamp ) argument
268 GetPerformanceMeasurementEx( IN UINTN LogEntryKey, OUT CONST VOID **Handle, OUT CONST CHAR8 **Token, OUT CONST CHAR8 **Module, OUT UINT64 *StartTimeStamp, OUT UINT64 *EndTimeStamp, OUT UINT32 *Identifier ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/Universal/Acpi/S3Resume2Pei/
H A DS3Resume.c261 UINTN LogEntryKey; local
325 LogEntryKey = 0;
326 while ((LogEntryKey = GetPerformanceMeasurement (
327 LogEntryKey,

Completed in 74 milliseconds