OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FastbootHelper
(Results
1 - 3
of
3
) sorted by null
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
FastbootHelperTest.java
30
* Unit tests for {@link
FastbootHelper
}.
35
private
FastbootHelper
mFastbootHelper;
44
mFastbootHelper = new
FastbootHelper
(mMockRunUtil, "fastboot");
79
* Ensure that
FastbootHelper
cannot be created with incorrect params
83
new
FastbootHelper
(null, "/fakepath/");
91
* Ensure that
FastbootHelper
cannot be created with incorrect path params
95
new
FastbootHelper
(mMockRunUtil, null);
101
new
FastbootHelper
(mMockRunUtil, "");
153
* Test {@link
FastbootHelper
#executeCommand(String, String)} return the stdout on success.
167
* Test {@link
FastbootHelper
#executeCommand(String, String)} return null on failur
[
all
...]
/tools/tradefederation/core/src/com/android/tradefed/device/
FastbootHelper.java
32
public class
FastbootHelper
{
45
public
FastbootHelper
(final IRunUtil runUtil, final String fastbootPath) {
DeviceManager.java
218
final
FastbootHelper
fastboot = new
FastbootHelper
(getRunUtil(), mFastbootPath);
458
final
FastbootHelper
fastboot = new
FastbootHelper
(getRunUtil(), mFastbootPath);
[
all
...]
Completed in 626 milliseconds