Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DIFlashingResourcesParser.java65 public Collection<String> getRequiredBoards(); in getRequiredBoards() method
DFastbootDeviceFlasher.java332 if (resourceParser.getRequiredBoards() == null) { in downloadFlashingResources()
386 if (!containsIgnoreCase(resourceParser.getRequiredBoards(), deviceProductType)) { in verifyRequiredBoards()
392 resourceParser.getRequiredBoards()), in verifyRequiredBoards()
DFlashingResourcesParser.java217 public Collection<String> getRequiredBoards() { in getRequiredBoards() method in FlashingResourcesParser
/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/
DFlashingResourcesParserTest.java119 Collection<String> reqBoards = parser.getRequiredBoards(); in testParseAndroidInfo_boardAndProduct()
135 Collection<String> reqBoards = parser.getRequiredBoards(); in testParseAndroidInfo_onlyBoard()
154 Collection<String> reqBoards = parser.getRequiredBoards(); in testParseAndroidInfo_onlyProduct()
DFastbootDeviceFlasherTest.java151 when(mMockParser.getRequiredBoards()).thenReturn(null); in testFlash_missingBoard()
461 when(mMockParser.getRequiredBoards()).thenReturn(new ArrayList<String>()); in testDownloadFlashingResources_nullDeviceProduct()
486 when(mMockParser.getRequiredBoards()).thenReturn(ArrayUtil.list(boardName)); in testDownloadFlashingResources_NotFindBoard()
512 when(mMockParser.getRequiredBoards()).thenReturn(ArrayUtil.list(boardName)); in testDownloadFlashingResources()