Home
last modified time | relevance | path

Searched refs:bundleQfMgr_ (Results 1 - 3 of 3) sorted by relevance

/foundation/ability/ability_runtime/test/unittest/quick_fix/quick_fix_manager_service_test/
H A Dquick_fix_manager_apply_task_test.cpp94 sptr<AppExecFwk::QuickFixManagerHostImpl> bundleQfMgr_ = nullptr; member in OHOS::AAFwk::QuickFixManagerApplyTaskTest
120 bundleQfMgr_ = new (std::nothrow) AppExecFwk::QuickFixManagerHostImpl(); in SetUp()
121 ASSERT_NE(bundleQfMgr_, nullptr); in SetUp()
140 auto applyTask = std::make_shared<QuickFixManagerApplyTask>(bundleQfMgr_, appMgr_, in HWTEST_F()
144 EXPECT_CALL(*bundleQfMgr_, DeployQuickFix(_, _, _, _)).Times(1); in HWTEST_F()
162 auto applyTask = std::make_shared<QuickFixManagerApplyTask>(bundleQfMgr_, appMgr_, in HWTEST_F()
166 EXPECT_CALL(*bundleQfMgr_, SwitchQuickFix(_, _, _)).Times(1); in HWTEST_F()
183 auto applyTask = std::make_shared<QuickFixManagerApplyTask>(bundleQfMgr_, appMgr_, in HWTEST_F()
187 EXPECT_CALL(*bundleQfMgr_, DeleteQuickFix(_, _)).Times(1); in HWTEST_F()
204 auto applyTask = std::make_shared<QuickFixManagerApplyTask>(bundleQfMgr_, appMgr in HWTEST_F()
[all...]
/foundation/ability/ability_runtime/services/quickfixmgr/include/
H A Dquick_fix_manager_apply_task.h31 : bundleQfMgr_(bundleQfMgr), appMgr_(appMgr), eventHandler_(handler), quickFixMgrService_(service) in QuickFixManagerApplyTask()
79 sptr<AppExecFwk::IQuickFixManager> bundleQfMgr_ = nullptr; member in OHOS::AAFwk::QuickFixManagerApplyTask
/foundation/ability/ability_runtime/services/quickfixmgr/src/
H A Dquick_fix_manager_apply_task.cpp406 if (applyTask->bundleQfMgr_ == nullptr) { in PostDeployQuickFixTask()
407 TAG_LOGE(AAFwkTag::QUICKFIX, "null bundleQfMgr_"); in PostDeployQuickFixTask()
414 auto ret = applyTask->bundleQfMgr_->DeployQuickFix(quickFixFiles, callback, isDebug); in PostDeployQuickFixTask()
446 if (applyTask->bundleQfMgr_ == nullptr) { in PostSwitchQuickFixTask()
447 TAG_LOGE(AAFwkTag::QUICKFIX, "null bundleQfMgr_"); in PostSwitchQuickFixTask()
453 auto ret = applyTask->bundleQfMgr_->SwitchQuickFix(applyTask->bundleName_, true, callback); in PostSwitchQuickFixTask()
485 if (applyTask->bundleQfMgr_ == nullptr) { in PostDeleteQuickFixTask()
486 TAG_LOGE(AAFwkTag::QUICKFIX, "null bundleQfMgr_"); in PostDeleteQuickFixTask()
492 auto ret = applyTask->bundleQfMgr_->DeleteQuickFix(applyTask->bundleName_, callback); in PostDeleteQuickFixTask()
896 if (callback == nullptr || bundleQfMgr_ in PostRevokeQuickFixDeleteTask()
[all...]

Completed in 3 milliseconds