Home
last modified time | relevance | path

Searched refs:commandFile (Results 1 – 4 of 4) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/command/
DCommandFileParserTest.java376 CommandFileParser commandFile = new CommandFileParser() { in testMacroParserInclude() local
389 assertParsedData(commandFile, expectedArgs); in testMacroParserInclude()
390 assertEquals(1, commandFile.getIncludedFiles().size()); in testMacroParserInclude()
391 assertTrue(commandFile.getIncludedFiles().iterator().next().endsWith("somefile.txt")); in testMacroParserInclude()
405 CommandFileParser commandFile = new CommandFileParser() { in testMacroParserInclude_twice() local
420 assertParsedData(commandFile, expectedArgs1, expectedArgs2); in testMacroParserInclude_twice()
433 CommandFileParser commandFile = new CommandFileParser() { in testMacroParserInclude_repeat() local
445 assertParsedData(commandFile, expectedArgs1); in testMacroParserInclude_repeat()
462 CommandFileParser commandFile = new CommandFileParser() { in testMacroParserInclude_parentDir() local
477 assertParsedData(commandFile, expectedArgs); in testMacroParserInclude_parentDir()
[all …]
/tools/tradefederation/core/remote/src/com/android/tradefed/command/remote/
DAddCommandFileOp.java35 AddCommandFileOp(String commandFile, List<String> extraArgs) { in AddCommandFileOp() argument
36 mCommandFile = commandFile; in AddCommandFileOp()
DRemoteClient.java164 public void sendAddCommandFile(String commandFile, List<String> extraArgs) in sendAddCommandFile() argument
166 sendOperation(new AddCommandFileOp(commandFile, extraArgs)); in sendAddCommandFile()
DIRemoteClient.java72 void sendAddCommandFile(String commandFile, List<String> extraArgs) throws RemoteException; in sendAddCommandFile() argument