Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/command/
DCommandScheduler.java140 private ScheduledThreadPoolExecutor mCommandTimer; field in CommandScheduler
891 mCommandTimer = new ScheduledThreadPoolExecutor(1); in CommandScheduler()
1029 mCommandTimer.shutdown(); in run()
1506 mCommandTimer.schedule(delayCommand, delayTime, TimeUnit.MILLISECONDS); in addExecCommandToQueue()
1717 return mCommandTimer.isShutdown() || (mShutdownOnEmpty && getAllCommandsSize() == 0); in isShutdown()
1721 return mCommandTimer.isShutdown() || mShutdownOnEmpty; in isShuttingDown()
1741 if (mCommandTimer != null) { in doShutdown()
1742 mCommandTimer.shutdownNow(); in doShutdown()
1772 if (mCommandTimer != null) { in removeAllCommands()
1773 for (Runnable task : mCommandTimer.getQueue()) { in removeAllCommands()
[all …]