Searched refs:bundleType (Results 1 – 9 of 9) sorted by relevance
109 private String bundleType = "app"; field in VerifyCollection135 public void setBundleType(String bundleType) { in setBundleType() argument136 this.bundleType = bundleType; in setBundleType()140 return bundleType; in getBundleType()
118 private String bundleType = "app"; field in ModuleAppInfo154 bundleType = type; in setBundleType()171 return bundleType; in getBundleType()
112 private String bundleType = "app"; field in AppInfo167 return bundleType; in getBundleType()211 bundleType = type; in setBundleType()
112 private String bundleType = "app"; field in HapVerifyInfo380 return bundleType; in getBundleType()383 public void setBundleType(String bundleType) { in setBundleType() argument384 this.bundleType = bundleType; in setBundleType()
1356 String bundleType = getJsonString(appObj, BUNDLE_TYPE); in parseStageBundleType() local1357 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() local2133 if (bundleType.equals(APP)) { in checkAtomicServiceInstallationFree()2138 } else if (bundleType.equals(ATOMIC_SERVICE)) { in checkAtomicServiceInstallationFree()2143 } else if (SHARED.equals(bundleType)) { in checkAtomicServiceInstallationFree()
363 String bundleType = ModuleJsonUtil.parseStageBundleType(jsonString); in compressHap() local364 if (TYPE_SHARED.equals(bundleType)) { in compressHap()2273 String bundleType = hapVerifyInfo.getBundleType(); in checkHapIsValid() local2274 if (TYPE_SHARED.equals(bundleType)) { in checkHapIsValid()
790 String bundleType = "app"; in getFABundleType() local792 bundleType = "atomicService"; in getFABundleType()794 return bundleType; in getFABundleType()
1242 String bundleType = hapVerifyInfoList.get(0).getBundleType(); in checkAtomicServiceIsValid() local1243 if (!bundleType.equals(ATOMIC_SERVICE)) { in checkAtomicServiceIsValid()
360 | bundleType | String | 标识bundle的类型,取值:<br/>- app:普通应用<br/>- atomicService:元服务…