Home
last modified time | relevance | path

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

/test/vti/dashboard/src/main/java/com/android/vts/entity/
DDeviceInfoEntity.java59 public static final String ABI_BITNESS = "abiBitness"; field in DeviceInfoEntity
218 deviceEntity.setUnindexedProperty(ABI_BITNESS, this.abiBitness.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()
247 abiBitness = (String) e.getProperty(ABI_BITNESS); in fromEntity()
/test/vts/harnesses/tradefed/src/com/android/tradefed/testtype/
DVtsMultiDeviceTest.java92 static final String ABI_BITNESS = "abi_bitness"; field in VtsMultiDeviceTest
950 jsonObject.put(ABI_BITNESS, mAbi.getBitness()); in updateVtsRunnerTestConfig()
951 CLog.d("Added %s to the Json object", ABI_BITNESS); in updateVtsRunnerTestConfig()