Home | History | Annotate | Download | only in util

Lines Matching refs:CommandResult

85      * @return a {@link CommandResult} containing result from command run
87 public CommandResult runTimedCmd(final long timeout, final String... command);
98 * @return a {@link CommandResult} containing result from command run
100 public CommandResult runTimedCmd(
111 * @return a {@link CommandResult} containing result from command run
113 public CommandResult runTimedCmdRetry(final long timeout, long retryInterval,
123 * @return a {@link CommandResult} containing result from command run
125 public CommandResult runTimedCmdSilently(final long timeout, final String... command);
136 * @return a {@link CommandResult} containing result from command run
138 public CommandResult runTimedCmdSilentlyRetry(final long timeout, long retryInterval,
148 * @return a {@link CommandResult} containing result from command run
150 CommandResult runTimedCmdWithInput(long timeout, String input, String... command);
159 * @return a {@link CommandResult} containing result from command run
161 CommandResult runTimedCmdWithInput(long timeout, String input, List<String> command);