Home
last modified time | relevance | path

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

/cts/libs/vogar-expect/src/vogar/commands/
DRm.java27 new Command("rm", "-f", file.getPath()).execute(); in file()
31 new Command("rm", "-rf", directory.getPath()).execute(); in directoryTree()
DCommand.java46 public final class Command { class
55 public Command(String... args) { in Command() method in Command
59 public Command(List<String> args) { in Command() method in Command
68 private Command(Builder builder) { in Command() method in Command
281 public Command build() { in build()
282 return new Command(this); in build()
DMkdir.java27 new Command("mkdir", "-p", directory.getPath()).execute(); in mkdirs()
/cts/libs/vogar-expect/src/vogar/
DExpectationStore.java36 import vogar.commands.Command;
254 List<String> openBugs = new Command.Builder() in loadBugStatuses()