/foundation/bundlemanager/bundle_tool/frameworks/include/ |
H A D | bundle_command.h | 261 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 D | aot_handler.h | 39 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 D | bundle_command.cpp | 299 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 D | aot_handler.cpp | 333 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 D | bundle_mgr_interface.h | 804 * @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 D | bundle_mgr_proxy.h | 573 * @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 D | bundle_mgr_host_impl.h | 552 * @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 D | bundle_mgr_host_impl.cpp | 1784 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 D | bundle_mgr_host.cpp | 1774 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 D | bundle_mgr_proxy.cpp | 4776 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
|