Home
last modified time | relevance | path

Searched refs:isDebug (Results 1 - 25 of 48) sorted by relevance

12

/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/quick_fix/
H A Dquick_fix_mgr.cpp34 const sptr<IQuickFixStatusCallback> &statusCallback, bool isDebug, const std::string &targetPath) in DeployQuickFix()
43 auto task = [quickFixer, bundleFilePaths, isDebug, targetPath] { in DeployQuickFix()
45 quickFixer->DeployQuickFix(bundleFilePaths, isDebug, targetPath); in DeployQuickFix()
33 DeployQuickFix(const std::vector<std::string> &bundleFilePaths, const sptr<IQuickFixStatusCallback> &statusCallback, bool isDebug, const std::string &targetPath) DeployQuickFix() argument
H A Dquick_fix_checker.cpp82 bool isDebug = bundleInfo.applicationInfo.debug && in CheckPatchWithInstalledBundle() local
84 LOG_D(BMS_TAG_DEFAULT, "application isDebug: %{public}d", isDebug); in CheckPatchWithInstalledBundle()
85 if (isDebug && (bundleInfo.applicationInfo.appQuickFix.deployedAppqfInfo.type == QuickFixType::HOT_RELOAD)) { in CheckPatchWithInstalledBundle()
156 bool isDebug = bundleInfo.applicationInfo.debug && in CheckHotReloadWithInstalledBundle() local
158 LOG_D(BMS_TAG_DEFAULT, "application isDebug: %{public}d", isDebug); in CheckHotReloadWithInstalledBundle()
159 if (!isDebug) { in CheckHotReloadWithInstalledBundle()
H A Dquick_fixer.cpp30 void QuickFixer::DeployQuickFix(const std::vector<std::string> &bundleFilePaths, bool isDebug, in DeployQuickFix() argument
36 bundleFilePaths, isDebug, targetPath); in DeployQuickFix()
H A Dquick_fix_manager_host_impl.cpp35 const sptr<IQuickFixStatusCallback> &statusCallback, bool isDebug, const std::string &targetPath) in DeployQuickFix()
61 return quickFixMgr_->DeployQuickFix(securityFilePaths, statusCallback, isDebug, targetPath); in DeployQuickFix()
34 DeployQuickFix(const std::vector<std::string> &bundleFilePaths, const sptr<IQuickFixStatusCallback> &statusCallback, bool isDebug, const std::string &targetPath) DeployQuickFix() argument
/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_others/quickfix_fuzzer/
H A Dquickfix_fuzzer.cpp33 bool isDebug = false; in DoSomethingInterestingWithMyAPI() local
39 quickFixMgr_.DeployQuickFix(bundleFilePaths, isDebug, targetPath); in DoSomethingInterestingWithMyAPI()
/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_others/quickfixmgr_fuzzer/
H A Dquickfixmgr_fuzzer.cpp34 bool isDebug = false; in DoSomethingInterestingWithMyAPI() local
39 quickFixMgr->DeployQuickFix(bundleFilePaths, statusCallback, isDebug, targetPath); in DoSomethingInterestingWithMyAPI()
/foundation/ability/ability_runtime/test/unittest/app_launch_data_test/
H A Dapp_launch_data_test.cpp131 bool isDebug = true; in HWTEST_F() local
140 parcel.WriteBool(isDebug); in HWTEST_F()
146 EXPECT_EQ(launchData_->debugApp_, isDebug); in HWTEST_F()
/foundation/ability/ability_runtime/services/quickfixmgr/include/
H A Dquick_fix_manager_apply_task.h41 void Run(const std::vector<std::string> &quickFixFiles, bool isDebug = false);
68 void PostDeployQuickFixTask(const std::vector<std::string> &quickFixFiles, bool isDebug = false);
H A Dquick_fix_manager_service.h53 * @param isDebug this value is for the quick fix debug mode selection.
56 int32_t ApplyQuickFix(const std::vector<std::string> &quickFixFiles, bool isDebug = false) override;
/foundation/bundlemanager/bundle_tool/frameworks/src/
H A Dquick_fix_command.cpp61 bool isDebug) in ApplyQuickFix()
72 APP_LOGI("IsDEBUG is %d", isDebug); in ApplyQuickFix()
86 auto result = DelayedSingleton<AAFwk::QuickFixManagerClient>::GetInstance()->ApplyQuickFix(quickFixFiles, isDebug); in ApplyQuickFix()
60 ApplyQuickFix(const std::vector<std::string> &quickFixFiles, std::string &resultInfo, bool isDebug) ApplyQuickFix() argument
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/quick_fix/
H A Dquick_fixer.h31 void DeployQuickFix(const std::vector<std::string> &bundleFilePaths, bool isDebug = false,
H A Dquick_fix_mgr.h35 const sptr<IQuickFixStatusCallback> &statusCallback, bool isDebug = false, const std::string &targetPath = "");
H A Dquick_fix_manager_host_impl.h32 const sptr<IQuickFixStatusCallback> &statusCallback, bool isDebug = false,
/foundation/bundlemanager/bundle_tool/frameworks/include/
H A Dquick_fix_command.h28 bool isDebug = false);
/foundation/ability/ability_runtime/test/unittest/appkit/main_fourth_test/
H A Dmain_fourth_test.cpp307 bool isDebug = false; in HWTEST_F() local
308 mainThread_->SetAppDebug(modeFlag, isDebug); in HWTEST_F()
309 EXPECT_EQ(isDebug, false); in HWTEST_F()
325 bool isDebug = true; in HWTEST_F() local
326 mainThread_->SetAppDebug(modeFlag, isDebug); in HWTEST_F()
327 EXPECT_EQ(isDebug, true); in HWTEST_F()
/foundation/ability/ability_runtime/test/unittest/quick_fix/quick_fix_manager_client_test/
H A Dquick_fix_manager_client_test.cpp81 bool isDebug = false; in HWTEST_F() local
82 auto ret = quickFixClient_->ApplyQuickFix(quickfixFiles, isDebug); in HWTEST_F()
/foundation/ability/ability_runtime/test/unittest/quick_fix/mock/include/
H A Dmock_quick_fix_manager_stub.h27 MOCK_METHOD2(ApplyQuickFix, int32_t(const std::vector<std::string>&, bool isDebug));
/foundation/ability/ability_runtime/test/unittest/quick_fix/quick_fix_manager_service_ability_test/mock/
H A Dmock_quick_fix_manager_service.cpp61 int32_t QuickFixManagerService::ApplyQuickFix(const std::vector<std::string>& quickFixFiles, bool isDebug) in ApplyQuickFix() argument
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include/quick_fix/
H A Dquick_fix_manager_interface.h33 const sptr<IQuickFixStatusCallback> &statusCallback, bool isDebug = false, const std::string &targetPath = "") in DeployQuickFix()
H A Dquick_fix_manager_proxy.h31 const sptr<IQuickFixStatusCallback> &statusCallback, bool isDebug = false,
/foundation/ability/ability_runtime/interfaces/inner_api/quick_fix/src/
H A Dquick_fix_manager_client.cpp35 int32_t QuickFixManagerClient::ApplyQuickFix(const std::vector<std::string> &quickFixFiles, bool isDebug) in ApplyQuickFix() argument
60 return quickFixMgr->ApplyQuickFix(destFiles, isDebug); in ApplyQuickFix()
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/quick_fix/
H A Dquick_fix_manager_host.cpp77 bool isDebug = data.ReadBool(); in HandleDeployQuickFix() local
86 auto ret = DeployQuickFix(bundleFilePaths, statusCallback, isDebug, targetPath); in HandleDeployQuickFix()
/foundation/ability/ability_runtime/frameworks/native/runtime/
H A Dhdc_register.cpp24 using StartRegister = void (*)(const std::string& processName, const std::string& pkgName, bool isDebug,
/foundation/ability/ability_runtime/interfaces/inner_api/quick_fix/include/
H A Dquick_fix_manager_client.h41 * @param isDebug this value is for the quick fix debug mode selection.
44 int32_t ApplyQuickFix(const std::vector<std::string> &quickFixFiles, bool isDebug = false);
/foundation/ability/ability_runtime/services/quickfixmgr/src/
H A Dquick_fix_manager_service.cpp58 int32_t QuickFixManagerService::ApplyQuickFix(const std::vector<std::string> &quickFixFiles, bool isDebug) in ApplyQuickFix() argument
83 applyTask->Run(quickFixFiles, isDebug); in ApplyQuickFix()

Completed in 8 milliseconds

12