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

/external/chromium/third_party/libevent/
H A Devrpc-internal.h79 struct evconq connections; member in struct:evrpc_pool
H A Dhttp-internal.h80 /* for server connections, the http server they are connected with */
103 /* both the http server as well as the rpc system need to queue connections */
117 struct evconq connections; member in struct:evhttp
/external/chromium/third_party/libjingle/source/talk/p2p/client/
H A Dsocketmonitor.cc120 const std::vector<Connection *> &connections = p2p_channel->connections(); local
122 for (it = connections.begin(); it != connections.end(); it++) {
H A Dbasicportallocator.cc502 std::vector<Connection*> connections; local
511 for (iter = ports[i]->connections().begin();
512 iter != ports[i]->connections().end();
514 connections.push_back(iter->second);
519 << connections.size() << " connections";
521 for (size_t i = 0; i < connections.size(); ++i)
522 connections[i]->Destroy();
524 if (running_ || (ports.size() > 0) || (connections.size() > 0))
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dp2ptransportchannel.h30 // connections which are combinations of candidates from each end (Alice and
32 // Bob are used to make a connection, repeat to make many connections).
34 // When all of the available connections become invalid (non-writable), we
35 // kick off a process of determining more candidates and more connections.
93 const std::vector<Connection *>& connections() const { return connections_; } function in class:cricket::P2PTransportChannel
H A Dport.h74 // connections to similar mechanisms of the other client. Subclasses of this
138 // Returns a map containing all of the connections of this port, keyed by the
141 const AddressMap& connections() { return connections_; } function in class:cricket::Port
203 // Called if the port has no connections and is no longer useful.
258 // Called when one of our connections deletes itself.
304 // be false for TCP connections.
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_runtime.h208 static QMultiMap<QObject *, QtConnectionObject *> connections; member in class:JSC::Bindings::QtRuntimeConnectionMethod
H A Dqt_runtime.cpp1536 QMultiMap<QObject*, QtConnectionObject*> QtRuntimeConnectionMethod::connections; member in class:JSC::Bindings::QtRuntimeConnectionMethod
1639 connections.insert(sender, conn);
1643 QList<QtConnectionObject*> conns = connections.values(sender);
1735 // Remove us from the map of active connections
1736 QtRuntimeConnectionMethod::connections.remove(m_originalObject, this);
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
H A DDefaultServer.java77 private Map<Integer,HostedConnection> connections = new ConcurrentHashMap<Integer,HostedConnection>(); field in class:DefaultServer
125 // now, we hard-code the standard connections and treat the +2 extras
198 if( connections.isEmpty() )
216 if( connections.isEmpty() )
230 return connections.get(id);
235 return !connections.isEmpty();
240 return Collections.unmodifiableCollection((Collection<HostedConnection>)connections.values());
358 if( connections.put( c.getId(), c ) == null ) {
421 connections.remove( removed.getId() );
424 log.log( Level.FINE, "Connections size:{0}", connections
[all...]
/external/dbus/bus/
H A Ddriver.c253 BusConnections *connections; local
268 * incomplete connections. It's even OK if the connection wants to
271 connections = bus_connection_get_connections (connection);
272 if (!bus_connections_check_limits (connections, connection,
H A Dbus.c58 BusConnections *connections; member in struct:BusContext
185 if (!bus_connections_setup_connection (context->connections, new_connection))
802 context->connections = bus_connections_new (context);
803 if (context->connections == NULL)
1044 if (context->connections)
1046 bus_connections_unref (context->connections);
1047 context->connections = NULL;
1151 return context->connections;
1448 /* Policy for inactive connections is that they can only send
H A Dsignals.c1790 BusConnections *connections,
1804 * all connections resetting the bool each time.
1806 bus_connections_increment_stamp (connections);
1789 bus_matchmaker_get_recipients(BusMatchmaker *matchmaker, BusConnections *connections, DBusConnection *sender, DBusConnection *addressed_recipient, DBusMessage *message, DBusList **recipients_p) argument
H A Dconnection.c2 /* connection.c Client connections
56 DBusList *completed; /**< List of all completed connections */
58 DBusList *incomplete; /**< List of all not-yet-active connections */
61 DBusHashTable *completed_by_user; /**< Number of completed connections for each UID */
62 DBusTimeout *expire_timeout; /**< Timeout for expiring incomplete connections. */
71 BusConnections *connections; member in struct:__anon4954
89 int stamp; /**< connections->stamp last time we were traversed */
96 static void bus_connection_drop_pending_replies (BusConnections *connections,
110 return bus_context_get_loop (d->connections->context);
115 get_connections_for_uid (BusConnections *connections, argument
132 adjust_connections_for_uid(BusConnections *connections, dbus_uid_t uid, int adjustment) argument
433 BusConnections *connections; local
487 bus_connections_ref(BusConnections *connections) argument
496 bus_connections_unref(BusConnections *connections) argument
606 bus_connections_setup_connection(BusConnections *connections, DBusConnection *connection) argument
781 bus_connections_expire_incomplete(BusConnections *connections) argument
840 BusConnections *connections = data; local
938 foreach_active(BusConnections *connections, BusConnectionForeachFunction function, void *data) argument
960 foreach_inactive(BusConnections *connections, BusConnectionForeachFunction function, void *data) argument
991 bus_connections_foreach_active(BusConnections *connections, BusConnectionForeachFunction function, void *data) argument
1007 bus_connections_foreach(BusConnections *connections, BusConnectionForeachFunction function, void *data) argument
1018 bus_connections_get_context(BusConnections *connections) argument
1031 bus_connections_increment_stamp(BusConnections *connections) argument
1436 bus_connections_check_limits(BusConnections *connections, DBusConnection *requesting_completion, DBusError *error) argument
1484 bus_pending_reply_send_no_reply(BusConnections *connections, BusTransaction *transaction, BusPendingReply *pending) argument
1531 BusConnections *connections = data; local
1566 bus_connection_drop_pending_replies(BusConnections *connections, DBusConnection *connection) argument
1627 BusConnections *connections; member in struct:__anon4955
1663 bus_connections_expect_reply(BusConnections *connections, BusTransaction *transaction, DBusConnection *will_get_reply, DBusConnection *will_send_reply, DBusMessage *reply_to_this, DBusError *error) argument
1778 BusConnections *connections; member in struct:__anon4956
1819 bus_connections_check_reply(BusConnections *connections, BusTransaction *transaction, DBusConnection *sending_reply, DBusConnection *receiving_reply, DBusMessage *reply, DBusError *error) argument
1910 DBusList *connections; member in struct:BusTransaction
[all...]
H A Ddispatch.c96 BusConnections *connections; local
142 connections = bus_transaction_get_connections (transaction);
147 if (!bus_matchmaker_get_recipients (matchmaker, connections,
228 * connections with a match rule. If it's not a signal, there
347 * addressed_recipient == NULL), and match it against other connections'
4568 _dbus_warn ("Messages were left over after setting up initial connections\n");
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
H A Dtncs.c171 struct tncs_data *connections; member in struct:tncs_global
200 tncs = tncs_global_data->connections;
1151 tncs->next = tncs_global_data->connections;
1152 tncs_global_data->connections = tncs;
1170 conn = tncs_global_data->connections;
1176 tncs_global_data->connections = tncs->next;
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Dtncs.c165 struct tncs_data *connections; member in struct:tncs_global
194 tncs = tncs_global_data->connections;
1145 tncs->next = tncs_global_data->connections;
1146 tncs_global_data->connections = tncs;
1164 conn = tncs_global_data->connections;
1170 tncs_global_data->connections = tncs->next;
/external/wpa_supplicant_8/src/eap_server/
H A Dtncs.c165 struct tncs_data *connections; member in struct:tncs_global
194 tncs = tncs_global_data->connections;
1145 tncs->next = tncs_global_data->connections;
1146 tncs_global_data->connections = tncs;
1164 conn = tncs_global_data->connections;
1170 tncs_global_data->connections = tncs->next;
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Dtncs.c165 struct tncs_data *connections; member in struct:tncs_global
194 tncs = tncs_global_data->connections;
1145 tncs->next = tncs_global_data->connections;
1146 tncs_global_data->connections = tncs;
1164 conn = tncs_global_data->connections;
1170 tncs_global_data->connections = tncs->next;

Completed in 1098 milliseconds