HomeSort by relevance Sort by last modified time
    Searched refs:FastbootDevice (Results 1 - 11 of 11) sorted by null

  /system/iot/attestation/at-factory-tool/
fastbootsubp_unittest.py 42 fastbootsubp.FastbootDevice.fastboot_command = 'fastboot'
44 # Test FastbootDevice.ListDevices
48 device_serial_numbers = fastbootsubp.FastbootDevice.ListDevices()
58 device_serial_numbers = fastbootsubp.FastbootDevice.ListDevices()
69 device_serial_numbers = fastbootsubp.FastbootDevice.ListDevices()
83 device_serial_numbers = fastbootsubp.FastbootDevice.ListDevices()
91 device_serial_numbers = fastbootsubp.FastbootDevice.ListDevices()
102 fastbootsubp.FastbootDevice.ListDevices()
105 # Test FastbootDevice.Oem
110 device = fastbootsubp.FastbootDevice(self.TEST_SERIAL
    [all...]
fastbootsh_unittest.py 41 # Test FastbootDevice.ListDevices
42 @patch('fastbootsh.FastbootDevice.fastboot_command', create=True)
45 device_serial_numbers = fastbootsh.FastbootDevice.ListDevices()
50 @patch('fastbootsh.FastbootDevice.fastboot_command', create=True)
54 device_serial_numbers = fastbootsh.FastbootDevice.ListDevices()
60 @patch('fastbootsh.FastbootDevice.fastboot_command', create=True)
67 device_serial_numbers = fastbootsh.FastbootDevice.ListDevices()
71 @patch('fastbootsh.FastbootDevice.fastboot_command', create=True)
74 device_serial_numbers = fastbootsh.FastbootDevice.ListDevices()
78 @patch('fastbootsh.FastbootDevice.fastboot_command', create=True
    [all...]
fastbootsh.py 36 class FastbootDevice(object):
54 out = FastbootDevice.fastboot_command('devices')
207 return FastbootDevice.HOST_OS
fastbootsubp.py 37 class FastbootDevice(object):
57 [FastbootDevice.fastboot_command, 'devices'],
86 [FastbootDevice.fastboot_command, '-s', self.serial_number,
111 FastbootDevice.fastboot_command, '-s', self.serial_number,
136 FastbootDevice.fastboot_command, '-s', self.serial_number,
160 FastbootDevice.fastboot_command, '-s', self.serial_number,
184 FastbootDevice.fastboot_command, '-s', self.serial_number,
212 FastbootDevice.fastboot_command, '-s', self.serial_number,
234 return FastbootDevice.HOST_OS
atft.py 41 from fastbootsh import FastbootDevice
44 from fastbootsubp import FastbootDevice
351 return AtftManager(FastbootDevice, SerialMapper, self.configs)
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/device/
ManagedTestDeviceFactory.java 23 import com.android.tradefed.device.DeviceManager.FastbootDevice;
84 if (idevice instanceof FastbootDevice) {
DeviceSelectionOptions.java 20 import com.android.tradefed.device.DeviceManager.FastbootDevice;
425 && (!(device instanceof StubDevice) || (device instanceof FastbootDevice))) {
426 // Only check battery on physical device. (FastbootDevice placeholder is always for
428 if (device instanceof FastbootDevice) {
450 && (!(device instanceof StubDevice) || (device instanceof FastbootDevice))) {
451 // Only check battery temp on physical device. (FastbootDevice placeholder is
454 if (device instanceof FastbootDevice) {
DeviceManager.java 461 FastbootDevice d = new FastbootDevice(serial);
468 public static class FastbootDevice extends StubDevice {
469 public FastbootDevice(String serial) {
    [all...]
  /development/python-packages/fastboot/
device.py 27 class FastbootDevice(object):
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/
DeviceSelectionOptionsTest.java 25 import com.android.tradefed.device.DeviceManager.FastbootDevice;
527 * A FastbootDevice does not expose a battery level so if a battery is specified we cannot match
535 assertFalse(options.matches(new FastbootDevice("serial")));
544 assertTrue(options.matches(new FastbootDevice("serial")));
  /system/extras/tests/bootloader/
bootloadertest.py 29 cls.fastboot = fastboot.FastbootDevice()

Completed in 269 milliseconds