Home
last modified time | relevance | path

Searched refs:abiName (Results 1 – 6 of 6) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DDeviceInfoEntity.java86 private String abiName; field in DeviceInfoEntity
106 String abiName) { in DeviceInfoEntity() argument
113 this.abiName = abiName; in DeviceInfoEntity()
134 String abiName) { in DeviceInfoEntity() argument
141 this.abiName = abiName; in DeviceInfoEntity()
217 if (this.abiBitness != null && this.abiName != null) { in toEntity()
219 deviceEntity.setUnindexedProperty(ABI_NAME, this.abiName.toLowerCase()); in toEntity()
245 String abiName = null; in fromEntity() local
248 abiName = (String) e.getProperty(ABI_NAME); in fromEntity()
251 parentKey, branch, product, buildFlavor, buildId, abiBitness, abiName); in fromEntity()
[all …]
/test/vti/dashboard/src/main/java/com/android/vts/util/
DTestRunMetadata.java81 String abiName = device.getAbiName(); in processDeviceInfo() local
83 if (abiName.length() > 0) { in processDeviceInfo()
84 abi += abiName; in processDeviceInfo()
DTestResults.java270 String abiName = deviceInfoEntity.getAbiName(); in processReport() local
272 if (abiName.length() > 0) { in processReport()
273 abi += abiName; in processReport()
/test/catbox/report/src/com/android/catbox/result/
DJsonResultReporter.java192 String abiName = getAbiInfo(); in writeTestMetrics() local
198 mBuildInfo, abiName, classMethodName, mReportLogName, streamName); in writeTestMetrics()
/test/vti/dashboard/src/test/java/com/android/vts/job/
DVtsProfilingStatsJobServletTest.java123 String abiName = "abi"; in createProfilingRun() local
125 new DeviceInfoEntity(testRunKey, branch, product, flavor, id, bitness, abiName); in createProfilingRun()
/test/vti/dashboard/src/main/java/com/android/vts/api/
DTestDataForDevServlet.java183 private String abiName; field in TestDataForDevServlet.TestReportDataObject.Test.TestRun.DeviceInfo
483 deviceInfo.abiName); in doPost()