Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/device/
DDeviceManager.java134 private Set<IFastbootListener> mFastbootListeners; field in DeviceManager
269 mFastbootListeners = Collections.synchronizedSet(new HashSet<IFastbootListener>()); in init()
281 mFastbootListeners = null; in init()
1315 mFastbootListeners.add(listener); in addFastbootListener()
1328 mFastbootListeners.remove(listener); in removeFastbootListener()
1381 if (!mFastbootListeners.isEmpty()) { in run()
1384 new ArrayList<IFastbootListener>(mFastbootListeners.size()); in run()
1385 listenersCopy.addAll(mFastbootListeners); in run()