Searched defs:connections (Results 1 - 25 of 35) 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/curl/tests/libtest/
H A Dlib1533.c103 long connections = 0; local
111 res = curl_easy_getinfo(curl, CURLINFO_NUM_CONNECTS, &connections);
117 fprintf(stderr, "%s: expected: %ld connections; actual: %ld connections\n",
118 description, expected_connections, connections);
120 if(connections != expected_connections) {
/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.py18 from django.db import connections, transaction namespace
60 cursor = connections['default'].cursor()
/external/autotest/tko/
H A Dsite_parse_unittest.py26 from django.db import connections namespace
134 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.h91 struct evconq connections; member in struct:evrpc_pool
H A Dhttp-internal.h92 /* for server connections, the http server they are connected with */
120 /* both the http server as well as the rpc system need to queue connections */
146 /* All live connections on this host. */
147 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/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
H A DBluetoothFacade.java59 private Map<String, BluetoothConnection> connections = field in class:BluetoothFacade
227 @Rpc(description = "Requests that the device be discoverable for Bluetooth connections.")
515 BluetoothConnection> entry : connections.entrySet()) {
519 connections.clear();
/external/autotest/frontend/afe/
H A Dmodel_logic.py7 from django.db import connections namespace
306 cursor = connections[query_set.db].cursor()
418 cursor = connections[related_model.objects.db].cursor()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowSQLiteConnection.java459 private static void shutdownDbExecutor(ExecutorService executorService, Collection<SQLiteConnection> connections) { argument
460 for (final SQLiteConnection connection : connections) {
/external/mesa3d/src/vulkan/wsi/
H A Dwsi_common_x11.c60 struct hash_table *connections; member in struct:wsi_x11
149 struct hash_entry *entry = _mesa_hash_table_search(wsi->connections, conn);
163 entry = _mesa_hash_table_search(wsi->connections, conn);
168 entry = _mesa_hash_table_insert(wsi->connections, conn, wsi_conn);
1117 wsi->connections = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
1119 if (!wsi->connections) {
1155 hash_table_foreach(wsi->connections, entry)
1158 _mesa_hash_table_destroy(wsi->connections, NULL);
/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;
1075 tncs->next = tncs_global_data->connections;
1076 tncs_global_data->connections = tncs;
1094 conn = tncs_global_data->connections;
1100 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;
1075 tncs->next = tncs_global_data->connections;
1076 tncs_global_data->connections = tncs;
1094 conn = tncs_global_data->connections;
1100 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;
1075 tncs->next = tncs_global_data->connections;
1076 tncs_global_data->connections = tncs;
1094 conn = tncs_global_data->connections;
1100 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/tensorflow/tensorflow/core/grappler/optimizers/
H A Dlayout_optimizer.cc641 int connections = 0; local
649 connections++;
679 if (connections == connections_removed) {
/external/guice/extensions/persist/lib/
H A Dhibernate3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/hibernate/AssertionFailure.class AssertionFailure. ...

Completed in 2245 milliseconds

12