Home
last modified time | relevance | path

Searched refs:connections (Results 1 – 25 of 221) sorted by relevance

123456789

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DConnectionPool.java78 private final LinkedList<Connection> connections = new LinkedList<>(); field in ConnectionPool
112 return connections.size(); in getConnectionCount()
124 for (Connection connection : connections) { in getMultiplexedConnectionCount()
132 return connections.size() - getMultiplexedConnectionCount(); in getHttpConnectionCount()
138 for (ListIterator<Connection> i = connections.listIterator(connections.size()); in get()
162 connections.addFirst(foundConnection); // Add it back after iteration. in get()
205 boolean empty = connections.isEmpty(); in addConnection()
206 connections.addFirst(connection); in addConnection()
230 toEvict = new ArrayList<>(connections); in evictAll()
231 connections.clear(); in evictAll()
[all …]
/external/jetty/src/resources/org/eclipse/jetty/server/jmx/
DConnector-mbean.properties11 host: Host name to accept connections on
12 port: TCP/IP port to accept connections on
17 connections: Number of connections accepted by the server since statsReset() called. Undefined if s… key
18 connectionsOpen: Number of connections currently open that were opened since statsReset() called. U…
19 connectionsOpenMax: Maximum number of connections opened simultaneously since statsReset() called. …
20 connectionsDurationMean: Mean duration in milliseconds of open connections since statsReset() calle…
29 close(): Close the listening port (but allow existing connections to continue for graceful shutdown)
DAbstractConnector-mbean.properties4 …ceptance of new threads and newly active connections or to favor the handling of already dispatche…
/external/iptables/extensions/
Dlibxt_connlimit.man1 Allows you to restrict the number of parallel connections to a server per
5 Match if the number of existing connections is below or equal \fIn\fP.
8 Match if the number of existing connections is above \fIn\fP.
24 # allow 2 telnet connections per client host
40 # Limit the number of connections to a particular host:
Dlibxt_MASQUERADE.man6 connections: if you have a static IP address, you should use the SNAT
9 effect that connections are
13 any established connections are lost anyway).
Dlibxt_CONNSECMARK.man1 This module copies security markings from packets to connections
2 (if unlabeled), and from connections back to packets (also only
Dlibxt_connbytes.man13 NOTE that for connections which have no accounting information, the match will
15 whether \fBnew\fP connections will be byte/packet counted. Existing connection
Dlibxt_tcp.man37 incoming TCP connections, but outgoing TCP connections will be
Dlibxt_connmark.man5 Matches packets in connections with the given mark value (if a mask is
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
DDefaultServer.java77 …private Map<Integer,HostedConnection> connections = new ConcurrentHashMap<Integer,HostedConnection… field in DefaultServer
198 if( connections.isEmpty() ) in broadcast()
216 if( connections.isEmpty() ) in broadcast()
230 return connections.get(id); in getConnection()
235 return !connections.isEmpty(); in hasConnections()
240 … return Collections.unmodifiableCollection((Collection<HostedConnection>)connections.values()); in getConnections()
358 if( connections.put( c.getId(), c ) == null ) { in registerClient()
421 connections.remove( removed.getId() ); in connectionClosed()
424 log.log( Level.FINE, "Connections size:{0}", connections.size() ); in connectionClosed()
/external/fio/
DSERVER-TODO1 - Collate ETA output from multiple connections into 1
2 - If group_reporting is set, collate final output from multiple connections
/external/libvncserver/x11vnc/misc/enhanced_tightvnc_viewer/bin/
Dssvnc13 ssvnc - a GUI wrapper for SSL and SSH VNC connections.
28 Server. The use of Proxies and Gateways to make the connections is
/external/jetty/src/java/org/eclipse/jetty/websocket/
DWebSocketFactory.java48 …private final Queue<WebSocketServletConnection> connections = new ConcurrentLinkedQueue<WebSocketS… field in WebSocketFactory
452 return isRunning() && connections.add(connection); in addConnection()
457 return connections.remove(connection); in removeConnection()
462 for (WebSocketServletConnection connection : connections) in closeConnections()
DWebSocketClientFactory.java71 …private final Queue<WebSocketConnection> connections = new ConcurrentLinkedQueue<WebSocketConnecti… field in WebSocketClientFactory
257 return isRunning() && connections.add(connection); in addConnection()
262 return connections.remove(connection); in removeConnection()
267 for (WebSocketConnection connection : connections) in closeConnections()
/external/jetty/src/java/org/eclipse/jetty/server/bio/
DSocketConnector.java180 Set<EndPoint> connections = new HashSet<EndPoint>(); in dump() local
183 connections.addAll(_connections); in dump()
185 AggregateLifeCycle.dump(out, indent, connections); in dump()
/external/jetty/src/resources/org/eclipse/jetty/server/nio/jmx/
DSelectChannelConnector-mbean.properties2 lowResourcesConnections: The number of connections, which if exceeded represents low resources
/external/libxml2/result/
Ddia1.rdr100 3 1 dia:connections 0 0
106 3 15 dia:connections 0 0
Ddia2.rdr100 3 1 dia:connections 0 0
106 3 15 dia:connections 0 0
Ddia1.rde100 3 1 dia:connections 0 0
106 3 15 dia:connections 0 0
Ddia2.rde100 3 1 dia:connections 0 0
106 3 15 dia:connections 0 0
/external/libvncserver/x11vnc/
DMakefile.am34connections.c cursor.c gui.c help.c inet.c keyboard.c linuxfb.c macosx.c macosxCG.c macosxCGP.c ma…
/external/nanohttpd/
DREADME.md20 * Doesn't limit bandwidth, request time or simultaneous connections.
24 * Persistent connections (Connection "keep-alive") support allowing multiple requests to be served …
/external/jetty/src/java/org/eclipse/jetty/servlets/
DCrossOriginFilter.java254 … for (Enumeration connections = request.getHeaders("Connection"); connections.hasMoreElements();) in isEnabled()
256 String connection = (String)connections.nextElement(); in isEnabled()
/external/wpa_supplicant_8/src/eap_server/
Dtncs.c99 struct tncs_data *connections; member
128 tncs = tncs_global_data->connections; in tncs_get_conn()
1077 tncs->next = tncs_global_data->connections; in tncs_init()
1078 tncs_global_data->connections = tncs; in tncs_init()
1096 conn = tncs_global_data->connections; in tncs_deinit()
1102 tncs_global_data->connections = tncs->next; in tncs_deinit()
/external/okhttp/
DCHANGELOG.md93 * Fix: Improve pooling of connections that use proxy selectors.
94 * Fix: Don't leak connections when using ALPN on the desktop.
132 To disable cleartext connections, permitting `https` URLs only:
200 * Fix: Use the socket factory for direct connections.
227 * Fix: Don't leak connections! There was a regression in 2.0.0-RC1 where
228 connections were neither closed nor pooled.
255 bodies must always be closed, otherwise they will leak connections!
393 * Fix 1.5.0 regression where connections should not have been recycled.
454 * Fix: Respect read timeouts on recycled connections.
513 * Fix: Connection reuse was broken for most HTTPS connections due to a bug in

123456789