Home
last modified time | relevance | path

Searched refs:VERSION_NAME (Results 1 – 5 of 5) sorted by relevance

/tools/loganalysis/src/com/android/loganalysis/item/
DAppVersionItem.java28 public static final String VERSION_NAME = "VERSION_NAME"; field in AppVersionItem
31 new HashSet<String>(Arrays.asList(VERSION_CODE, VERSION_NAME));
43 setAttribute(VERSION_NAME, versionName); in AppVersionItem()
51 return (String) getAttribute(VERSION_NAME); in getVersionName()
/tools/loganalysis/tests/src/com/android/loganalysis/item/
DDumpsysPackageStatsItemTest.java46 assertEquals("7.3 (3821978)", calcAppVersionJson.getString(AppVersionItem.VERSION_NAME)); in testToJson()
50 assertEquals("6.16.35.26.arm64", gsaAppVersionJson.getString(AppVersionItem.VERSION_NAME)); in testToJson()
/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DAppVersionFetcherTest.java63 AppVersionFetcher.fetch(mMockDevice, PACKAGE_NAME, AppVersionInfo.VERSION_NAME)); in testFetchVersionName_valid()
87 AppVersionFetcher.fetch(mMockDevice, PACKAGE_NAME, AppVersionInfo.VERSION_NAME)); in testFetchVersionName_validMultipleLines()
113 AppVersionFetcher.fetch(mMockDevice, PACKAGE_NAME, AppVersionInfo.VERSION_NAME); in testFetchVersionName_invalidResponse()
/tools/loganalysis/src/com/android/loganalysis/parser/
DDumpsysPackageStatsParser.java35 private static final Pattern VERSION_NAME = Pattern.compile("^\\s*versionName=(.*)$"); field in DumpsysPackageStatsParser
62 m = VERSION_NAME.matcher(line); in parse()
/tools/tradefederation/core/src/com/android/tradefed/util/
DAppVersionFetcher.java37 VERSION_NAME enumConstant
59 case VERSION_NAME: in fetch()