Home
last modified time | relevance | path

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

/external/devlib/devlib/utils/
Dandroid.py154 active_connections = defaultdict(int) variable in AdbConnection
200 AdbConnection.active_connections[self.device] += 1
235 AdbConnection.active_connections[self.device] -= 1
236 if AdbConnection.active_connections[self.device] <= 0:
238 del AdbConnection.active_connections[self.device]
/external/webrtc/webrtc/p2p/base/
Dp2ptransportchannel.cc310 std::vector<Connection*> active_connections; in ComputeState() local
313 active_connections.push_back(connection); in ComputeState()
316 if (active_connections.empty()) { in ComputeState()
321 for (Connection* connection : active_connections) { in ComputeState()