Searched defs:PerformanceEx (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxePerformanceLib/
H A DDxePerformanceLib.c5 data. It consumes PerformanceEx or Performance Protocol published by DxeCorePerformanceLib
6 to log performance data. If both PerformanceEx and Performance Protocol is not available, it does not log any
31 // The cached Performance Protocol and PerformanceEx Protocol interface.
37 The function caches the pointers to PerformanceEx protocol and Performance Protocol.
39 The function locates PerformanceEx protocol and Performance Protocol from protocol database.
41 @retval EFI_SUCCESS PerformanceEx protocol or Performance Protocol is successfully located.
42 @retval EFI_NOT_FOUND Both PerformanceEx protocol and Performance Protocol are not located to log performance.
52 PERFORMANCE_EX_PROTOCOL *PerformanceEx; local
58 Status = gBS->LocateProtocol (&gPerformanceExProtocolGuid, NULL, (VOID **) &PerformanceEx);
60 ASSERT (PerformanceEx !
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/SmmPerformanceLib/
H A DSmmPerformanceLib.c5 data. It consumes SMM PerformanceEx or Performance Protocol published by SmmCorePerformanceLib
6 to log performance data. If both SMM PerformanceEx and Performance Protocol are not available, it does not log any
30 // The cached SMM Performance Protocol and SMM PerformanceEx Protocol interface.
59 The function caches the pointers to SMM PerformanceEx protocol and Performance Protocol.
61 The function locates SMM PerformanceEx protocol and Performance Protocol from protocol database.
63 @retval EFI_SUCCESS SMM PerformanceEx protocol or Performance Protocol is successfully located.
64 @retval EFI_NOT_FOUND Both SMM PerformanceEx protocol and Performance Protocol are not located to log performance.
74 PERFORMANCE_EX_PROTOCOL *PerformanceEx; local
80 Status = gSmst->SmmLocateProtocol (&gSmmPerformanceExProtocolGuid, NULL, (VOID **) &PerformanceEx);
82 ASSERT (PerformanceEx !
[all...]

Completed in 32 milliseconds