Home
last modified time | relevance | path

Searched refs:UpdateApplicationInfoInstalled (Results 1 - 25 of 32) sorted by relevance

12

/foundation/ability/ability_runtime/services/abilitymgr/src/utils/
H A Dability_event_util.cpp26 DelayedSingleton<AppScheduler>::GetInstance()->UpdateApplicationInfoInstalled(bundleName, uid); in HandleModuleInfoUpdated()
/foundation/ability/ability_runtime/services/appmgr/include/
H A Dapp_lifecycle_deal.h52 void UpdateApplicationInfoInstalled(const ApplicationInfo &appInfo);
H A Dams_mgr_scheduler.h137 * UpdateApplicationInfoInstalled, call UpdateApplicationInfoInstalled() through proxy object,
144 virtual int32_t UpdateApplicationInfoInstalled(const std::string &bundleName, const int uid) override;
H A Dapp_running_record.h394 void UpdateApplicationInfoInstalled(const ApplicationInfo &appInfo);
/foundation/ability/ability_runtime/test/unittest/app_scheduler_test/
H A Dapp_mgr_client_mock.h38 MOCK_METHOD2(UpdateApplicationInfoInstalled, AppMgrResultCode(const std::string &bundleName, const int uid));
/foundation/ability/ability_runtime/interfaces/kits/native/appkit/app/
H A Dohos_application.h143 void UpdateApplicationInfoInstalled(const AppExecFwk::ApplicationInfo &appInfo);
/foundation/ability/ability_runtime/test/mock/services_appmgr_test/include/
H A Dmock_app_mgr_service_inner.h43 MOCK_METHOD2(UpdateApplicationInfoInstalled, int(const std::string&, const int uid));
H A Dmock_ams_mgr_scheduler.h38 MOCK_METHOD2(UpdateApplicationInfoInstalled, int(const std::string&, const int uid));
H A Dmock_app_mgr_service.h43 MOCK_METHOD2(UpdateApplicationInfoInstalled, int(const std::string&, const int uid));
/foundation/ability/ability_runtime/test/mock/mock_appmgr_service/include/
H A Dmock_app_mgr_service_inner.h41 MOCK_METHOD2(UpdateApplicationInfoInstalled, int(const std::string&, const int uid));
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/
H A Dams_mgr_interface.h133 * UpdateApplicationInfoInstalled, call UpdateApplicationInfoInstalled() through proxy object,
140 virtual int UpdateApplicationInfoInstalled(const std::string &bundleName, const int uid) = 0;
H A Dams_mgr_proxy.h123 * UpdateApplicationInfoInstalled, call UpdateApplicationInfoInstalled() through proxy object,
130 virtual int32_t UpdateApplicationInfoInstalled(const std::string &bundleName, const int uid) override;
H A Dapp_mgr_client.h146 * 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 Dams_mgr_scheduler.cpp321 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 Dapp_lifecycle_deal.cpp46 void AppLifeCycleDeal::UpdateApplicationInfoInstalled(const ApplicationInfo &appInfo) in UpdateApplicationInfoInstalled() function in OHOS::AppExecFwk::AppLifeCycleDeal
H A Dapp_running_record.cpp503 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 Dapp_scheduler.cpp108 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 Dapp_scheduler.h282 int UpdateApplicationInfoInstalled(const std::string &bundleName, const int32_t uid);
/foundation/ability/ability_runtime/test/mock/frameworks_kits_appkit_test/include/
H A Dmock_app_mgr_service.h133 MOCK_METHOD2(UpdateApplicationInfoInstalled, int(const std::string&, const int uid));
/foundation/ability/ability_runtime/test/unittest/multi_app_utils_test/include/
H A Dmock_app_mgr_service.h42 MOCK_METHOD2(UpdateApplicationInfoInstalled, int(const std::string&, const int uid));
/foundation/ability/ability_runtime/test/unittest/ams_mgr_scheduler_test/
H A Dams_mgr_scheduler_test.cpp1030 * 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 Dams_mgr_scheduler_second_test.cpp663 * @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 Dohos_application.cpp545 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 Dapp_mgr_client.cpp261 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 Dams_mgr_stub.cpp532 int32_t result = UpdateApplicationInfoInstalled(bundleName, uid); in HandleUpdateApplicationInfoInstalled()

Completed in 29 milliseconds

12