Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DDeviceInfoEntity.java60 public static final String ABI_NAME = "abiName"; field in DeviceInfoEntity
219 deviceEntity.setUnindexedProperty(ABI_NAME, this.abiName.toLowerCase()); in toEntity()
234 || !e.hasProperty(ABI_BITNESS) || !e.hasProperty(ABI_NAME)) { in fromEntity()
246 if (e.hasProperty(ABI_BITNESS) && e.hasProperty(ABI_NAME)) { in fromEntity()
248 abiName = (String) e.getProperty(ABI_NAME); in fromEntity()
/test/vts/harnesses/tradefed/src/com/android/tradefed/testtype/
DVtsMultiDeviceTest.java91 static final String ABI_NAME = "abi_name"; field in VtsMultiDeviceTest
948 jsonObject.put(ABI_NAME, mAbi.getName()); in updateVtsRunnerTestConfig()
949 CLog.d("Added %s to the Json object", ABI_NAME); in updateVtsRunnerTestConfig()