Home
last modified time | relevance | path

Searched refs:GetGraphicUsage (Results 1 - 24 of 24) sorted by relevance

/base/hiviewdfx/hiview/framework/native/unified_collection/collector/
H A Dgraphic_memory_collector_impl.cpp29 CollectResult<int32_t> GraphicMemoryCollectorImpl::GetGraphicUsage(int32_t pid, GraphicType type) in GetGraphicUsage() function in OHOS::HiviewDFX::UCollectUtil::GraphicMemoryCollectorImpl
35 data = Graphic::GetGraphicUsage(pid); in GetGraphicUsage()
38 data = Graphic::GetGraphicUsage(pid, Graphic::Type::GL); in GetGraphicUsage()
41 data = Graphic::GetGraphicUsage(pid, Graphic::Type::GRAPH); in GetGraphicUsage()
/base/hiviewdfx/hiview/interfaces/inner_api/unified_collection/client/src/
H A Dmemory_collector_client_impl.cpp31 CollectResult<int32_t> GetGraphicUsage() override;
44 CollectResult<int32_t> MemoryCollectorImpl::GetGraphicUsage() in GetGraphicUsage() function in OHOS::HiviewDFX::UCollectClient::MemoryCollectorImpl
46 return HiViewServiceMemoryDelegate::GetGraphicUsage(); in GetGraphicUsage()
/base/hiviewdfx/hiview/adapter/service/client/src/
H A Dhiview_service_memory_delegate.cpp34 CollectResult<int32_t> HiViewServiceMemoryDelegate::GetGraphicUsage() in GetGraphicUsage() function in OHOS::HiviewDFX::HiViewServiceMemoryDelegate
43 return proxy.GetGraphicUsage().result_; in GetGraphicUsage()
H A Dhiview_service_ability_proxy.cpp332 CollectResultParcelable<int32_t> HiviewServiceAbilityProxy::GetGraphicUsage() in GetGraphicUsage() function in OHOS::HiviewDFX::HiviewServiceAbilityProxy
/base/hiviewdfx/hiview/framework/native/unified_collection/decorator/
H A Dgraphic_memory_decorator.cpp24 CollectResult<int32_t> GraphicMemoryDecorator::GetGraphicUsage(int32_t pid, GraphicType type) in GetGraphicUsage() function in OHOS::HiviewDFX::UCollectUtil::GraphicMemoryDecorator
26 auto task = [this, type, pid] { return graphicMemoryCollector_->GetGraphicUsage(pid, type); }; in GetGraphicUsage()
/base/hiviewdfx/hiview/test/unittest/unified_collection/utility/
H A Dgraphic_memory_collector_test.cpp38 * @tc.desc: used to test GraphicMemoryCollector.GetGraphicUsage
54 CollectResult<int32_t> data = collector->GetGraphicUsage(pid); in HWTEST_F()
56 std::cout << "GetGraphicUsage [pid=" << pid <<", procName=" << procName << "] total result:" << data.data; in HWTEST_F()
59 CollectResult<int32_t> glData = collector->GetGraphicUsage(pid, GraphicType::GL); in HWTEST_F()
61 std::cout << "GetGraphicUsage [pid=" << pid <<", procName=" << procName << "] gl result:" << glData.data; in HWTEST_F()
64 CollectResult<int32_t> graphicData = collector->GetGraphicUsage(pid, GraphicType::GRAPH); in HWTEST_F()
66 std::cout << "GetGraphicUsage [pid=" << pid <<", procName=" << procName << "] graphic result:" << graphicData.data; in HWTEST_F()
/base/hiviewdfx/hiview/adapter/service/client/include/
H A Dhiview_service_memory_delegate.h27 static CollectResult<int32_t> GetGraphicUsage();
H A Dhiview_service_ability_proxy.h49 CollectResultParcelable<int32_t> GetGraphicUsage() override;
/base/hiviewdfx/hiview/framework/native/unified_collection/collector/inner_include/
H A Dgraphic_memory_collector_impl.h30 virtual CollectResult<int32_t> GetGraphicUsage(int32_t pid, GraphicType type = GraphicType::TOATL) override;
/base/hiviewdfx/hiview/framework/native/unified_collection/graphic_memory/include/
H A Dgraphic_memory.h42 CollectResult GetGraphicUsage(int32_t pid, Type type = Type::TOTAL);
/base/hiviewdfx/hiview/interfaces/inner_api/unified_collection/utility/
H A Dgraphic_memory_collector.h32 virtual CollectResult<int32_t> GetGraphicUsage(int32_t pid, GraphicType type = GraphicType::TOATL) = 0;
/base/hiviewdfx/hiview/interfaces/inner_api/unified_collection/client/
H A Dmemory_collector_client.h41 virtual CollectResult<int32_t> GetGraphicUsage() = 0;
/base/hiviewdfx/hiview/framework/native/unified_collection/decorator/include/
H A Dgraphic_memory_decorator.h31 virtual CollectResult<int32_t> GetGraphicUsage(int32_t pid, GraphicType type = GraphicType::TOATL) override;
/base/hiviewdfx/hiview/adapter/service/server/include/
H A Dhiview_service_ability_stub.h32 CollectResultParcelable<int32_t> GetGraphicUsage() override
38 virtual CollectResultParcelable<int32_t> GetGraphicUsage(int32_t pid) = 0;
H A Dhiview_service_ability.h67 CollectResultParcelable<int32_t> GetGraphicUsage(int32_t pid) override;
/base/hiviewdfx/hiview/test/unittest/unified_collection/client/
H A Dmemory_collector_client_test.cpp65 * @tc.desc: used to test the function of MemoryCollector.GetGraphicUsage;
71 auto collectResult = collector->GetGraphicUsage(); in HWTEST_F()
72 std::cout << "GetGraphicUsage result:" << collectResult.data << std::endl; in HWTEST_F()
/base/hiviewdfx/hiview/adapter/service/common/include/
H A Dihiview_service_ability.h50 virtual CollectResultParcelable<int32_t> GetGraphicUsage() = 0;
/base/hiviewdfx/hiview/adapter/service/test/unittest/common/
H A Dhiview_sa_test.cpp100 * @tc.desc: Check GetGraphicUsage
118 CollectResult<int32_t> data = hiviewSAProxy->GetGraphicUsage().result_; in HWTEST_F()
120 std::cout << "GetGraphicUsage result:" << data.data << std::endl; in HWTEST_F()
/base/hiviewdfx/hiview/service/
H A Dhiview_service.h56 CollectResult<int32_t> GetGraphicUsage(int32_t pid);
H A Dhiview_service.cpp509 CollectResult<int32_t> HiviewService::GetGraphicUsage(int32_t pid) in GetGraphicUsage() function in OHOS::HiviewDFX::HiviewService
511 return graphicMemoryCollector_->GetGraphicUsage(pid); in GetGraphicUsage()
/base/hiviewdfx/hiview/framework/native/unified_collection/graphic_memory/
H A Dgraphic_memory.cpp118 CollectResult GetGraphicUsage(int32_t pid, Type type) in GetGraphicUsage() function
/base/hiviewdfx/hiview/adapter/service/server/src/
H A Dhiview_service_ability.cpp355 CollectResultParcelable<int32_t> HiviewServiceAbility::GetGraphicUsage(int32_t pid) in GetGraphicUsage() function in OHOS::HiviewServiceAbility
358 return service->GetGraphicUsage(pid); in GetGraphicUsage()
H A Dhiview_service_ability_stub.cpp558 auto ret = GetGraphicUsage(pid); in HandleGetGraphicUsageRequest()
/base/hiviewdfx/hidumper/frameworks/native/src/executor/memory/
H A Dmemory_info.cpp668 data = collector->GetGraphicUsage(pid, graphicType); in GetGraphicsMemory()

Completed in 11 milliseconds