Home
last modified time | relevance | path

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

/tools/tradefederation/core/common_util/com/android/tradefed/command/
DCommandInterrupter.java35 public class CommandInterrupter { class
38 public static final CommandInterrupter INSTANCE = new CommandInterrupter();
60 public CommandInterrupter() {} in CommandInterrupter() method in CommandInterrupter
/tools/tradefederation/core/javatests/com/android/tradefed/command/
DCommandInterrupterTest.java46 private CommandInterrupter mInterrupter;
50 mInterrupter = new CommandInterrupter(); in setUp()
/tools/tradefederation/core/javatests/com/android/tradefed/util/
DRunUtilTest.java37 import com.android.tradefed.command.CommandInterrupter;
77 mRunUtil = new RunUtil(new CommandInterrupter()); in setUp()
197 CommandInterrupter interrupter = Mockito.mock(CommandInterrupter.class); in testRunTimed_interrupted()
629 CommandInterrupter interrupter = Mockito.mock(CommandInterrupter.class); in testSetInterruptibleInFuture()
/tools/tradefederation/core/common_util/com/android/tradefed/util/
DRunUtil.java23 import com.android.tradefed.command.CommandInterrupter;
75 private final CommandInterrupter mInterrupter;
81 this(CommandInterrupter.INSTANCE); in RunUtil()
85 RunUtil(@Nonnull CommandInterrupter interrupter) { in RunUtil()