HomeSort by relevance Sort by last modified time
    Searched refs:PerformanceEx (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxePerformanceLib/
DxePerformanceLib.c 5 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;
58 Status = gBS->LocateProtocol (&gPerformanceExProtocolGuid, NULL, (VOID **) &PerformanceEx);
60 ASSERT (PerformanceEx != NULL);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/SmmPerformanceLib/
SmmPerformanceLib.c 5 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;
80 Status = gSmst->SmmLocateProtocol (&gSmmPerformanceExProtocolGuid, NULL, (VOID **) &PerformanceEx);
82 ASSERT (PerformanceEx != NULL);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeSmmPerformanceLib/
DxeSmmPerformanceLib.c 48 // The cached Performance Protocol and PerformanceEx Protocol interface.
87 The function caches the pointers to PerformanceEx protocol and Performance Protocol.
89 The function locates PerformanceEx protocol and Performance Protocol from protocol database.
91 @retval EFI_SUCCESS PerformanceEx protocol or Performance Protocol is successfully located.
92 @retval EFI_NOT_FOUND Both PerformanceEx protocol and Performance Protocol are not located to log performance.
102 PERFORMANCE_EX_PROTOCOL *PerformanceEx;
108 Status = gBS->LocateProtocol (&gPerformanceExProtocolGuid, NULL, (VOID **) &PerformanceEx);
110 ASSERT (PerformanceEx != NULL);
112 // Cache PerformanceEx Protocol.
114 mPerformanceEx = PerformanceEx;
    [all...]

Completed in 375 milliseconds