Home
last modified time | relevance | path

Searched refs:isAllBundle (Results 1 - 10 of 10) sorted by relevance

/foundation/bundlemanager/bundle_tool/frameworks/include/
H A Dbundle_command.h261 std::string CopyAp(const std::string &bundleName, bool isAllBundle) const;
264 const std::string &bundleName, const std::string &compileMode, bool isAllBundle) const;
265 std::string CompileReset(const std::string &bundleName, bool isAllBundle) const;
296 ErrCode ParseCopyApCommand(int32_t option, std::string &bundleName, bool &isAllBundle);
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/aot/
H A Daot_handler.h39 ErrCode HandleCompile(const std::string &bundleName, const std::string &compileMode, bool isAllBundle,
41 void HandleResetAOT(const std::string &bundleName, bool isAllBundle) const;
42 ErrCode HandleCopyAp(const std::string &bundleName, bool isAllBundle, std::vector<std::string> &results) const;
/foundation/bundlemanager/bundle_tool/frameworks/src/
H A Dbundle_command.cpp299 bool isAllBundle = false; in RunAsCopyApCommand() local
307 result = ParseCopyApCommand(option, bundleName, isAllBundle); in RunAsCopyApCommand()
330 copyApResult = CopyAp(bundleName, isAllBundle); in RunAsCopyApCommand()
340 ErrCode BundleManagerShellCommand::ParseCopyApCommand(int32_t option, std::string &bundleName, bool &isAllBundle) in ParseCopyApCommand() argument
377 isAllBundle = true; in ParseCopyApCommand()
406 bool isAllBundle = false; in RunAsCompileCommand() local
433 isAllBundle = true; in RunAsCompileCommand()
474 isAllBundle = true; in RunAsCompileCommand()
491 compileResults = CompileProcessAot(bundleName, compileMode, isAllBundle); in RunAsCompileCommand()
493 compileResults = CompileReset(bundleName, isAllBundle); in RunAsCompileCommand()
[all...]
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/aot/
H A Daot_handler.cpp333 void AOTHandler::HandleResetAOT(const std::string &bundleName, bool isAllBundle) const in HandleResetAOT()
335 if (isAllBundle && system::GetParameter(BM_AOT_TEST, "").empty()) { in HandleResetAOT()
336 APP_LOGD("isAllBundle true, param bm.aot.test empty, so ignore"); in HandleResetAOT()
345 if (isAllBundle) { in HandleResetAOT()
381 ErrCode AOTHandler::HandleCopyAp(const std::string &bundleName, bool isAllBundle, in HandleCopyAp() argument
390 if (isAllBundle) { in HandleCopyAp()
793 ErrCode AOTHandler::HandleCompile(const std::string &bundleName, const std::string &compileMode, bool isAllBundle, in HandleCompile() argument
797 if (isAllBundle && system::GetParameter("BM_AOT_TEST", "").empty()) { in HandleCompile()
798 APP_LOGD("isAllBundle true, param bm.aot.test empty, so ignore"); in HandleCompile()
828 if (isAllBundle) { in HandleCompile()
[all...]
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include/bundlemgr/
H A Dbundle_mgr_interface.h804 * @param isAllBundle Does it represent all bundlenames.
808 bool isAllBundle, std::vector<std::string> &compileResults) in CompileProcessAOT()
815 * @param isAllBundle Does it represent all bundlenames.
818 virtual ErrCode CompileReset(const std::string &bundleName, bool isAllBundle) in CompileReset() argument
825 * @param isAllBundle Does it represent all bundlenames.
829 virtual ErrCode CopyAp(const std::string &bundleName, bool isAllBundle, std::vector<std::string> &results) in CopyAp() argument
807 CompileProcessAOT(const std::string &bundleName, const std::string &compileMode, bool isAllBundle, std::vector<std::string> &compileResults) CompileProcessAOT() argument
H A Dbundle_mgr_proxy.h573 * @param isAllBundle Does it represent all bundlenames.
577 bool isAllBundle, std::vector<std::string> &compileResults) override;
581 * @param isAllBundle Does it represent all bundlenames.
584 virtual ErrCode CompileReset(const std::string &bundleName, bool isAllBundle) override;
588 * @param isAllBundle Does it represent all bundlenames.
592 virtual ErrCode CopyAp(const std::string &bundleName, bool isAllBundle, std::vector<std::string> &results) override;
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dbundle_mgr_host_impl.h552 * @param isAllBundle Does it represent all bundlenames.
556 bool isAllBundle, std::vector<std::string> &compileResults) override;
560 * @param isAllBundle Does it represent all bundlenames.
563 virtual ErrCode CompileReset(const std::string &bundleName, bool isAllBundle) override;
567 * @param isAllBundle Does it represent all bundlenames.
571 virtual ErrCode CopyAp(const std::string &bundleName, bool isAllBundle, std::vector<std::string> &results) override;
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dbundle_mgr_host_impl.cpp1784 bool isAllBundle, std::vector<std::string> &compileResults) in CompileProcessAOT()
1790 return AOTHandler::GetInstance().HandleCompile(bundleName, compileMode, isAllBundle, compileResults); in CompileProcessAOT()
1793 ErrCode BundleMgrHostImpl::CompileReset(const std::string &bundleName, bool isAllBundle) in CompileReset() argument
1799 AOTHandler::GetInstance().HandleResetAOT(bundleName, isAllBundle); in CompileReset()
1803 ErrCode BundleMgrHostImpl::CopyAp(const std::string &bundleName, bool isAllBundle, std::vector<std::string> &results) in CopyAp() argument
1809 return AOTHandler::GetInstance().HandleCopyAp(bundleName, isAllBundle, results); in CopyAp()
1783 CompileProcessAOT(const std::string &bundleName, const std::string &compileMode, bool isAllBundle, std::vector<std::string> &compileResults) CompileProcessAOT() argument
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/
H A Dbundle_mgr_host.cpp1774 bool isAllBundle = data.ReadBool(); in HandleCompileProcessAOT() local
1778 ErrCode ret = CompileProcessAOT(bundleName, compileMode, isAllBundle, compileResults); in HandleCompileProcessAOT()
1797 bool isAllBundle = data.ReadBool(); in HandleCompileReset() local
1800 ErrCode ret = CompileReset(bundleName, isAllBundle); in HandleCompileReset()
1813 bool isAllBundle = data.ReadBool(); in HandleCopyAp() local
1815 ErrCode ret = CopyAp(bundleName, isAllBundle, results); in HandleCopyAp()
H A Dbundle_mgr_proxy.cpp4776 bool isAllBundle, std::vector<std::string> &compileResults) in CompileProcessAOT()
4793 if (!data.WriteBool(isAllBundle)) { in CompileProcessAOT()
4794 APP_LOGE("fail to compile due to write isAllBundle fail"); in CompileProcessAOT()
4813 ErrCode BundleMgrProxy::CompileReset(const std::string &bundleName, bool isAllBundle) in CompileReset() argument
4826 if (!data.WriteBool(isAllBundle)) { in CompileReset()
4827 APP_LOGE("fail to reset due to write isAllBundle fail"); in CompileReset()
4839 ErrCode BundleMgrProxy::CopyAp(const std::string &bundleName, bool isAllBundle, std::vector<std::string> &results) in CopyAp() argument
4852 if (!data.WriteBool(isAllBundle)) { in CopyAp()
4853 APP_LOGE("fail to CopyAp due to write isAllBundle fail"); in CopyAp()
4775 CompileProcessAOT(const std::string &bundleName, const std::string &compileMode, bool isAllBundle, std::vector<std::string> &compileResults) CompileProcessAOT() argument

Completed in 32 milliseconds