/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/aot/ |
H A D | aot_handler.h | 39 …Code 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> &re…
|
/ohos5.0/foundation/bundlemanager/bundle_tool/frameworks/include/ |
H A D | bundle_command.h | 255 std::string CopyAp(const std::string &bundleName, bool isAllBundle) const; 258 const std::string &bundleName, const std::string &compileMode, bool isAllBundle) const; 259 std::string CompileReset(const std::string &bundleName, bool isAllBundle) const; 290 ErrCode ParseCopyApCommand(int32_t option, std::string &bundleName, bool &isAllBundle);
|
/ohos5.0/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() 377 isAllBundle = true; in ParseCopyApCommand() 406 bool isAllBundle = false; in RunAsCompileCommand() local 433 isAllBundle = true; in RunAsCompileCommand() 484 isAllBundle = true; in RunAsCompileCommand() 501 compileResults = CompileProcessAot(bundleName, compileMode, isAllBundle); in RunAsCompileCommand() 503 compileResults = CompileReset(bundleName, isAllBundle); in RunAsCompileCommand() 2049 ErrCode ret = bundleMgrProxy_->CopyAp(bundleName, isAllBundle, copyApResults); in CopyAp() [all …]
|
/ohos5.0/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() 345 if (isAllBundle) { in HandleResetAOT() 381 ErrCode AOTHandler::HandleCopyAp(const std::string &bundleName, bool isAllBundle, in HandleCopyAp() argument 390 if (isAllBundle) { in HandleCopyAp() 793 …ler::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() 828 if (isAllBundle) { in HandleCompile()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include/bundlemgr/ |
H A D | bundle_mgr_interface.h | 809 bool isAllBundle, std::vector<std::string> &compileResults) in CompileProcessAOT() argument 819 virtual ErrCode CompileReset(const std::string &bundleName, bool isAllBundle) in CompileReset() argument 830 …virtual ErrCode CopyAp(const std::string &bundleName, bool isAllBundle, std::vector<std::string> &… in CopyAp() argument
|
H A D | bundle_mgr_proxy.h | 577 bool isAllBundle, std::vector<std::string> &compileResults) override; 584 virtual ErrCode CompileReset(const std::string &bundleName, bool isAllBundle) override; 592 …virtual ErrCode CopyAp(const std::string &bundleName, bool isAllBundle, std::vector<std::string> &…
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | bundle_mgr_host_impl.h | 556 bool isAllBundle, std::vector<std::string> &compileResults) override; 563 virtual ErrCode CompileReset(const std::string &bundleName, bool isAllBundle) override; 571 …virtual ErrCode CopyAp(const std::string &bundleName, bool isAllBundle, std::vector<std::string> &…
|
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/ |
H A D | bundle_mgr_host.cpp | 1782 bool isAllBundle = data.ReadBool(); in HandleCompileProcessAOT() local 1786 ErrCode ret = CompileProcessAOT(bundleName, compileMode, isAllBundle, compileResults); in HandleCompileProcessAOT() 1805 bool isAllBundle = data.ReadBool(); in HandleCompileReset() local 1808 ErrCode ret = CompileReset(bundleName, isAllBundle); in HandleCompileReset() 1821 bool isAllBundle = data.ReadBool(); in HandleCopyAp() local 1823 ErrCode ret = CopyAp(bundleName, isAllBundle, results); in HandleCopyAp()
|
H A D | bundle_mgr_proxy.cpp | 4751 bool isAllBundle, std::vector<std::string> &compileResults) in CompileProcessAOT() argument 4768 if (!data.WriteBool(isAllBundle)) { in CompileProcessAOT() 4788 ErrCode BundleMgrProxy::CompileReset(const std::string &bundleName, bool isAllBundle) in CompileReset() argument 4801 if (!data.WriteBool(isAllBundle)) { in CompileReset() 4814 ErrCode BundleMgrProxy::CopyAp(const std::string &bundleName, bool isAllBundle, std::vector<std::st… in CopyAp() argument 4827 if (!data.WriteBool(isAllBundle)) { in CopyAp()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | bundle_mgr_host_impl.cpp | 1834 bool isAllBundle, std::vector<std::string> &compileResults) in CompileProcessAOT() argument 1840 …return AOTHandler::GetInstance().HandleCompile(bundleName, compileMode, isAllBundle, compileResult… in CompileProcessAOT() 1843 ErrCode BundleMgrHostImpl::CompileReset(const std::string &bundleName, bool isAllBundle) in CompileReset() argument 1849 AOTHandler::GetInstance().HandleResetAOT(bundleName, isAllBundle); in CompileReset() 1853 ErrCode BundleMgrHostImpl::CopyAp(const std::string &bundleName, bool isAllBundle, std::vector<std:… in CopyAp() argument 1859 return AOTHandler::GetInstance().HandleCopyAp(bundleName, isAllBundle, results); in CopyAp()
|