Home
last modified time | relevance | path

Searched refs:isAoaCompatible (Results 1 – 4 of 4) sorted by relevance

/platform_testing/libraries/aoa-helper/tests/src/com/android/helper/aoa/
DUsbHelperTest.java129 when(mDevice.isAoaCompatible()).thenReturn(false); in testGetSerialNumbers_aoaOnly()
133 when(mDevice.isAoaCompatible()).thenReturn(true); in testGetSerialNumbers_aoaOnly()
162 when(mDevice.isAoaCompatible()).thenReturn(true); in testGetAoaDevice()
168 when(mDevice.isAoaCompatible()).thenReturn(false); in testGetAoaDevice_incompatible()
DUsbDeviceTest.java127 assertTrue(mDevice.isAoaCompatible()); in testIsAoaCompatible()
140 assertFalse(mDevice.isAoaCompatible()); in testIsAoaCompatible()
/platform_testing/libraries/aoa-helper/src/com/android/helper/aoa/
DUsbHelper.java110 if (serialNumber != null && (!aoaOnly || device.isAoaCompatible())) { in getSerialNumbers()
189 return device != null && device.isAoaCompatible() ? new AoaDevice(this, device) : null; in getAoaDevice()
DUsbDevice.java118 public boolean isAoaCompatible() { in isAoaCompatible() method in UsbDevice