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

1 2 3 4 5 6 7 8 91011>>

  /development/samples/WiFiDirectDemo/assets/
sample_file.txt 3 Once the devices are connected, the server i.e. groupOwner will listen for incoming connections and write this file.
  /external/dbus/bus/
connection.c 2 /* 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:__anon5139
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,
433 BusConnections *connections; local
840 BusConnections *connections = data; local
1531 BusConnections *connections = data; local
1627 BusConnections *connections; member in struct:__anon5140
1778 BusConnections *connections; member in struct:__anon5141
1910 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);
55 dbus_bool_t bus_connections_check_limits (BusConnections *connections,
58 void bus_connections_expire_incomplete (BusConnections *connections);
    [all...]
  /external/webkit/LayoutTests/storage/indexeddb/
set_version_blocked.html 17 connections = []
38 connections.push(connection);
40 if (connections.length < 2)
43 var versionChangeRequest = evalAndLog("connections[0].setVersion('version 1')");
57 evalAndLog("connections[1].close()");
64 deleteAllObjectStores(connections[0]);
set_version_queue.html 13 description("4 open connections try to setVersion at the same time. 3 connections eventually close, allowing 1 setVersion call to proceed.");
17 connections = []
39 connections.push(connection);
40 if (connections.length < 4)
43 request = evalAndLog("connections[0].setVersion('version 0')");
47 request1 = evalAndLog("connections[1].setVersion('version 1')");
51 request2 = evalAndLog("connections[2].setVersion('version 2')");
55 request3 = evalAndLog("connections[3].setVersion('version 3')");
65 var connectionNum = connections.length
    [all...]
set_version_queue-expected.txt 1 4 open connections try to setVersion at the same time. 3 connections eventually close, allowing 1 setVersion call to proceed.
11 connections[0].setVersion('version 0')
12 connections[1].setVersion('version 1')
13 connections[2].setVersion('version 2')
14 connections[3].setVersion('version 3')
26 connections[0].close()
28 connections[3].close()
44 connections[2].close()
set_version_blocked-expected.txt 9 connections[0].setVersion('version 1')
13 connections[1].close()
  /libcore/luni/src/main/java/libcore/net/http/
HttpConnectionPool.java 29 * A pool of HTTP connections. This class exposes its tuning parameters as
32 * <li>{@code http.keepAlive} true if HTTP connections should be pooled at
34 * <li>{@code http.maxConnections} maximum number of connections to each URI.
40 * so before making HTTP connections, and that this class is initialized lazily.
67 List<HttpConnection> connections = connectionPool.get(address); local
68 if (connections != null) {
69 while (!connections.isEmpty()) {
70 HttpConnection connection = connections.remove(connections.size() - 1);
103 List<HttpConnection> connections = connectionPool.get(address) local
    [all...]
  /external/iptables/extensions/
libxt_CONNSECMARK.man 1 This module copies security markings from packets to connections
2 (if unlabeled), and from connections back to packets (also only
libxt_connmark.man 5 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).
libxt_connlimit.man 1 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.
23 # allow 2 telnet connections per client host
39 # Limit the number of connections to a particular host:
  /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 46 * connections.
65 * the number of pending connections to queue.
83 * the number of pending connections to queue.
85 * the address of the interface to accept connections on.
95 * connections.
98 * connections.
103 * Sets the names of the cipher suites to be enabled for new connections.
130 * connections.
133 * connections.
138 * 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);
  /external/webkit/Source/WebCore/webaudio/
AudioNodeInput.h 39 // In the case of multiple connections, the input will act as a unity-gain summing junction, mixing all the outputs.
40 // The number of channels of the input's bus is the maximum of the number of channels of all its connections.
54 // disable() will take the output out of the active connections list and set aside in a disabled list.
55 // enable() will put the output back into the active connections list.
61 // In the case of multiple connections it sums the result into an internal summing bus.
75 // Rendering code accesses its version of the current connections here.
87 // m_outputs contains the AudioNodeOutputs representing current connections which are not disabled.
112 // Generally, these represent disabled connections from "notes" which have finished playing but are not yet garbage collected.

Completed in 2081 milliseconds

1 2 3 4 5 6 7 8 91011>>