Home
last modified time | relevance | path

Searched refs:hapVerifyInfos (Results 1 – 2 of 2) sorted by relevance

/developtools/packing_tool/adapter/ohos/
DHapVerify.java59 … public static boolean checkHapIsValid(List<HapVerifyInfo> hapVerifyInfos) throws BundleException { in checkHapIsValid() argument
60 if (hapVerifyInfos == null || hapVerifyInfos.isEmpty()) { in checkHapIsValid()
65 if (!checkAppFieldsIsSame(hapVerifyInfos)) { in checkHapIsValid()
70 if (!checkModuleNameIsValid(hapVerifyInfos)) { in checkHapIsValid()
74 if (!checkPackageNameIsValid(hapVerifyInfos)) { in checkHapIsValid()
79 if (!checkEntryIsValid(hapVerifyInfos)) { in checkHapIsValid()
83 if (!checkDependencyIsValid(hapVerifyInfos)) { in checkHapIsValid()
88 if (!checkAtomicServiceIsValid(hapVerifyInfos)) { in checkHapIsValid()
93 if (!checkAbilityNameIsValid(hapVerifyInfos)) { in checkHapIsValid()
97 if (!checkTargetModuleNameIsExisted(hapVerifyInfos)) { in checkHapIsValid()
[all …]
DCompressor.java2240 List<HapVerifyInfo> hapVerifyInfos = new ArrayList<>(); in checkHapIsValid() local
2258 hapVerifyInfos.add(parseStageHapVerifyInfo(hapPath)); in checkHapIsValid()
2260 hapVerifyInfos.add(parseFAHapVerifyInfo(hapPath)); in checkHapIsValid()
2264 boolean res = checkSharedAppIsValid(hapVerifyInfos); in checkHapIsValid()
2272 for (HapVerifyInfo hapVerifyInfo : hapVerifyInfos) { in checkHapIsValid()
2280 setAtomicServiceFileSizeLimit(hapVerifyInfos); in checkHapIsValid()
2281 if (!HapVerify.checkHapIsValid(hapVerifyInfos)) { in checkHapIsValid()
2306 public static void setAtomicServiceFileSizeLimit(List<HapVerifyInfo>hapVerifyInfos) { in setAtomicServiceFileSizeLimit() argument
2307 for (HapVerifyInfo hapVerifyInfo : hapVerifyInfos) { in setAtomicServiceFileSizeLimit()
2510 …private static boolean checkSharedAppIsValid(List<HapVerifyInfo> hapVerifyInfos) throws BundleExce… in checkSharedAppIsValid() argument
[all …]