Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/device/
DIDeviceManager.java35 public static interface IFastbootListener { interface
258 public void addFastbootListener(IFastbootListener listener); in addFastbootListener()
264 public void removeFastbootListener(IFastbootListener listener); in removeFastbootListener()
DNativeDeviceStateMonitor.java23 import com.android.tradefed.device.IDeviceManager.IFastbootListener;
193 IFastbootListener listener = new StubFastbootListener(); in waitForDeviceNotAvailable()
524 IFastbootListener listener = new StubFastbootListener(); in waitForDeviceBootloaderOrFastbootd()
545 IFastbootListener listener = new NotifyFastbootListener(); in waitForDeviceBootloaderStateUpdate()
653 private static class StubFastbootListener implements IFastbootListener {
663 private static class NotifyFastbootListener implements IFastbootListener {
DDeviceManager.java129 private Set<IFastbootListener> mFastbootListeners;
274 mFastbootListeners = Collections.synchronizedSet(new HashSet<IFastbootListener>()); in init()
1422 public void addFastbootListener(IFastbootListener listener) { in addFastbootListener()
1435 public void removeFastbootListener(IFastbootListener listener) { in removeFastbootListener()
1498 Collection<IFastbootListener> listenersCopy = in run()
1499 new ArrayList<IFastbootListener>(mFastbootListeners.size()); in run()
1501 for (IFastbootListener listener : listenersCopy) { in run()
/tools/tradefederation/core/javatests/com/android/tradefed/device/
DMockDeviceManager.java176 public void addFastbootListener(IFastbootListener listener) { in addFastbootListener()
238 public void removeFastbootListener(IFastbootListener listener) { in removeFastbootListener()