Home
last modified time | relevance | path

Searched refs:FastbootHelper (Results 1 – 5 of 5) sorted by relevance

/tools/tradefederation/core/javatests/com/android/tradefed/device/
DFastbootHelperTest.java56 private FastbootHelper mFastbootHelper;
62 mFastbootHelper = new FastbootHelper(mMockRunUtil, "fastboot"); in setUp()
112 new FastbootHelper(null, "/fakepath/"); in testConstructor_noRunUtil()
123 new FastbootHelper(mMockRunUtil, null); in testConstructor_badPath()
129 new FastbootHelper(mMockRunUtil, ""); in testConstructor_badPath()
/tools/tradefederation/core/src/com/android/tradefed/device/recovery/
DUsbResetMultiDeviceRecovery.java27 import com.android.tradefed.device.FastbootHelper;
76 FastbootHelper fastboot = getFastbootHelper(); in recoverDevices()
141 FastbootHelper getFastbootHelper() { in getFastbootHelper()
142 return new FastbootHelper(RunUtil.getDefault(), mFastbootPath); in getFastbootHelper()
/tools/tradefederation/core/javatests/com/android/tradefed/device/recovery/
DUsbResetMultiDeviceRecoveryTest.java30 import com.android.tradefed.device.FastbootHelper;
56 private FastbootHelper mFastboot;
64 mFastboot = mock(FastbootHelper.class); in setUp()
73 FastbootHelper getFastbootHelper() { in setUp()
/tools/tradefederation/core/src/com/android/tradefed/device/
DFastbootHelper.java36 public class FastbootHelper { class
49 public FastbootHelper(final IRunUtil runUtil, final String fastbootPath) { in FastbootHelper() method in FastbootHelper
DDeviceManager.java272 final FastbootHelper fastboot = new FastbootHelper(getRunUtil(), getFastbootPath()); in init()
1462 final FastbootHelper fastboot = new FastbootHelper(getRunUtil(), getFastbootPath()); in run()