Home
last modified time | relevance | path

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

/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/
DFlashingResourcesParserTest.java19 import com.android.tradefed.targetprep.FlashingResourcesParser.AndroidInfo;
20 import com.android.tradefed.targetprep.FlashingResourcesParser.Constraint;
57 AndroidInfo fullInfo = FlashingResourcesParser.parseAndroidInfo(reader, null); in testParseAndroidInfo()
61 List<String> boards = result.get(FlashingResourcesParser.BOARD_KEY); in testParseAndroidInfo()
65 List<String> bootloaders = result.get(FlashingResourcesParser.BOOTLOADER_VERSION_KEY); in testParseAndroidInfo()
79 constraintMap.put(FlashingResourcesParser.BASEBAND_VERSION_KEY, new Under3Chars()); in testParseAndroidInfo_withConstraint()
81 AndroidInfo fullInfo = FlashingResourcesParser.parseAndroidInfo(reader, constraintMap); in testParseAndroidInfo_withConstraint()
85 List<String> boards = result.get(FlashingResourcesParser.BOARD_KEY); in testParseAndroidInfo_withConstraint()
89 List<String> bootloaders = result.get(FlashingResourcesParser.BOOTLOADER_VERSION_KEY); in testParseAndroidInfo_withConstraint()
91 List<String> radios = result.get(FlashingResourcesParser.BASEBAND_VERSION_KEY); in testParseAndroidInfo_withConstraint()
[all …]
DFastbootDeviceFlasherTest.java680 return new FlashingResourcesParser(reader); in getFlasherWithParserData()
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DFlashingResourcesParser.java40 public class FlashingResourcesParser implements IFlashingResourcesParser { class
93 public FlashingResourcesParser(File deviceImgZipFile, Map<String, Constraint> c) in FlashingResourcesParser() method in FlashingResourcesParser
104 public FlashingResourcesParser(File deviceImgZipFile) throws TargetSetupError { in FlashingResourcesParser() method in FlashingResourcesParser
119 public FlashingResourcesParser(BufferedReader infoReader, Map<String, Constraint> c) in FlashingResourcesParser() method in FlashingResourcesParser
132 public FlashingResourcesParser(BufferedReader infoReader) throws IOException { in FlashingResourcesParser() method in FlashingResourcesParser
DFastbootDeviceFlasher.java347 return new FlashingResourcesParser(localBuild.getDeviceImageFile()); in createFlashingResourcesParser()
/tools/tradefederation/core/src/com/android/tradefed/build/
DLocalDeviceBuildProvider.java21 import com.android.tradefed.targetprep.FlashingResourcesParser;
121 flashingResourcesParser = new FlashingResourcesParser( in parseBootloaderAndRadioVersions()