Home
last modified time | relevance | path

Searched refs:GetBundleNameByPid (Results 1 - 25 of 31) sorted by relevance

12

/foundation/ability/ability_runtime/test/mock/services_appmgr_test/include/
H A Dmock_app_mgr_service_inner.h66 MOCK_METHOD3(GetBundleNameByPid, int32_t(const int pid, std::string &bundleName, int32_t &uid));
H A Dmock_ams_mgr_scheduler.h55 MOCK_METHOD3(GetBundleNameByPid, int32_t(const int pid, std::string &bundleName, int32_t &uid));
H A Dmock_app_mgr_service.h87 MOCK_METHOD3(GetBundleNameByPid, int32_t(const int pid, std::string &bundleName, int32_t &uid));
/foundation/ability/ability_runtime/test/mock/mock_appmgr_service/include/
H A Dmock_app_mgr_service_inner.h63 MOCK_METHOD3(GetBundleNameByPid, int32_t(const int pid, std::string &bundleName, int32_t &uid));
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/
H A Dams_mgr_interface.h294 virtual int32_t GetBundleNameByPid(const int pid, std::string &bundleName, int32_t &uid) = 0;
H A Dams_mgr_proxy.h256 virtual int32_t GetBundleNameByPid(const int pid, std::string &bundleName, int32_t &uid) override;
H A Dapp_mgr_interface.h543 virtual int32_t GetBundleNameByPid(const int pid, std::string &bundleName, int32_t &uid) = 0;
H A Dapp_mgr_client.h551 int32_t GetBundleNameByPid(const int pid, std::string &bundleName, int32_t &uid);
H A Dapp_mgr_proxy.h465 virtual int32_t GetBundleNameByPid(const int pid, std::string &bundleName, int32_t &uid) override;
/foundation/ability/ability_runtime/services/appmgr/include/
H A Dams_mgr_scheduler.h281 * GetBundleNameByPid, get bundleName and uid of a process.
288 virtual int32_t GetBundleNameByPid(const int pid, std::string &bundleName, int32_t &uid) override;
H A Dapp_mgr_service.h521 virtual int32_t GetBundleNameByPid(const int32_t pid, std::string &bundleName, int32_t &uid) override;
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_unmarshal_thread.cpp250 appMgrClient->GetBundleNameByPid(pid, bundleName, uid); in ReportTransactionDataStatistics()
/foundation/ability/ability_runtime/services/appmgr/src/
H A Dams_mgr_scheduler.cpp492 int32_t AmsMgrScheduler::GetBundleNameByPid(const int pid, std::string &bundleName, int32_t &uid) in GetBundleNameByPid() function in OHOS::AppExecFwk::AmsMgrScheduler
497 return amsMgrServiceInner_->GetBundleNameByPid(pid, bundleName, uid); in GetBundleNameByPid()
H A Dapp_mgr_service.cpp1161 int32_t AppMgrService::GetBundleNameByPid(const int32_t pid, std::string &bundleName, int32_t &uid) in GetBundleNameByPid() function in OHOS::AppExecFwk::AppMgrService
1167 return appMgrServiceInner_->GetBundleNameByPid(pid, bundleName, uid); in GetBundleNameByPid()
/foundation/ability/ability_runtime/services/abilitymgr/src/
H A Dapp_scheduler.cpp487 int32_t AppScheduler::GetBundleNameByPid(const int pid, std::string &bundleName, int32_t &uid) in GetBundleNameByPid() function in OHOS::AAFwk::AppScheduler
490 int32_t ret = static_cast<int32_t>(IN_PROCESS_CALL(appMgrClient_->GetBundleNameByPid(pid, bundleName, uid))); in GetBundleNameByPid()
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/memory/
H A Drs_memory_manager.cpp605 appMgrClient.GetBundleNameByPid(pid, bundleName, uid); in MemoryOverCheck()
633 appMgrClient.GetBundleNameByPid(pid, bundleName, uid); in MemoryOverflow()
/foundation/ability/ability_runtime/services/abilitymgr/include/
H A Dapp_scheduler.h462 int32_t GetBundleNameByPid(const int pid, std::string &bundleName, int32_t &uid);
/foundation/ability/ability_runtime/services/abilitymgr/src/resident_process/
H A Dresident_process_manager.cpp240 appScheduler->GetBundleNameByPid(info.pid, bundleName, uid); in OnAppStateChanged()
/foundation/ability/ability_runtime/test/unittest/multi_app_utils_test/include/
H A Dmock_app_mgr_service.h86 MOCK_METHOD3(GetBundleNameByPid, int32_t(const int pid, std::string &bundleName, int32_t &uid));
/foundation/ability/ability_runtime/test/unittest/ams_mgr_scheduler_test/
H A Dams_mgr_scheduler_test.cpp1140 * Function: GetBundleNameByPid
1142 * FunctionPoints: AmsMgrScheduler GetBundleNameByPid
1153 auto iret = amsMgrScheduler->GetBundleNameByPid(pid, bundleName, uid); in HWTEST_F()
1159 * Function: GetBundleNameByPid
1161 * FunctionPoints: AmsMgrScheduler GetBundleNameByPid
1163 * CaseDescription: GetBundleNameByPid
1174 auto iret = amsMgrScheduler->GetBundleNameByPid(pid, bundleName, uid); in HWTEST_F()
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/
H A Dapp_mgr_client.cpp907 int32_t AppMgrClient::GetBundleNameByPid(const int pid, std::string &bundleName, int32_t &uid) in GetBundleNameByPid() function in OHOS::AppExecFwk::AppMgrClient
916 return amsService->GetBundleNameByPid(pid, bundleName, uid); in GetBundleNameByPid()
H A Dams_mgr_stub.cpp557 GetBundleNameByPid(pid, bundleName, uid); in HandleGetBundleNameByPid()
H A Dams_mgr_proxy.cpp817 int32_t AmsMgrProxy::GetBundleNameByPid(const int pid, std::string &bundleName, int32_t &uid) in GetBundleNameByPid() function in OHOS::AppExecFwk::AmsMgrProxy
/foundation/ability/ability_runtime/test/unittest/app_mgr_service_inner_second_test/
H A Dapp_mgr_service_inner_second_test.cpp1537 * @tc.desc: Test GetBundleNameByPid
1547 int32_t ret = appMgrServiceInner->GetBundleNameByPid(TEST_PID_100, bundleName, uid); in HWTEST_F()
1560 ret = appMgrServiceInner->GetBundleNameByPid(TEST_PID_100, bundleName, uid); in HWTEST_F()
1564 ret = appMgrServiceInner->GetBundleNameByPid(TEST_PID_100, bundleName, uid); in HWTEST_F()
/foundation/ability/ability_runtime/test/unittest/app_mgr_client_test/
H A Dapp_mgr_client_test.cpp756 * @tc.desc: GetBundleNameByPid.
768 auto ret = appMgrClient->GetBundleNameByPid(pid, name, uid); in HWTEST_F()

Completed in 38 milliseconds

12