Home
last modified time | relevance | path

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

/frameworks/native/services/sensorservice/
DSensorService.cpp471 const auto& activeConnections = connLock.getActiveConnections(); in dump() local
472 result.appendFormat("%zd active connections\n", activeConnections.size()); in dump()
473 for (size_t i=0 ; i < activeConnections.size() ; i++) { in dump()
475 activeConnections[i]->dump(result); in dump()
800 … const std::vector<sp<SensorEventConnection>> activeConnections = connLock.getActiveConnections(); in threadLoop() local
853 for (const sp<SensorEventConnection>& connection : activeConnections) { in threadLoop()
863 for (const sp<SensorEventConnection>& connection : activeConnections) { in threadLoop()
/frameworks/base/core/java/android/database/sqlite/
DSQLiteConnectionPool.java834 int activeConnections = 0; in logConnectionPoolBusyLocked() local
841 activeConnections += 1; in logConnectionPoolBusyLocked()
852 msg.append("Connections: ").append(activeConnections).append(" active, "); in logConnectionPoolBusyLocked()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DGsmCdmaCallTracker.java1162 ArrayList<GsmCdmaConnection> activeConnections = new ArrayList<>(); in updateMetrics() local
1164 if (conn != null) activeConnections.add(conn); in updateMetrics()
1166 mMetrics.writeRilCallList(mPhone.getPhoneId(), activeConnections, getNetworkCountryIso()); in updateMetrics() local
1167 mPhone.getVoiceCallSessionStats().onRilCallListChanged(activeConnections); in updateMetrics()