/frameworks/base/services/core/java/com/android/server/am/ |
AppBindRecord.java | 31 final ArraySet<ConnectionRecord> connections = new ArraySet<>(); field in class:AppBindRecord 41 final int N = connections.size(); 43 pw.println(prefix + "Per-process Connections:"); 45 ConnectionRecord c = connections.valueAt(i);
|
IntentBindRecord.java | 82 final ArraySet<ConnectionRecord> connections = apps.valueAt(i).connections; local 83 for (int j=connections.size()-1; j>=0; j--) { 84 flags |= connections.valueAt(j).flags;
|
ContentProviderRecord.java | 45 final ArrayList<ContentProviderConnection> connections field in class:ContentProviderRecord 143 return !connections.isEmpty() || hasExternalProcessHandles(); 185 if (connections.size() > 0 || externalProcessNoHandleCount > 0) { 186 pw.print(prefix); pw.print(connections.size()); 187 pw.print(" connections, "); pw.print(externalProcessNoHandleCount); 191 if (connections.size() > 0) { 193 pw.print(prefix); pw.println("Connections:"); 195 for (int i=0; i<connections.size(); i++) { 196 ContentProviderConnection conn = connections.get(i);
|
ProcessRecord.java | 155 final ArraySet<ConnectionRecord> connections = new ArraySet<>(); field in class:ProcessRecord 376 if (connections.size() > 0) { 377 pw.print(prefix); pw.println("Connections:"); 378 for (int i=0; i<connections.size(); i++) { 379 pw.print(prefix); pw.print(" - "); pw.println(connections.valueAt(i)); 507 for (int i=connections.size()-1; i>=0; i--) { 508 ConnectionRecord cr = connections.valueAt(i); [all...] |
ActiveServices.java | 127 * All currently bound service connections. Keys are the IBinder of 644 for (int i=0; i<clientProc.connections.size(); i++) { 645 final ConnectionRecord conn = clientProc.connections.valueAt(i); 672 for (int conni=sr.connections.size()-1; conni>=0 && !anyClientActivities; conni--) { 673 ArrayList<ConnectionRecord> clist = sr.connections.valueAt(conni); [all...] |
ServiceRecord.java | 85 final ArrayMap<IBinder, ArrayList<ConnectionRecord>> connections field in class:ServiceRecord 296 if (connections.size() > 0) { 297 pw.print(prefix); pw.println("All Connections:"); 298 for (int conni=0; conni<connections.size(); conni++) { 299 ArrayList<ConnectionRecord> c = connections.valueAt(conni); 382 // connections directly in the service. 383 for (int conni=connections.size()-1; conni>=0; conni--) { 384 ArrayList<ConnectionRecord> cr = connections.valueAt(conni);
|
ActivityRecord.java | 148 HashSet<ConnectionRecord> connections; // All ConnectionRecord we hold field in class:ActivityRecord 325 if (connections != null) { 326 pw.print(prefix); pw.print("connections="); pw.println(connections); [all...] |
/cts/tests/tests/telecom/src/android/telecom/cts/ |
ConnectionServiceTest.java | 70 Collection<Connection> connections = CtsConnectionService.getAllConnectionsFromTelecom(); local 71 assertEquals(1, connections.size()); 72 assertTrue(connections.contains(connection1)); 83 connections = CtsConnectionService.getAllConnectionsFromTelecom(); 84 assertEquals(2, connections.size()); 85 assertTrue(connections.contains(connection2)); 90 connections = CtsConnectionService.getAllConnectionsFromTelecom(); 91 assertEquals(3, connections.size()); 92 assertTrue(connections.contains(connection3));
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
napenforcementclient.h | 17 INapEnforcementClientConnection **connections; member in struct:tagConnections 18 } Connections;
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
ConnectionPool.java | 32 * Manages reuse of HTTP and SPDY connections for reduced network latency. HTTP 35 * which connections to keep open for future use. 40 * <li>{@code http.keepAlive} true if HTTP and SPDY connections should be 42 * <li>{@code http.maxConnections} maximum number of idle connections to 51 * parameters do so before making HTTP connections, and that this class is 74 /** The maximum number of idle connections for each address. */ 78 private final LinkedList<Connection> connections = new LinkedList<>(); field in class:ConnectionPool 81 * A background thread is used to cleanup expired connections. There will be, at most, a single 110 /** Returns total number of connections in the pool. */ 112 return connections.size() [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
Call.java | 105 * @return true if the call contains one or more connections 108 List<Connection> connections = getConnections(); local 110 if (connections == null) { 114 return connections.size() > 0; 137 * @return true if the call contains only disconnected connections (if any) 145 * first, or null if there are no Connections in this Call 232 * last, or null if there are no Connections in this Call
|
/packages/services/Telephony/src/com/android/phone/ |
CallTime.java | 132 List connections = call.getConnections(); local 133 int count = connections.size(); 137 c = (Connection) connections.get(0); 143 c = (Connection) connections.get(i);
|
PhoneUtils.java | 149 * Handler that tracks the connections and updates the value of the 1721 List<Connection> connections = call.getConnections(); local [all...] |
/packages/services/Telephony/src/com/android/services/telephony/ |
CdmaConference.java | 148 List<Connection> connections = getConnections(); local 149 if (!connections.isEmpty()) { 151 getOriginalConnection(connections.get(0)); 193 final List<Connection> connections = getConnections(); local 194 if (connections.isEmpty()) { 197 return (CdmaConnection) connections.get(0);
|
TelephonyConference.java | 157 List<Connection> connections = getConnections(); local 158 if (connections == null || connections.isEmpty()) { 163 Connection primaryConnection = connections.get(0); 166 for (Connection connection : connections) { 202 final List<Connection> connections = getConnections(); local 203 if (connections.isEmpty()) { 206 return (TelephonyConnection) connections.get(0);
|
/external/jetty/src/java/org/eclipse/jetty/server/bio/ |
SocketConnector.java | 49 * Buffers are managed so that large buffers are only allocated to active connections. 180 Set<EndPoint> connections = new HashSet<EndPoint>(); local 183 connections.addAll(_connections); 185 AggregateLifeCycle.dump(out, indent, connections);
|
/external/jetty/src/java/org/eclipse/jetty/websocket/ |
WebSocketFactory.java | 43 * Factory to create WebSocket connections 48 private final Queue<WebSocketServletConnection> connections = new ConcurrentLinkedQueue<WebSocketServletConnection>(); field in class:WebSocketFactory 452 return isRunning() && connections.add(connection); 457 return connections.remove(connection); 462 for (WebSocketServletConnection connection : connections)
|
WebSocketClientFactory.java | 71 private final Queue<WebSocketConnection> connections = new ConcurrentLinkedQueue<WebSocketConnection>(); field in class:WebSocketClientFactory 257 return isRunning() && connections.add(connection); 262 return connections.remove(connection); 267 for (WebSocketConnection connection : connections)
|
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/ |
ContextMap.java | 35 * This class manages application callbacks and keeps track of GATT connections. 330 List<Connection> connections = getConnectionByApp(entry.id); local 334 sb.append(" Connections: " + connections.size() + "\n"); 336 Iterator<Connection> ii = connections.iterator();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
LaunchConfigDelegate.java | 179 int connections = -1; local 182 connections = bridge.getConnectionAttemptCount(); 189 if (connections == -1 || restarts == -1) { 202 String.format("%1$s attempts have been made to reconnect.", connections),
|
/external/wpa_supplicant_8/src/eap_server/ |
tncs.c | 99 struct tncs_data *connections; member in struct:tncs_global 128 tncs = tncs_global_data->connections; 1077 tncs->next = tncs_global_data->connections; 1078 tncs_global_data->connections = tncs; 1096 conn = tncs_global_data->connections; 1102 tncs_global_data->connections = tncs->next;
|
/frameworks/base/services/core/jni/ |
com_android_server_tv_TvInputHal.cpp | 336 KeyedVector<int, Connection>& connections = mConnections.editValueFor(deviceId); local 337 if (connections.indexOfKey(streamId) < 0) { 338 connections.add(streamId, Connection()); 340 Connection& connection = connections.editValueFor(streamId); 407 KeyedVector<int, Connection>& connections = mConnections.editValueFor(deviceId); local 408 if (connections.indexOfKey(streamId) < 0) { 411 Connection& connection = connections.editValueFor(streamId); 509 KeyedVector<int, Connection>& connections = mConnections.editValueFor(deviceId); local 510 for (size_t i = 0; i < connections.size(); ++i) { 511 removeStream(deviceId, connections.keyAt(i)) 526 KeyedVector<int, Connection>& connections = mConnections.editValueFor(deviceId); local 543 KeyedVector<int, Connection>& connections = mConnections.editValueFor(deviceId); local [all...] |
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/ |
DefaultServer.java | 77 private Map<Integer,HostedConnection> connections = new ConcurrentHashMap<Integer,HostedConnection>(); field in class:DefaultServer 125 // now, we hard-code the standard connections and treat the +2 extras 198 if( connections.isEmpty() ) 216 if( connections.isEmpty() ) 230 return connections.get(id); 235 return !connections.isEmpty(); 240 return Collections.unmodifiableCollection((Collection<HostedConnection>)connections.values()); 358 if( connections.put( c.getId(), c ) == null ) { 421 connections.remove( removed.getId() ); 424 log.log( Level.FINE, "Connections size:{0}", connections.size() ) [all...] |
/prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-websocket/8.1.14.v20131031/ |
jetty-websocket-8.1.14.v20131031.jar | |
/external/slf4j/log4j-over-slf4j/compatibility/lib/ |
log4j-1.2.14.jar | |