Home
last modified time | relevance | path

Searched refs:bundleType (Results 1 – 9 of 9) sorted by relevance

/developtools/packing_tool/adapter/ohos/
DVerifyCollection.java109 private String bundleType = "app"; field in VerifyCollection
135 public void setBundleType(String bundleType) { in setBundleType() argument
136 this.bundleType = bundleType; in setBundleType()
140 return bundleType; in getBundleType()
DModuleAppInfo.java118 private String bundleType = "app"; field in ModuleAppInfo
154 bundleType = type; in setBundleType()
171 return bundleType; in getBundleType()
DAppInfo.java112 private String bundleType = "app"; field in AppInfo
167 return bundleType; in getBundleType()
211 bundleType = type; in setBundleType()
DHapVerifyInfo.java112 private String bundleType = "app"; field in HapVerifyInfo
380 return bundleType; in getBundleType()
383 public void setBundleType(String bundleType) { in setBundleType() argument
384 this.bundleType = bundleType; in setBundleType()
DModuleJsonUtil.java1356 String bundleType = getJsonString(appObj, BUNDLE_TYPE); in parseStageBundleType() local
1357 if (bundleType.equals(APP)) { in parseStageBundleType()
1363 } else if (bundleType.equals(ATOMIC_SERVICE)) { in parseStageBundleType()
1369 } else if (SHARED.equals(bundleType)) { in parseStageBundleType()
2132 String bundleType = getJsonString(appObj, BUNDLE_TYPE); in checkAtomicServiceInstallationFree() local
2133 if (bundleType.equals(APP)) { in checkAtomicServiceInstallationFree()
2138 } else if (bundleType.equals(ATOMIC_SERVICE)) { in checkAtomicServiceInstallationFree()
2143 } else if (SHARED.equals(bundleType)) { in checkAtomicServiceInstallationFree()
DCompressor.java363 String bundleType = ModuleJsonUtil.parseStageBundleType(jsonString); in compressHap() local
364 if (TYPE_SHARED.equals(bundleType)) { in compressHap()
2273 String bundleType = hapVerifyInfo.getBundleType(); in checkHapIsValid() local
2274 if (TYPE_SHARED.equals(bundleType)) { in checkHapIsValid()
DUncompress.java790 String bundleType = "app"; in getFABundleType() local
792 bundleType = "atomicService"; in getFABundleType()
794 return bundleType; in getFABundleType()
DHapVerify.java1242 String bundleType = hapVerifyInfoList.get(0).getBundleType(); in checkAtomicServiceIsValid() local
1243 if (!bundleType.equals(ATOMIC_SERVICE)) { in checkAtomicServiceIsValid()
/developtools/packing_tool/
DREADME_zh.md360 | bundleType | String | 标识bundle的类型,取值:<br/>- app:普通应用<br/>- atomicService:元服务…