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

1 2

  /external/chromium_org/webkit/common/database/
database_connections_unittest.cc 43 DatabaseConnections connections; local
45 EXPECT_TRUE(connections.IsEmpty());
46 EXPECT_FALSE(connections.IsDatabaseOpened(kOriginId, kName));
47 EXPECT_FALSE(connections.IsOriginUsed(kOriginId));
49 connections.AddConnection(kOriginId, kName);
50 EXPECT_FALSE(connections.IsEmpty());
51 EXPECT_TRUE(connections.IsDatabaseOpened(kOriginId, kName));
52 EXPECT_TRUE(connections.IsOriginUsed(kOriginId));
53 EXPECT_EQ(0, connections.GetOpenDatabaseSize(kOriginId, kName));
54 connections.SetOpenDatabaseSize(kOriginId, kName, kSize)
    [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();
ContentProviderRecord.java 46 final ArrayList<ContentProviderConnection> connections field in class:ContentProviderRecord
174 if (connections.size() > 0 || externalProcessNoHandleCount > 0) {
175 pw.print(prefix); pw.print(connections.size());
176 pw.print(" connections, "); pw.print(externalProcessNoHandleCount);
180 if (connections.size() > 0) {
182 pw.print(prefix); pw.println("Connections:");
184 for (int i=0; i<connections.size(); i++) {
185 ContentProviderConnection conn = connections.get(i);
ProcessRecord.java 137 final ArraySet<ConnectionRecord> connections field in class:ProcessRecord
332 if (connections.size() > 0) {
333 pw.print(prefix); pw.println("Connections:");
334 for (int i=0; i<connections.size(); i++) {
335 pw.print(prefix); pw.print(" - "); pw.println(connections.valueAt(i));
463 for (int i=connections.size()-1; i>=0; i--) {
464 ConnectionRecord cr = connections.valueAt(i);
ActiveServices.java 113 * All currently bound service connections. Keys are the IBinder of
619 for (int conni=sr.connections.size()-1; conni>=0 && !anyClientActivities; conni--) {
620 ArrayList<ConnectionRecord> clist = sr.connections.valueAt(conni);
726 ArrayList<ConnectionRecord> clist = s.connections.get(binder);
729 s.connections.put(binder, clist);
732 b.connections.add(c);
734 if (activity.connections == null) {
735 activity.connections = new HashSet<ConnectionRecord>();
737 activity.connections.add(c);
739 b.client.connections.add(c)
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/
ConnectionPool.java 33 * Manages reuse of HTTP and SPDY connections for reduced network latency. HTTP
36 * which connections to keep open for future use.
41 * <li>{@code http.keepAlive} true if HTTP and SPDY connections should be
43 * <li>{@code http.maxConnections} maximum number of idle connections to
52 * parameters do so before making HTTP connections, and that this class is
76 /** The maximum number of idle connections for each address. */
80 private final LinkedList<Connection> connections = new LinkedList<Connection>(); field in class:ConnectionPool
82 /** We use a single background thread to cleanup expired connections. */
91 for (ListIterator<Connection> i = connections.listIterator(connections.size())
264 List<Connection> connections; local
    [all...]
  /external/chromium/third_party/libevent/
evrpc-internal.h 79 struct evconq connections; member in struct:evrpc_pool
http-internal.h 80 /* 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/
socketmonitor.cc 120 const std::vector<Connection *> &connections = p2p_channel->connections(); local
122 for (it = connections.begin(); it != connections.end(); it++) {
basicportallocator.cc 502 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_org/third_party/libevent/
evrpc-internal.h 79 struct evconq connections; member in struct:evrpc_pool
http-internal.h 80 /* 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/base/
p2ptransportchannel.h 30 // 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
port.h 74 // 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/chromium_org/chrome_frame/
buggy_bho_handling.cc 139 base::win::ScopedComPtr<IEnumConnections> connections; local
140 cp->EnumConnections(connections.Receive());
141 if (connections) {
144 while (connections->Next(1, &cd, &fetched) == S_OK && fetched) {
  /external/chromium_org/third_party/libjingle/source/talk/base/
httpserver.cc 97 std::list<Connection*> connections; local
100 connections.push_back(it->second);
102 for (std::list<Connection*>::const_iterator it = connections.begin();
103 it != connections.end(); ++it) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Call.java 87 * @return true if the call contains one or more connections
90 List<Connection> connections = getConnections(); local
92 if (connections == null) {
96 return connections.size() > 0;
111 * @return true if the call contains only disconnected connections (if any)
119 * first, or null if there are no Connections in this Call
206 * last, or null if there are no Connections in this Call
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ContextMap.java 33 * This class manages application callbacks and keeps track of GATT connections.
287 List<Connection> connections = getConnectionByApp(entry.id); local
291 b.append("\nConnections: " + connections.size());
293 Iterator<Connection> ii = connections.iterator();
  /packages/services/Telephony/src/com/android/phone/
CallTime.java 132 List connections = call.getConnections(); local
133 int count = connections.size();
137 c = (Connection) connections.get(0);
143 c = (Connection) connections.get(i);
  /external/chromium_org/chrome_frame/test/
test_server.h 278 // typedef for a list of connections. Used by SimpleWebServer.
318 const ConnectionList& connections() const { function in class:test_server::SimpleWebServer
test_with_web_server.h 284 const test_server::ConnectionList& connections = server_.connections(); local
285 DCHECK(connections.size());
286 const test_server::Connection* c = connections.back();
293 for (index = server_.connections().begin();
294 index != server_.connections().end(); index++) {
312 const test_server::ConnectionList& connections = server_.connections(); local
313 for (it = connections.begin(); it != connections.end(); ++it)
    [all...]
test_with_web_server.cc 947 const test_server::ConnectionList& connections = ws->connections(); local
948 test_server::ConnectionList::const_iterator it = connections.begin();
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_context_impl.cc 293 ConnectionSet& connections = connections_[origin_url]; local
294 ConnectionSet::iterator it = connections.begin();
295 while (it != connections.end()) {
298 connections.erase(it++);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
LaunchConfigDelegate.java 171 int connections = -1; local
174 connections = bridge.getConnectionAttemptCount();
181 if (connections == -1 || restarts == -1) {
194 String.format("%1$s attempts have been made to reconnect.", connections),
  /external/chromium_org/third_party/libjingle/source/talk/p2p/client/
basicportallocator.cc 550 // to listners, to allow connections from this port.
662 std::vector<Connection*> connections; local
671 for (iter = ports[i]->connections().begin();
672 iter != ports[i]->connections().end();
674 connections.push_back(iter->second);
679 << connections.size() << " connections";
681 for (size_t i = 0; i < connections.size(); ++i)
682 connections[i]->Destroy();
684 if (running_ || (ports.size() > 0) || (connections.size() > 0)
    [all...]

Completed in 3201 milliseconds

1 2