Home
last modified time | relevance | path

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

12345678910>>...12

/external/dbus/bus/
Dconnection.c81 BusConnections *connections; member
111 static void bus_connection_drop_pending_replies (BusConnections *connections,
125 return bus_context_get_loop (d->connections->context); in connection_get_loop()
130 get_connections_for_uid (BusConnections *connections, in get_connections_for_uid() argument
138 val = _dbus_hash_table_lookup_uintptr (connections->completed_by_user, in get_connections_for_uid()
147 adjust_connections_for_uid (BusConnections *connections, in adjust_connections_for_uid() argument
153 current_count = get_connections_for_uid (connections, uid); in adjust_connections_for_uid()
167 _dbus_hash_table_remove_uintptr (connections->completed_by_user, uid); in adjust_connections_for_uid()
174 retval = _dbus_hash_table_insert_uintptr (connections->completed_by_user, in adjust_connections_for_uid()
203 matchmaker = bus_context_get_matchmaker (d->connections->context); in bus_connection_disconnected()
[all …]
Dconnection.h36 BusConnections* bus_connections_ref (BusConnections *connections);
37 void bus_connections_unref (BusConnections *connections);
38 dbus_bool_t bus_connections_setup_connection (BusConnections *connections,
40 void bus_connections_foreach (BusConnections *connections,
43 void bus_connections_foreach_active (BusConnections *connections,
46 BusContext* bus_connections_get_context (BusConnections *connections);
47 void bus_connections_increment_stamp (BusConnections *connections);
55 dbus_bool_t bus_connections_check_limits (BusConnections *connections,
58 void bus_connections_expire_incomplete (BusConnections *connections);
60 dbus_bool_t bus_connections_expect_reply (BusConnections *connections,
[all …]
Dstats.c186 BusConnections *connections; in bus_stats_handle_get_stats() local
194 connections = bus_transaction_get_connections (transaction); in bus_stats_handle_get_stats()
217 bus_connections_get_n_active (connections)) || in bus_stats_handle_get_stats()
219 bus_connections_get_n_incomplete (connections)) || in bus_stats_handle_get_stats()
221 bus_connections_get_total_match_rules (connections)) || in bus_stats_handle_get_stats()
223 bus_connections_get_peak_match_rules (connections)) || in bus_stats_handle_get_stats()
225 bus_connections_get_peak_match_rules_per_conn (connections)) || in bus_stats_handle_get_stats()
227 bus_connections_get_total_bus_names (connections)) || in bus_stats_handle_get_stats()
229 bus_connections_get_peak_bus_names (connections)) || in bus_stats_handle_get_stats()
231 bus_connections_get_peak_bus_names_per_conn (connections))) in bus_stats_handle_get_stats()
/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/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.py12 from django.db import connections
14 connections[name].cursor()
15 connections[name].connection.autocommit(True)
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothRfcommFacade.java63 connections = new HashMap<String, BluetoothConnection>(); field in BluetoothRfcommFacade
77 conn = connections.get(connID); in getConnection()
78 } else if (connections.size() == 1) { in getConnection()
79 conn = (BluetoothConnection) connections.values().toArray()[0]; in getConnection()
89 connections.put(uuid, conn); in addConnection()
143 for (Map.Entry<String, BluetoothConnection> entry : connections.entrySet()) { in bluetoothRfcommActiveConnections()
192 connections.remove(conn.getUUID()); in bluetoothRfcommWrite()
207 connections.remove(conn.getUUID()); in bluetoothRfcommRead()
225 connections.remove(conn.getUUID()); in bluetoothRfcommWriteBinary()
242 connections.remove(conn.getUUID()); in bluetoothRfcommReadBinary()
[all …]
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
Dhttpproxy_test.py135 connections = []
141 connections.append(conn)
144 for conn in connections:
156 for conn in connections:
174 connections = []
180 connections.append(conn)
185 for conn in connections:
/external/libmicrohttpd/src/examples/
Dmhd2spdy_spdy.h74 struct SPDY_Connection *connections[],
83 struct SPDY_Connection *connections[],
90 struct SPDY_Connection *connections[],
98 struct SPDY_Connection *connections[],
Dmhd2spdy_spdy.c986 struct SPDY_Connection *connections[], in spdy_get_selectfdset() argument
1014 connections[*real_size] = glob_opt.spdy_connection; in spdy_get_selectfdset()
1041 connections[*real_size] = connection; in spdy_get_selectfdset()
1111 struct SPDY_Connection *connections[], in spdy_run_select() argument
1120 …if(FD_ISSET(connections[i]->fd, read_fd_set) || FD_ISSET(connections[i]->fd, write_fd_set) || FD_I… in spdy_run_select()
1123 ret = spdy_exec_io(connections[i]); in spdy_run_select()
1127 glob_opt.streams_opened -= connections[i]->streams_opened; in spdy_run_select()
1128 if(connections[i] == glob_opt.spdy_connection) in spdy_run_select()
1134 … DLL_remove(glob_opt.spdy_connections_head, glob_opt.spdy_connections_tail, connections[i]); in spdy_run_select()
1138 spdy_free_connection(connections[i]); in spdy_run_select()
Dmhd2spdy.c80 struct SPDY_Connection *connections[MAX_SPDY_CONNECTIONS]; in run_everything() local
163 connections, MAX_SPDY_CONNECTIONS, &spdy_npollfds); in run_everything()
185 spdy_run_select(&rs, &ws, &es, connections, spdy_npollfds); in run_everything()
/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/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
Dhttp_wrapper.py81 for connection_key, connection in http.connections.items():
94 if connection_key in http.connections:
95 http.connections[connection_key].set_debuglevel(old_level)
221 for conn_key in list(http.connections.keys()):
223 del http.connections[conn_key]
356 if url_scheme and url_scheme in http.connections:
357 connection_type = http.connections[url_scheme]
/external/chromium-trace/catapult/third_party/gsutil/third_party/socksipy-branch/
DBUGS13 1) Only outgoing connections are supported - This module currently only supports
14 outgoing TCP connections, though some servers may support incoming connections
/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/autotest/frontend/afe/
Dreadonly_connection.py30 return django_db.connections['global']
31 return django_db.connections['readonly']
/external/libgdx/gdx/src/com/badlogic/gdx/net/
DNetJavaImpl.java123 final ObjectMap<HttpRequest, HttpURLConnection> connections; field in NetJavaImpl
128 connections = new ObjectMap<HttpRequest, HttpURLConnection>(); in NetJavaImpl()
242 connections.remove(httpRequest); in removeFromConnectionsAndListeners()
248 connections.put(httpRequest, connection); in putIntoConnectionsAndListeners()
/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()
/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/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()
/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()

12345678910>>...12