Searched refs:fastboot (Results 1 – 9 of 9) sorted by relevance
/tools/tradefederation/contrib/src/com/android/fastboot/tests/ |
D | FastbootTest.java | 16 package com.android.fastboot.tests; 171 File fastboot = getFastbootFile(mBuildInfo); in testFastboot() local 172 if (fastboot == null) { in testFastboot() 178 ((IManagedTestDevice) mDevice).setFastbootPath(fastboot.getAbsolutePath()); in testFastboot() 289 File fastboot = buildInfo.getFile("fastboot"); in getFastbootFile() local 290 if (fastboot == null) { in getFastbootFile() 293 FileUtil.chmodGroupRWX(fastboot); in getFastbootFile() 294 return fastboot; in getFastbootFile()
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | DeviceManager.java | 267 final FastbootHelper fastboot = new FastbootHelper(getRunUtil(), getFastbootPath()); in init() local 268 if (fastboot.isFastbootAvailable()) { in init() 561 final FastbootHelper fastboot = new FastbootHelper(getRunUtil(), getFastbootPath()); in addFastbootDevices() local 562 Set<String> serials = fastboot.getDevices(); in addFastbootDevices() 1352 final FastbootHelper fastboot = new FastbootHelper(getRunUtil(), getFastbootPath()); in run() local 1354 Map<String, Boolean> serialAndMode = fastboot.getBootloaderAndFastbootdDevices(); in run()
|
D | FastbootHelper.java | 109 Set<String> fastboot = parseDevices(fastbootResult.getStdout(), false); in getBootloaderAndFastbootdDevices() local 112 for (String f : fastboot) { in getBootloaderAndFastbootdDevices()
|
/tools/test/connectivity/acts/framework/acts/controllers/ |
D | android_device.py | 34 from acts.controllers import fastboot 194 out = fastboot.FastbootProxy().devices() 375 self.fastboot = fastboot.FastbootProxy( 516 out = self.fastboot.getvar("product").strip() 1238 self.fastboot.reboot()
|
/tools/tradefederation/core/src/com/android/tradefed/device/recovery/ |
D | UsbResetMultiDeviceRecovery.java | 76 FastbootHelper fastboot = getFastbootHelper(); in recoverDevices() local 77 Set<String> fastbootSerials = fastboot.getDevices(); in recoverDevices()
|
/tools/test/connectivity/acts_tests/tests/google/tel/live/ |
D | TelLiveNoQXDMLogTest.py | 508 ad.fastboot._w(timeout=300, ignore_status=True) 513 ad.fastboot.oem("continue-factory")
|
/tools/test/connectivity/acts/framework/acts/test_utils/tel/ |
D | tel_test_utils.py | 8082 ad.fastboot._w(timeout=300, ignore_status=True) 8085 ad.fastboot.reboot() 8145 ad.fastboot.reboot() 8476 ad.fastboot.flash("radio %s" % file_path, timeout=300) 8479 ad.fastboot.reboot("bootloader") 8481 output = ad.fastboot.getvar("version-baseband") 8490 ad.fastboot.reboot()
|
/tools/test/connectivity/acts/framework/acts/test_utils/gnss/ |
D | gnss_test_utils.py | 557 ad.fastboot._w(timeout=300, ignore_status=True) 560 ad.fastboot.reboot()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/device/ |
D | DeviceManagerTest.java | 397 File fastboot = new File(tmpDir, "fastboot"); in testUnpackZippedFastboot() local 398 FileUtil.writeToFile("TEST", fastboot); in testUnpackZippedFastboot()
|