Searched refs:entryName (Results 1 – 9 of 9) sorted by relevance
| /developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/mock/rollup_mock/ |
| D | rollup_plugin_mock.ts | 108 const entryName = this.share.projectConfig.entryModuleName; constant 112 modulePathMap: { entry: `${projectRootDir}/${entryName}` }, 116 nodeModulesPath: `${projectRootDir}/${entryName}/${mode}/${NODE_MODULES_PATH}`, 119 moduleName: `${entryName}`,
|
| /developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/sign/ |
| D | SignHap.java | 87 String entryName = inEntry.getName(); in copyFiles() local 88 if (!FileUtils.isRunnableFile(entryName)) { in copyFiles() 89 lastAlignmentEntryName = entryName; in copyFiles() 239 private static int getStoredEntryDataAlignment(String entryName, int defaultAlignment, in getStoredEntryDataAlignment() argument 244 … if (!StringUtils.isEmpty(lastAlignmentEntryName) && entryName.equals(lastAlignmentEntryName)) { in getStoredEntryDataAlignment() 247 if (FileUtils.isRunnableFile(entryName)) { in getStoredEntryDataAlignment()
|
| /developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/sign/ |
| D | CodeSigning.java | 279 private boolean isNativeFile(String entryName) { in isNativeFile() argument 280 if (StringUtils.isEmpty(entryName)) { in isNativeFile() 283 if (entryName.endsWith(NATIVE_LIB_AN_SUFFIX)) { in isNativeFile() 288 Matcher matcher = pattern.matcher(entryName); in isNativeFile()
|
| D | VerifyCodeSignature.java | 186 String entryName = csb.getSoInfoSegment().getFileNameList().get(i); in verifyHap() local 188 JarEntry entry = inputJar.getJarEntry(entryName); in verifyHap() 191 String.format(Locale.ROOT, "Invalid dataSize of native lib %s", entryName)); in verifyHap()
|
| /developtools/packing_tool/adapter/ohos/ |
| D | Uncompress.java | 535 String entryName = ""; in unzipFromFile() local 543 entryName = entry.getName(); in unzipFromFile() 544 if (!entryName.toLowerCase(Locale.ENGLISH).endsWith(suffix) || in unzipFromFile() 545 … (!hapNames.isEmpty() && !hapNames.contains(entryName.replace(suffix, "")))) { in unzipFromFile() 550 tempDir = tempDir + LINUX_FILE_SEPARATOR + entryName.replace(suffix, ""); in unzipFromFile() 557 && entryName.contains(LINUX_FILE_SEPARATOR)) { in unzipFromFile() 561 String tempPath = tempDir + LINUX_FILE_SEPARATOR + entryName; in unzipFromFile() 571 repackHap(tempPath, tempDir, entryName, utility.getUnpackApk()); in unzipFromFile() 1062 … String entryName = (baseDir + srcFile.getName()).replace(File.separator, LINUX_FILE_SEPARATOR); in compressFile() local 1063 ZipEntry zipEntry = new ZipEntry(entryName); in compressFile()
|
| D | Scan.java | 197 String entryName = entry.getName(); in unpackEntryToFile() local 198 File entryFile = new File(outPath, entryName); in unpackEntryToFile()
|
| D | ScanStatSuffix.java | 512 String entryName = entry.getName(); in unpackEntryToFile() local 513 File entryFile = new File(outPath, entryName); in unpackEntryToFile()
|
| D | Compressor.java | 2118 … String entryName = (baseDir + srcFile.getName()).replace(File.separator, LINUX_FILE_SEPARATOR); in compressFile() local 2119 ZipEntry zipEntry = new ZipEntry(entryName); in compressFile() 2120 if (!entryName.contains(RAW_FILE_PATH) && in compressFile() 3087 String entryName = entry.getName(); in unpackHap() local 3088 File entryFile = new File(outPath, entryName); in unpackHap()
|
| /developtools/ace_ets2bundle/compiler/src/ |
| D | process_component_class.ts | 293 function getEntryNameFunction(entryName: string): ts.MethodDeclaration { 303 [ts.factory.createReturnStatement(ts.factory.createStringLiteral(entryName))],
|