Searched defs:connections (Results 1 - 25 of 31) sorted by relevance

12

/external/autotest/frontend/
H A Dsetup_django_environment.py12 from django.db import connections namespace
14 connections[name].cursor()
15 connections[name].connection.autocommit(True)
H A Dsetup_test_environment.py18 from django.db import connections namespace
21 connection = connections['default']
22 connection_readonly = connections['readonly']
23 connection_global = connections['global']
24 connection_server = connections['server']
/external/libmicrohttpd/src/examples/
H A Dmhd2spdy.c80 struct SPDY_Connection *connections[MAX_SPDY_CONNECTIONS]; local
163 connections, MAX_SPDY_CONNECTIONS, &spdy_npollfds);
185 spdy_run_select(&rs, &ws, &es, connections, spdy_npollfds);
H A Dmhd2spdy_spdy.c911 struct SPDY_Connection *connections[],
942 connections[*real_size] = glob_opt.spdy_connection;
971 connections[*real_size] = connection;
986 struct SPDY_Connection *connections[],
1014 connections[*real_size] = glob_opt.spdy_connection;
1041 connections[*real_size] = connection;
1057 struct SPDY_Connection *connections[],
1066 // PRINT_INFO2("exec about to be called for %s", connections[i]->host);
1069 ret = spdy_exec_io(connections[i]);
1079 glob_opt.streams_opened -= connections[
983 spdy_get_selectfdset(fd_set * read_fd_set, fd_set * write_fd_set, fd_set * except_fd_set, struct SPDY_Connection *connections[], unsigned int max_size, nfds_t *real_size) argument
1108 spdy_run_select(fd_set * read_fd_set, fd_set * write_fd_set, fd_set * except_fd_set, struct SPDY_Connection *connections[], int size) argument
[all...]
/external/autotest/contrib/
H A Ddb_cleanup.py17 from django.db import connections, transaction namespace
59 cursor = connections['default'].cursor()
/external/autotest/tko/
H A Dsite_parse_unittest.py27 from django.db import connections namespace
135 for query in connections[database].queries:
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DConnectionPool.java36 * Manages reuse of HTTP and SPDY connections for reduced network latency. HTTP
38 * {@link Connection}. This class implements the policy of which connections to
44 * <li>{@code http.keepAlive} true if HTTP and SPDY connections should be
46 * <li>{@code http.maxConnections} maximum number of idle connections to
55 * parameters do so before making HTTP connections, and that this class is
80 * A background thread is used to cleanup expired connections. There will be, at most, a single
88 /** The maximum number of idle connections for each address. */
110 private final Deque<RealConnection> connections = new ArrayDeque<>(); field in class:ConnectionPool
131 /** Returns the number of idle connections in the pool. */
134 for (RealConnection connection : connections) {
[all...]
/external/libevent/
H A Devrpc-internal.h90 struct evconq connections; member in struct:evrpc_pool
H A Dhttp-internal.h92 /* for server connections, the http server they are connected with */
119 /* both the http server as well as the rpc system need to queue connections */
145 /* All live connections on this host. */
146 struct evconq connections; member in struct:evhttp
/external/webrtc/webrtc/base/
H A Dhttpserver.cc80 std::list<Connection*> connections; local
83 connections.push_back(it->second);
85 for (std::list<Connection*>::const_iterator it = connections.begin();
86 it != connections.end(); ++it) {
/external/webrtc/webrtc/p2p/base/
H A Dp2ptransportchannel.h13 // connections which are combinations of candidates from each end (Alice and
15 // Bob are used to make a connection, repeat to make many connections).
17 // When all of the available connections become invalid (non-writable), we
18 // kick off a process of determining more candidates and more connections.
174 const std::vector<Connection*>& connections() const { return connections_; } function in class:cricket::P2PTransportChannel
H A Dport.h113 // connections to similar mechanisms of the other client. Subclasses of this
207 // can't be used in establishing the connections. When port is in shared mode
213 // Returns a map containing all of the connections of this port, keyed by the
216 const AddressMap& connections() { return connections_; } function in class:cricket::Port
256 // Called if the port has no connections and is no longer useful.
351 // Called when one of our connections deletes itself.
449 // be false for TCP connections.
H A Dp2ptransportchannel_unittest.cc516 // Allow a few turns of the crank for the best connections to emerge.
1246 // Wait until the callee's connections are created.
1442 // Testing forceful TURN connections.
1580 // The best connections will switch, so keep references to them.
1632 // The best connections will switch, so keep references to them.
1676 const std::vector<cricket::Connection*>& connections = local
1677 ep2_ch1()->connections();
1678 ASSERT_EQ(2U, connections.size());
1679 cricket::Connection* backup_conn = connections[1];
1863 // ufrag that was not seen before, it will be used to create connections
[all...]
/external/chromium-trace/catapult/telemetry/third_party/tsproxy/
H A Dtsproxy.py35 connections = {} variable
73 global connections, in_pipe, out_pipe
86 if main_thread and connection_id in connections and self.peer in connections[connection_id]and self.latency == 0 and self.kbps == .0:
101 if connection_id in connections:
102 if self.peer in connections[connection_id]:
104 connections[connection_id][self.peer].handle_message(message)
107 # Clean up any disconnected connections
109 connections[connection_id]['server'].close()
113 connections[connection_i
[all...]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
H A DBluetoothFacade.java59 private Map<String, BluetoothConnection> connections = field in class:BluetoothFacade
199 @Rpc(description = "Requests that the device be discoverable for Bluetooth connections.")
486 for (Map.Entry<String, BluetoothConnection> entry : connections.entrySet()) {
490 connections.clear();
H A DBluetoothRfcommFacade.java63 connections = new HashMap<String, BluetoothConnection>(); field in class:BluetoothRfcommFacade
78 conn = connections.get(connID);
79 } else if (connections.size() == 1) {
80 conn = (BluetoothConnection) connections.values().toArray()[0];
90 connections.put(uuid, conn);
177 @Rpc(description = "Returns active Bluetooth connections.")
180 for (Map.Entry<String, BluetoothConnection> entry : connections.entrySet()) {
220 connections.remove(conn.getUUID());
235 connections.remove(conn.getUUID());
253 connections
[all...]
/external/autotest/frontend/afe/
H A Dmodel_logic.py7 from django.db import connections namespace
307 cursor = connections[query_set.db].cursor()
419 cursor = connections[related_model.objects.db].cursor()
/external/webrtc/webrtc/p2p/client/
H A Dbasicportallocator.cc527 // creating candidate pairs (connections) and issue connectivity checks.
673 std::vector<Connection*> connections; local
682 for (iter = ports[i]->connections().begin();
683 iter != ports[i]->connections().end();
685 connections.push_back(iter->second);
690 << connections.size() << " connections";
692 for (size_t i = 0; i < connections.size(); ++i)
693 connections[i]->Destroy();
695 if (running_ || (ports.size() > 0) || (connections
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Dtncs.c99 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;
/external/wpa_supplicant_8/src/eap_server/
H A Dtncs.c99 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;
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Dtncs.c99 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;
/external/libmicrohttpd/src/microhttpd/
H A Dinternal.h515 * Next pointer for the EDLL listing connections that are epoll-ready.
520 * Previous pointer for the EDLL listing connections that are epoll-ready.
536 * Next pointer for the XDLL organizing connections by timeout.
545 * Previous pointer for the XDLL organizing connections by timeout.
576 * connections) and the IP address (which persists
900 * State kept for each MHD daemon. All connections are kept in two
920 * Head of doubly-linked list of our current, active connections.
925 * Tail of doubly-linked list of our current, active connections.
930 * Head of doubly-linked list of our current but suspended connections.
935 * Tail of doubly-linked list of our current but suspended connections
1163 unsigned int connections; member in struct:MHD_Daemon
[all...]
/external/guice/extensions/persist/lib/
H A Dhibernate3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/hibernate/AssertionFailure.class AssertionFailure. ...
H A Dlog4j-1.2.14.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlog4j-1.2.14.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...

Completed in 446 milliseconds

12