Home
last modified time | relevance | path

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

12345678910>>...16

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DConnectionPool.java110 private final Deque<RealConnection> connections = new ArrayDeque<>(); field in ConnectionPool
134 for (RealConnection connection : connections) { in getIdleConnectionCount()
147 return connections.size(); in getConnectionCount()
159 for (RealConnection connection : connections) { in getMultiplexedConnectionCount()
167 return connections.size() - getMultiplexedConnectionCount(); in getHttpConnectionCount()
173 for (RealConnection connection : connections) { in get()
188 if (connections.isEmpty()) { in put()
191 connections.add(connection); in put()
201 connections.remove(connection); in connectionBecameIdle()
213 for (Iterator<RealConnection> i = connections.iterator(); i.hasNext(); ) { in evictAll()
[all …]
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/
DConnectionPool.java116 private final Deque<RealConnection> connections = new ArrayDeque<>(); field in ConnectionPool
140 for (RealConnection connection : connections) { in getIdleConnectionCount()
153 return connections.size(); in getConnectionCount()
165 for (RealConnection connection : connections) { in getMultiplexedConnectionCount()
173 return connections.size() - getMultiplexedConnectionCount(); in getHttpConnectionCount()
179 for (RealConnection connection : connections) { in get()
194 if (connections.isEmpty()) { in put()
197 connections.add(connection); in put()
207 connections.remove(connection); in connectionBecameIdle()
219 for (Iterator<RealConnection> i = connections.iterator(); i.hasNext(); ) { in evictAll()
[all …]
/external/autotest/frontend/
Dsetup_test_environment.py18 from django.db import connections
21 connection = connections['default']
22 connection_readonly = connections['readonly']
23 connection_global = connections['global']
24 connection_server = connections['server']
Dsetup_django_environment.py13 from django.db import connections
16 name, connections[name].settings_dict['HOST'])
17 connections[name].cursor()
18 connections[name].connection.autocommit(True)
/external/bcc/tools/
Dtcpconnect_example.txt4 This tool traces the kernel function performing active TCP connections
5 (eg, via a connect() syscall; accept() are passive connections). Some example
16 This output shows four connections, one from a "telnet" process, two from
19 connections: these may have failed.
37 The output shows some periodic connections (or attempts) from a "local_agent"
38 process to various other addresses. A few connections occur every minute.
Dtcptracer_example.txt4 This tool traces the kernel function performing TCP connections (eg, via a
10 Tracing TCP established connections. Ctrl-C to end.
32 Tracing TCP established connections. Ctrl-C to end.
Dtcpaccept_example.txt4 This tool traces the kernel function accepting TCP socket connections (eg, a
14 This output shows three connections, two IPv4 connections to PID 907, an "sshd"
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/resources/
Djdi.properties24 generic_attaching.address = Address to which to attach for VM connections
28 generic_listening.address = Address to listen for VM connections
34 socket_attaching.host = Machine name to which to attach for VM connections
36 socket_attaching.port = Port number to which to attach for VM connections
41 socket_listening.port = Port number at which to listen for VM connections
43 socket_listening.description = Accepts socket connections initiated by other VMs
44 memory_attaching.name = Name of the shared memory area to which to attach for VM connections
49 memory_listening.description = Accepts shared memory connections initiated by other VMs
/external/python/httplib2/tests/
Dtest_external.py49 assert http.connections["https:bitworking.org"].key_file == "akeyfile"
50 assert http.connections["https:bitworking.org"].cert_file == "acertfile"
58 assert http.connections["https:notthere.bitworking.org"].key_file is None
59 assert http.connections["https:notthere.bitworking.org"].cert_file is None
/external/bcc/examples/tracing/
Dtcpv4connect_example.txt4 This example traces the kernel function performing active TCP IPv4 connections
5 (eg, via a connect() syscall; accept() are passive connections). Some example
14 This output shows three connections, one from a "telnet" process and two from
16 and destination port. This traces attempted connections: these may have failed.
/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
/external/tensorflow/tensorflow/python/keras/utils/
Dlayer_utils.py193 connections = []
200 connections.append('{}[{}][{}]'.format(inbound_layer.name, node_index,
205 if not connections:
208 first_connection = connections[0]
214 if len(connections) > 1:
215 for i in range(1, len(connections)):
216 fields = ['', '', '', connections[i]]
/external/autotest/server/cros/network/rf_switch/
Drf_switch.py273 connections = []
281 connections.append(connection)
282 return tuple(connections)
294 connections = []
302 connections.append(connection)
303 return tuple(connections)
/external/python/apitools/apitools/base/py/
Dhttp_wrapper.py97 for connection_key, connection in http.connections.items():
110 if connection_key in http.connections:
111 http.connections[connection_key].set_debuglevel(old_level)
237 for conn_key in list(http.connections.keys()):
239 del http.connections[conn_key]
382 if url_scheme and url_scheme in http.connections:
383 connection_type = http.connections[url_scheme]
/external/curl/tests/libtest/
Dlib1533.c103 long connections = 0; in perform_and_check_connections() local
111 res = curl_easy_getinfo(curl, CURLINFO_NUM_CONNECTS, &connections); in perform_and_check_connections()
118 description, expected_connections, connections); in perform_and_check_connections()
120 if(connections != expected_connections) { in perform_and_check_connections()
/external/u-boot/doc/
DREADME.VSC3316-330814 On reset, VSC devices are in low-power state with all inputs, outputs and connections in an off sta…
16 …79.h to be written is 0x02 for two-wire interface. Also for crosspoint connections to be activated…
30 …This API configures the VSC3316 device for required connections. Connection through the VSC device…
37 num_con - number of connections to be configured
41 …For crosspoint connections to be activated, 01.h value need to be written in 75.h (core configurat…
/external/autotest/frontend/afe/
Dreadonly_connection.py30 return django_db.connections['global']
31 return django_db.connections['readonly']
/external/ltp/testcases/network/stress/ssh/
Dssh-stress01-rmt35 connections="$4"
44 while [ $num -lt $connections ]; do
Dssh-stress02-rmt36 connections="$4"
53 if [ $ssh_num -ge $connections ]; then
/external/curl/docs/cmdline-opts/
Dinsecure.d3 Help: Allow insecure server connections when using SSL
9 option allows curl to proceed and operate even for server connections
/external/curl/docs/
DFEATURES30 - persistent connections
99 - implicit ftps:// support that use SSL on both connections
101 connection to use SSL for both or one of the connections
148 - explicit "STARTTLS" usage to "upgrade" plain smtp:// connections to use SSL
163 - explicit "STLS" usage to "upgrade" plain pop3:// connections to use SSL
180 - explicit "STARTTLS" usage to "upgrade" plain imap:// connections to use SSL
/external/ltp/testcases/network/stress/http/
Dhttp-stress02-rmt37 connections="$5"
54 if [ $http_num -ge $connections ]; then
/external/webrtc/webrtc/base/
Dhttpserver.cc80 std::list<Connection*> connections; in CloseAll() local
83 connections.push_back(it->second); in CloseAll()
85 for (std::list<Connection*>::const_iterator it = connections.begin(); in CloseAll()
86 it != connections.end(); ++it) { in CloseAll()

12345678910>>...16