HomeSort by relevance Sort by last modified time
    Searched full:connections (Results 1 - 25 of 610) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dbus/bus/
connection.c 2 /* connection.c Client connections
51 DBusList *completed; /**< List of all completed connections */
53 DBusList *incomplete; /**< List of all not-yet-active connections */
56 DBusHashTable *completed_by_user; /**< Number of completed connections for each UID */
57 DBusTimeout *expire_timeout; /**< Timeout for expiring incomplete connections. */
66 BusConnections *connections; member in struct:__anon3156
83 int stamp; /**< connections->stamp last time we were traversed */
90 static void bus_connection_drop_pending_replies (BusConnections *connections,
104 return bus_context_get_loop (d->connections->context);
109 get_connections_for_uid (BusConnections *connections,
423 BusConnections *connections; local
763 BusConnections *connections = data; local
1439 BusConnections *connections = data; local
1536 BusConnections *connections; member in struct:__anon3157
1687 BusConnections *connections; member in struct:__anon3158
1820 DBusList *connections; member in struct:BusTransaction
    [all...]
connection.h 2 /* connection.h Client connections
36 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);
54 dbus_bool_t bus_connections_check_limits (BusConnections *connections,
57 void bus_connections_expire_incomplete (BusConnections *connections);
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
HttpConnectionPool.java 26 * A pool of HTTP connections. This class exposes its tuning parameters as
29 * <li>{@code http.keepAlive} true if HTTP connections should be pooled at
31 * <li>{@code http.maxConnections} maximum number of connections to each URI.
37 * so before making HTTP connections, and that this class is initialized lazily.
73 List<HttpConnection> connections = connectionPool.get(address); local
74 if (connections != null) {
75 while (!connections.isEmpty()) {
76 HttpConnection connection = connections.remove(connections.size() - 1);
96 List<HttpConnection> connections = connectionPool.get(address) local
    [all...]
  /external/bluetooth/bluez/src/
hcid.conf 12 # auto - Use local PIN for incoming connections
23 # Default PIN code for incoming connections
45 # accept - always accept incoming connections
46 # master - become master on incoming connections,
47 # deny role switch on outgoing connections
  /external/iptables/extensions/
libip6t_CONNSECMARK.man 1 This module copies security markings from packets to connections
2 (if unlabeled), and from connections back to packets (also only
libipt_CONNSECMARK.man 1 This module copies security markings from packets to connections
2 (if unlabeled), and from connections back to packets (also only
libipt_connmark.man 7 Matches packets in connections with the given mark value (if a mask is
libipt_MASQUERADE.man 6 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). It takes one option:
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaCall.java 35 /*package*/ ArrayList<Connection> connections = new ArrayList<Connection>(); field in class:CdmaCall
68 return connections;
82 return connections.size() > 1;
103 connections.add(conn);
110 connections.add(conn);
121 /* If only disconnected connections remain, we are disconnected*/
125 for (int i = 0, s = connections.size() ; i < s; i ++) {
126 if (connections.get(i).getState()
143 connections.remove(conn);
145 if (connections.size() == 0)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmCall.java 34 /*package*/ ArrayList<Connection> connections = new ArrayList<Connection>(); field in class:GsmCall
68 return connections;
78 return connections.size() > 1;
99 connections.add(conn);
106 connections.add(conn);
117 /* If only disconnected connections remain, we are disconnected*/
121 for (int i = 0, s = connections.size() ; i < s; i ++) {
122 if (connections.get(i).getState()
139 connections.remove(conn);
141 if (connections.size() == 0)
    [all...]
  /external/bluetooth/bluez/compat/
dund.1 12 Show active DUN connections
15 Listen for DUN connections
18 Listen for dialup/telephone connections
33 Kill all DUN connections
hidd.1 38 Terminate all connections
41 List current HID connections
pand.1 13 Show active PAN connections
16 Listen for PAN connections
28 Kill all PAN connections
  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipCallBase.java 30 protected List<Connection> connections = new ArrayList<Connection>(); field in class:SipCallBase
36 return connections;
40 return connections.size() > 1;
48 for (Iterator<Connection> it = connections.iterator(); it.hasNext(); ) {
53 if (connections.isEmpty()) setState(State.IDLE);
  /libcore/luni/src/main/java/javax/net/ssl/
SSLServerSocket.java 47 * connections.
66 * the number of pending connections to queue.
84 * the number of pending connections to queue.
86 * the address of the interface to accept connections on.
96 * connections.
99 * connections.
104 * Sets the names of the cipher suites to be enabled for new connections.
131 * connections.
134 * connections.
139 * Sets the names of the protocols to be enabled for new connections. Onl
    [all...]
  /frameworks/base/services/java/com/android/server/am/
AppBindRecord.java 31 final HashSet<ConnectionRecord> connections = new HashSet<ConnectionRecord>(); field in class:AppBindRecord
41 if (connections.size() > 0) {
42 pw.println(prefix + "Per-process Connections:");
43 Iterator<ConnectionRecord> it = connections.iterator();
  /external/apache-http/src/org/apache/http/conn/
ClientConnectionManager.java 41 * Management interface for {@link ManagedClientConnection client connections}.
95 * Closes idle connections in the pool.
96 * Open connections in the pool that have not been used for the
98 * Currently allocated connections are not subject to this method.
101 * All expired connections will also be closed.
103 * @param idletime the idle time of connections to be closed
112 * Closes all expired connections in the pool.
113 * Open connections in the pool that have not been used for
115 * Currently allocated connections are not subject to this method.
122 * This includes closing all connections, whether they are currentl
    [all...]
  /external/apache-http/src/org/apache/http/conn/params/
ConnManagerParams.java 52 /** The default maximum number of connections allowed overall */
83 /** The default maximum number of connections allowed per host */
93 * Sets lookup interface for maximum number of connections allowed per route.
96 * @param connPerRoute lookup interface for maximum number of connections allowed
111 * Returns lookup interface for maximum number of connections allowed per route.
115 * @return lookup interface for maximum number of connections allowed per route.
133 * Sets the maximum number of connections allowed.
136 * @param maxTotalConnections The maximum number of connections allowed.
151 * Gets the maximum number of connections allowed.
155 * @return The maximum number of connections allowed
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
package.html 17 tcp connections.
22 <li> Connection caching and reuse for TCP connections -- reduce latency by re-using
23 TCP connections on client and server transactions.
  /external/apache-http/src/org/apache/http/impl/conn/
IdleConnectionHandler.java 44 * A helper class for connection managers to track idle connections.
56 /** Holds connections and the time they were added. */
85 * Removes the given connection from the list of connections to be closed when idle.
103 * Removes all connections referenced by this handler.
110 * Closes connections that have been idle for at least the given amount of time.
112 * @param idleTime the minimum idle time, in milliseconds, for connections to be closed
117 // the latest time for which connections will be closed
121 log.debug("Checking for connections, idleTimeout: " + idleTimeout);
149 log.debug("Checking for expired connections, now: " + now);
  /frameworks/base/wifi/java/android/net/wifi/
package.html 9 scan, add, save, terminate and initiate Wi-Fi connections.</p>
  /external/bluetooth/bluez/audio/
audio.conf 9 # Switch to master role for incoming connections (defaults to true)
21 # connections. Some headsets that support both profiles will only connect the
  /system/bluetooth/data/
audio.conf 11 # Do not require master role for incoming connections
19 # connections. Some headsets that support both profiles will only connect the
  /libcore/luni/src/main/java/javax/net/
ServerSocketFactory.java 68 * maximum backlog of 50 unaccepted connections.
79 * configures its maximum of queued connections.
82 * @param backlog the maximum number of unaccepted connections. Passing 0 or
91 * specified port and configures its maximum of queued connections.
94 * @param backlog the maximum number of unaccepted connections. Passing 0 or
  /frameworks/base/telephony/java/com/android/internal/telephony/
Call.java 85 * @return true if the call contains one or more connections
88 List connections = getConnections(); local
90 if (connections == null) {
94 return connections.size() > 0;
109 * @return true if the call contains only disconnected connections (if any)
117 * first, or null if there are no Connections in this Call
204 * last, or null if there are no Connections in this Call

Completed in 441 milliseconds

1 2 3 4 5 6 7 8 91011>>