/foundation/ability/ability_runtime/services/abilitymgr/src/utils/ |
H A D | ability_event_util.cpp | 26 DelayedSingleton<AppScheduler>::GetInstance()->UpdateApplicationInfoInstalled(bundleName, uid);
in HandleModuleInfoUpdated()
|
/foundation/ability/ability_runtime/services/appmgr/include/ |
H A D | app_lifecycle_deal.h | 52 void UpdateApplicationInfoInstalled(const ApplicationInfo &appInfo);
|
H A D | ams_mgr_scheduler.h | 137 * UpdateApplicationInfoInstalled, call UpdateApplicationInfoInstalled() through proxy object, 144 virtual int32_t UpdateApplicationInfoInstalled(const std::string &bundleName, const int uid) override;
|
H A D | app_running_record.h | 394 void UpdateApplicationInfoInstalled(const ApplicationInfo &appInfo);
|
/foundation/ability/ability_runtime/test/unittest/app_scheduler_test/ |
H A D | app_mgr_client_mock.h | 38 MOCK_METHOD2(UpdateApplicationInfoInstalled, AppMgrResultCode(const std::string &bundleName, const int uid));
|
/foundation/ability/ability_runtime/interfaces/kits/native/appkit/app/ |
H A D | ohos_application.h | 143 void UpdateApplicationInfoInstalled(const AppExecFwk::ApplicationInfo &appInfo);
|
/foundation/ability/ability_runtime/test/mock/services_appmgr_test/include/ |
H A D | mock_app_mgr_service_inner.h | 43 MOCK_METHOD2(UpdateApplicationInfoInstalled, int(const std::string&, const int uid));
|
H A D | mock_ams_mgr_scheduler.h | 38 MOCK_METHOD2(UpdateApplicationInfoInstalled, int(const std::string&, const int uid));
|
H A D | mock_app_mgr_service.h | 43 MOCK_METHOD2(UpdateApplicationInfoInstalled, int(const std::string&, const int uid));
|
/foundation/ability/ability_runtime/test/mock/mock_appmgr_service/include/ |
H A D | mock_app_mgr_service_inner.h | 41 MOCK_METHOD2(UpdateApplicationInfoInstalled, int(const std::string&, const int uid));
|
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/ |
H A D | ams_mgr_interface.h | 133 * UpdateApplicationInfoInstalled, call UpdateApplicationInfoInstalled() through proxy object, 140 virtual int UpdateApplicationInfoInstalled(const std::string &bundleName, const int uid) = 0;
|
H A D | ams_mgr_proxy.h | 123 * UpdateApplicationInfoInstalled, call UpdateApplicationInfoInstalled() through proxy object, 130 virtual int32_t UpdateApplicationInfoInstalled(const std::string &bundleName, const int uid) override;
|
H A D | app_mgr_client.h | 146 * UpdateApplicationInfoInstalled, call UpdateApplicationInfoInstalled() through proxy object, 153 virtual AppMgrResultCode UpdateApplicationInfoInstalled(const std::string &bundleName, const int uid);
|
/foundation/ability/ability_runtime/services/appmgr/src/ |
H A D | ams_mgr_scheduler.cpp | 321 int32_t AmsMgrScheduler::UpdateApplicationInfoInstalled(const std::string &bundleName, const int uid) in UpdateApplicationInfoInstalled() function in OHOS::AppExecFwk::AmsMgrScheduler 327 return amsMgrServiceInner_->UpdateApplicationInfoInstalled(bundleName, uid); in UpdateApplicationInfoInstalled()
|
H A D | app_lifecycle_deal.cpp | 46 void AppLifeCycleDeal::UpdateApplicationInfoInstalled(const ApplicationInfo &appInfo) in UpdateApplicationInfoInstalled() function in OHOS::AppExecFwk::AppLifeCycleDeal
|
H A D | app_running_record.cpp | 503 void AppRunningRecord::UpdateApplicationInfoInstalled(const ApplicationInfo &appInfo) in UpdateApplicationInfoInstalled() function in OHOS::AppExecFwk::AppRunningRecord 514 appLifeCycleDeal_->UpdateApplicationInfoInstalled(appInfo); in UpdateApplicationInfoInstalled()
|
/foundation/ability/ability_runtime/services/abilitymgr/src/ |
H A D | app_scheduler.cpp | 108 int AppScheduler::UpdateApplicationInfoInstalled(const std::string &bundleName, const int32_t uid) in UpdateApplicationInfoInstalled() function in OHOS::AAFwk::AppScheduler 112 int ret = (int)appMgrClient_->UpdateApplicationInfoInstalled(bundleName, uid); in UpdateApplicationInfoInstalled() 114 TAG_LOGE(AAFwkTag::ABILITYMGR, "fail to UpdateApplicationInfoInstalled"); in UpdateApplicationInfoInstalled()
|
/foundation/ability/ability_runtime/services/abilitymgr/include/ |
H A D | app_scheduler.h | 282 int UpdateApplicationInfoInstalled(const std::string &bundleName, const int32_t uid);
|
/foundation/ability/ability_runtime/test/mock/frameworks_kits_appkit_test/include/ |
H A D | mock_app_mgr_service.h | 133 MOCK_METHOD2(UpdateApplicationInfoInstalled, int(const std::string&, const int uid));
|
/foundation/ability/ability_runtime/test/unittest/multi_app_utils_test/include/ |
H A D | mock_app_mgr_service.h | 42 MOCK_METHOD2(UpdateApplicationInfoInstalled, int(const std::string&, const int uid));
|
/foundation/ability/ability_runtime/test/unittest/ams_mgr_scheduler_test/ |
H A D | ams_mgr_scheduler_test.cpp | 1030 * Function: UpdateApplicationInfoInstalled 1032 * FunctionPoints: AmsMgrScheduler UpdateApplicationInfoInstalled 1042 auto iret = amsMgrScheduler->UpdateApplicationInfoInstalled(bundleName, uid); in HWTEST_F() 1048 * Function: UpdateApplicationInfoInstalled 1050 * FunctionPoints: AmsMgrScheduler UpdateApplicationInfoInstalled 1052 * CaseDescription: UpdateApplicationInfoInstalled 1062 auto iret = amsMgrScheduler->UpdateApplicationInfoInstalled(bundleName, uid); in HWTEST_F()
|
/foundation/ability/ability_runtime/test/unittest/ams_mgr_scheduler_second_test/ |
H A D | ams_mgr_scheduler_second_test.cpp | 663 * @tc.desc: Test UpdateApplicationInfoInstalled 677 auto ret = amsMgrScheduler->UpdateApplicationInfoInstalled("", 0); in HWTEST_F() 684 * @tc.desc: Test UpdateApplicationInfoInstalled 694 EXPECT_CALL(*appMgrServiceInner, UpdateApplicationInfoInstalled(_, _)).WillRepeatedly(Return(ERR_OK)); in HWTEST_F() 700 auto ret = amsMgrScheduler->UpdateApplicationInfoInstalled("", 0); in HWTEST_F() 728 * @tc.desc: Test UpdateApplicationInfoInstalled 772 * @tc.desc: Test UpdateApplicationInfoInstalled
|
/foundation/ability/ability_runtime/frameworks/native/appkit/app/ |
H A D | ohos_application.cpp | 545 void OHOSApplication::UpdateApplicationInfoInstalled(const AppExecFwk::ApplicationInfo &appInfo) in UpdateApplicationInfoInstalled() function in OHOS::AppExecFwk::OHOSApplication
|
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/ |
H A D | app_mgr_client.cpp | 261 AppMgrResultCode AppMgrClient::UpdateApplicationInfoInstalled(const std::string &bundleName, const int uid) in UpdateApplicationInfoInstalled() function in OHOS::AppExecFwk::AppMgrClient 267 int32_t result = amsService->UpdateApplicationInfoInstalled(bundleName, uid); in UpdateApplicationInfoInstalled()
|
H A D | ams_mgr_stub.cpp | 532 int32_t result = UpdateApplicationInfoInstalled(bundleName, uid); in HandleUpdateApplicationInfoInstalled()
|