/foundation/ability/ability_runtime/services/appmgr/include/ |
H A D | app_lifecycle_deal.h | 233 int32_t NotifyUnLoadRepairPatch(const std::string &bundleName, const sptr<IQuickFixCallback> &callback,
|
H A D | app_running_manager.h | 274 int32_t NotifyUnLoadRepairPatch(const std::string &bundleName, const sptr<IQuickFixCallback> &callback);
|
H A D | app_mgr_service.h | 491 int32_t NotifyUnLoadRepairPatch(const std::string &bundleName, const sptr<IQuickFixCallback> &callback) override;
|
H A D | app_running_record.h | 746 int32_t NotifyUnLoadRepairPatch(const std::string &bundleName, const sptr<IQuickFixCallback> &callback,
|
H A D | app_mgr_service_inner.h | 881 int32_t NotifyUnLoadRepairPatch(const std::string &bundleName, const sptr<IQuickFixCallback> &callback);
|
/foundation/ability/ability_runtime/test/fuzztest/applifecycledeal_fuzzer/ |
H A D | applifecycledeal_fuzzer.cpp | 87 appLifeCycleDeal.NotifyUnLoadRepairPatch(bundleName, callback, recordId); in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/ability_runtime/interfaces/kits/native/appkit/app/ |
H A D | ohos_application.h | 210 bool NotifyUnLoadRepairPatch(const std::string &hqfFile);
|
/foundation/ability/ability_runtime/test/fuzztest/appmgrservicefirst_fuzzer/ |
H A D | appmgrservicefirst_fuzzer.cpp | 132 appMgrService->NotifyUnLoadRepairPatch(bundleName, callback); in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/ability_runtime/services/appmgr/src/ |
H A D | app_lifecycle_deal.cpp | 283 int32_t AppLifeCycleDeal::NotifyUnLoadRepairPatch(const std::string &bundleName, in NotifyUnLoadRepairPatch() function in OHOS::AppExecFwk::AppLifeCycleDeal
|
H A D | app_running_record.cpp | 1981 int32_t AppRunningRecord::NotifyUnLoadRepairPatch(const std::string &bundleName, in NotifyUnLoadRepairPatch() function in OHOS::AppExecFwk::AppRunningRecord 1990 return appLifeCycleDeal_->NotifyUnLoadRepairPatch(bundleName, callback, recordId); in NotifyUnLoadRepairPatch()
|
H A D | app_mgr_service.cpp | 1110 int32_t AppMgrService::NotifyUnLoadRepairPatch(const std::string &bundleName, const sptr<IQuickFixCallback> &callback) in NotifyUnLoadRepairPatch() function in OHOS::AppExecFwk::AppMgrService 1116 return appMgrServiceInner_->NotifyUnLoadRepairPatch(bundleName, callback); in NotifyUnLoadRepairPatch()
|
H A D | app_running_manager.cpp | 1122 int32_t AppRunningManager::NotifyUnLoadRepairPatch(const std::string &bundleName, in NotifyUnLoadRepairPatch() function in OHOS::AppExecFwk::AppRunningManager 1143 result = appRecord->NotifyUnLoadRepairPatch(bundleName, callbackByRecord, recordId); in NotifyUnLoadRepairPatch()
|
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/ |
H A D | app_mgr_interface.h | 479 virtual int32_t NotifyUnLoadRepairPatch(const std::string &bundleName, const sptr<IQuickFixCallback> &callback) = 0;
|
H A D | app_mgr_proxy.h | 435 int32_t NotifyUnLoadRepairPatch(const std::string &bundleName, const sptr<IQuickFixCallback> &callback) override;
|
/foundation/ability/ability_runtime/test/unittest/app_running_manager_second_test/ |
H A D | app_running_manager_second_test.cpp | 706 auto ret = appRunningManager->NotifyUnLoadRepairPatch(BUNDLE_NAME, nullptr); in HWTEST_F() 718 * @tc.desc: Test NotifyUnLoadRepairPatch 737 auto ret = appRunningManager->NotifyUnLoadRepairPatch(BUNDLE_NAME, proxy); in HWTEST_F() 749 * @tc.desc: Test NotifyUnLoadRepairPatch 771 auto ret = appRunningManager->NotifyUnLoadRepairPatch("", proxy); in HWTEST_F()
|
/foundation/ability/ability_runtime/services/quickfixmgr/src/ |
H A D | quick_fix_manager_apply_task.cpp | 710 auto ret = applyTask->appMgr_->NotifyUnLoadRepairPatch(applyTask->bundleName_, callback); in PostNotifyUnloadRepairPatchTask() 883 auto ret = appMgr_->NotifyUnLoadRepairPatch(bundleName_, callback); in PostRevokeQuickFixNotifyUnloadPatchTask()
|
/foundation/ability/ability_runtime/test/unittest/appkit/ohos_application_test/ |
H A D | ohos_application_test.cpp | 857 * @tc.name: NotifyUnLoadRepairPatch 864 ohosApplication_->NotifyUnLoadRepairPatch(hqfFile); in HWTEST_F() 871 * @tc.name: NotifyUnLoadRepairPatch 879 ohosApplication_->NotifyUnLoadRepairPatch(hqfFile); in HWTEST_F()
|
/foundation/ability/ability_runtime/test/mock/services_appmgr_test/include/ |
H A D | mock_app_mgr_service.h | 84 MOCK_METHOD2(NotifyUnLoadRepairPatch, int32_t(const std::string& bundleName,
|
/foundation/ability/ability_runtime/test/mock/frameworks_kits_appkit_test/include/ |
H A D | mock_app_mgr_service.h | 68 MOCK_METHOD2(NotifyUnLoadRepairPatch, int32_t(const std::string& bundleName,
|
/foundation/ability/ability_runtime/test/fuzztest/abilityappmgrapprunningmanager_fuzzer/ |
H A D | abilityappmgrapprunningmanager_fuzzer.cpp | 106 manager->NotifyUnLoadRepairPatch(jsonStr, callback); in DoSomethingInterestingWithMyAPIadda()
|
/foundation/ability/ability_runtime/test/unittest/appkit/main_fourth_test/ |
H A D | main_fourth_test.cpp | 237 int32_t NotifyUnLoadRepairPatch(const std::string &bundleName, const sptr<IQuickFixCallback> &callback) override
|
/foundation/ability/ability_runtime/test/unittest/multi_app_utils_test/include/ |
H A D | mock_app_mgr_service.h | 83 MOCK_METHOD2(NotifyUnLoadRepairPatch, int32_t(const std::string& bundleName,
|
/foundation/ability/ability_runtime/frameworks/native/appkit/app/ |
H A D | ohos_application.cpp | 727 bool OHOSApplication::NotifyUnLoadRepairPatch(const std::string &hqfFile) in NotifyUnLoadRepairPatch() function in OHOS::AppExecFwk::OHOSApplication
|
/foundation/ability/ability_runtime/test/unittest/app_mgr_proxy_test/ |
H A D | app_mgr_proxy_test.cpp | 253 appMgrProxy_->NotifyUnLoadRepairPatch(bundleName, callback); in HWTEST_F()
|
/foundation/ability/ability_runtime/test/unittest/app_mgr_service_test/ |
H A D | app_mgr_service_test.cpp | 1195 * Function: NotifyUnLoadRepairPatch 1197 * FunctionPoints: AppMgrService NotifyUnLoadRepairPatch 1199 * CaseDescription: Verify NotifyUnLoadRepairPatch 1207 int32_t res = appMgrService->NotifyUnLoadRepairPatch(bundleName, callback); in HWTEST_F() 1213 * Function: NotifyUnLoadRepairPatch 1215 * FunctionPoints: AppMgrService NotifyUnLoadRepairPatch 1217 * CaseDescription: Verify NotifyUnLoadRepairPatch 1228 int32_t res = appMgrService->NotifyUnLoadRepairPatch(bundleName, callback); in HWTEST_F()
|