Home
last modified time | relevance | path

Searched refs:errMsg (Results 1 – 7 of 7) sorted by relevance

/developtools/packing_tool/adapter/ohos/
DModuleJsonUtil.java112 String errMsg = "parse JSONobject failed."; in parseStageVersion()
113 LOG.error(errMsg); in parseStageVersion()
114 throw new BundleException(errMsg); in parseStageVersion()
122 … String errMsg = "ModuleJsonUtil:parseStageVersion json file do not contain version."; in parseStageVersion() local
123 LOG.error(errMsg); in parseStageVersion()
124 throw new BundleException(errMsg); in parseStageVersion()
132 String errMsg = "ModuleJsonUtil:parseStageVersion json file do not contain app."; in parseStageVersion() local
133 LOG.error(errMsg); in parseStageVersion()
134 throw new BundleException(errMsg); in parseStageVersion()
153 String errMsg = "parse JSONobject failed."; in parseFaVersion()
[all …]
DFileUtils.java344 String errMsg = "CompressorFileUtil::copyFile input file is null."; in copyFile() local
345 LOG.error(errMsg); in copyFile()
346 throw new BundleException(errMsg); in copyFile()
372 String errMsg = "CompressorFileUtil::makeDir input file is null."; in makeDir() local
373 LOG.error(errMsg); in makeDir()
374 throw new BundleException(errMsg); in makeDir()
DCompressor.java1038 String errMsg = "Compressor::compressAppModeForMultiProject There are some " + in compressAppModeForMultiProject() local
1040 throw new BundleException(errMsg); in compressAppModeForMultiProject()
1048 String errMsg = "Compressor::compressAppModeForMultiProject file failed."; in compressAppModeForMultiProject()
1049 LOG.error(errMsg); in compressAppModeForMultiProject()
1050 throw new BundleException(errMsg); in compressAppModeForMultiProject()
1078 String errMsg = "Compressor:disposeApp disposeApp failed."; in disposeApp()
1079 LOG.error(errMsg); in disposeApp()
1080 throw new BundleException(errMsg); in disposeApp()
1160 String errMsg = "Compressor:copyHapFromApp app path not found."; in copyHapAndHspFromApp()
1161 LOG.error(errMsg); in copyHapAndHspFromApp()
[all …]
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/bundle/
Dbundle_mode.ts193 let errMsg: string = '';
212 errMsg += data.toString();
216 if (errMsg !== undefined && errMsg.length > 0) {
217 this.logger.error(red, errMsg, reset);
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/
Dmodule_mode.ts388 let errMsg: string = '';
408 errMsg += data.toString();
412 if (errMsg !== undefined && errMsg.length > 0) {
413 this.logger.error(red, errMsg, reset);
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/verify/
DVerifyElf.java229 String errMsg = "Verify codesign error!"; in verifyElf() local
230 result = new VerifyResult(false, VerifyResult.RET_IO_ERROR, errMsg); in verifyElf()
DVerifyHap.java260 String errMsg = "code sign verify failed"; in verifyHap() local
261 return new VerifyResult(false, VerifyResult.RET_CODESIGN_DATA_ERROR, errMsg); in verifyHap()