Home
last modified time | relevance | path

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

/development/samples/VirtualDeviceManager/common/src/com/example/android/vdmdemo/common/
DConnectionManager.java95 private final List<Consumer<ConnectionStatus>> mConnectionCallbacks = new ArrayList<>(); field in ConnectionManager
116 synchronized (mConnectionCallbacks) { in addConnectionCallback()
117 mConnectionCallbacks.add(callback); in addConnectionCallback()
123 synchronized (mConnectionCallbacks) { in removeConnectionCallback()
124 mConnectionCallbacks.remove(callback); in removeConnectionCallback()
242 synchronized (mConnectionCallbacks) { in notifyStateChangedLocked()
243 for (Consumer<ConnectionStatus> callback : mConnectionCallbacks) { in notifyStateChangedLocked()