Home
last modified time | relevance | path

Searched refs:subCategory (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/api/core/perf/
H A Dcpu_perf_scope.h32 …const BASE_NS::string_view category, const BASE_NS::string_view subCategory, const BASE_NS::string… in CORE_BEGIN_NAMESPACE()
44 …const BASE_NS::string_view category, const BASE_NS::string_view subCategory, const BASE_NS::string… in CpuPerfScope() argument
45 : subCategory_(subCategory), name_(name) in CpuPerfScope()
73 #define CORE_CPU_PERF_BEGIN(timerName, category, subCategory, name) \ argument
74 CORE_NS::CpuPerfScope timerName(category, subCategory, name);
76 #define CORE_CPU_PERF_SCOPE(category, subCategory, name) \ argument
77 CORE_NS::CpuPerfScope CORE_CONCAT(cpuPerfScope_, __LINE__)(category, subCategory, name)
80 #define CORE_CPU_PERF_BEGIN(timerName, category, subCategory, name)
82 #define CORE_CPU_PERF_SCOPE(category, subCategory, name)
H A Dintf_performance_data_manager.h67 BASE_NS::fixed_string<TIMING_DATA_NAME_LENGTH> subCategory; in CORE_BEGIN_NAMESPACE() member
99 …const BASE_NS::string_view subCategory, const BASE_NS::string_view name, const int64_t microSecond… in CORE_BEGIN_NAMESPACE()
107 virtual void RemoveData(const BASE_NS::string_view subCategory) = 0; in CORE_BEGIN_NAMESPACE()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/perf/
H A Dcpu_perf_scope.h33 …const BASE_NS::string_view category, const BASE_NS::string_view subCategory, const BASE_NS::string… in RENDER_BEGIN_NAMESPACE()
46 …const BASE_NS::string_view category, const BASE_NS::string_view subCategory, const BASE_NS::string… in CpuPerfScopeInternal() argument
47 : subCategory_(subCategory), name_(name) in CpuPerfScopeInternal()
76 #define RENDER_CPU_PERF_BEGIN(timerName, category, subCategory, name) \ argument
77 RENDER_NS::CpuPerfScopeInternal timerName(category, subCategory, name);
79 #define RENDER_CPU_PERF_SCOPE(category, subCategory, name) \ argument
80 …RENDER_NS::CpuPerfScopeInternal RENDER_CONCAT(cpuPerfScope_, __LINE__)(category, subCategory, name)
83 #define RENDER_CPU_PERF_BEGIN(timerName, category, subCategory, name)
85 #define RENDER_CPU_PERF_SCOPE(category, subCategory, name)
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/src/perf/
H A Dperformance_data_manager.cpp52 void UpdateTimingData(const string_view subCategory, const string_view name, const int64_t microSec… in UpdateTimingData() argument
55 auto iter = dataSet.find(subCategory); in UpdateTimingData()
94 auto& ref = dataSet[subCategory].data[name]; in UpdateTimingData()
113 pd.subCategory = typeRef.first; in GetTimingData()
147 void PerformanceDataManager::UpdateData([[maybe_unused]] const string_view subCategory,
152 UpdateTimingData(subCategory, name, microSeconds, data_);
174 void PerformanceDataManager::RemoveData([[maybe_unused]] const string_view subCategory)
178 data_.erase(subCategory);
H A Dperformance_data_manager.h56 …const BASE_NS::string_view subCategory, const BASE_NS::string_view name, const int64_t microSecond… in CORE_BEGIN_NAMESPACE()
62 void RemoveData(const BASE_NS::string_view subCategory) override; in CORE_BEGIN_NAMESPACE()