HomeSort by relevance Sort by last modified time
    Searched refs:connections (Results 26 - 50 of 86) sorted by null

12 3 4

  /external/chromium_org/webkit/common/database/
database_connections.cc 60 const DatabaseConnections& connections,
63 connections.connections_.begin();
64 origin_it != connections.connections_.end();
  /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();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_epoll.py 47 self.connections = [self.serverSocket]
51 for skt in self.connections:
65 self.connections.extend((client, server))
test_cpickle.py 206 n.connections = list(nodes)
207 n.connections.remove(n)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_epoll.py 47 self.connections = [self.serverSocket]
51 for skt in self.connections:
65 self.connections.extend((client, server))
test_cpickle.py 206 n.connections = list(nodes)
207 n.connections.remove(n)
  /frameworks/base/services/java/com/android/server/am/
ServiceRecord.java 81 final ArrayMap<IBinder, ArrayList<ConnectionRecord>> connections field in class:ServiceRecord
289 if (connections.size() > 0) {
290 pw.print(prefix); pw.println("All Connections:");
291 for (int conni=0; conni<connections.size(); conni++) {
292 ArrayList<ConnectionRecord> c = connections.valueAt(conni);
376 // connections directly in the service.
377 for (int conni=connections.size()-1; conni>=0; conni--) {
378 ArrayList<ConnectionRecord> cr = connections.valueAt(conni);
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...]
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);
  /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
  /external/chromium_org/tools/page_cycler/webpagereplay/
start.js 13 // Run chrome.browingData.remove and close the connections.
15 // Close the connections.
  /external/chromium_org/tools/page_cycler/webpagereplay/tests/
2012Q2.js 8 Run chrome.browingData.remove and close the connections.
10 Close the connections.
  /external/chromium/third_party/libjingle/source/talk/p2p/client/
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/content/browser/resources/media/
webrtc_internals.js 91 peerConnectionsListElem = $('peer-connections-list');
99 // Requests stats from all peer connections every second.
217 * Adds the information of all peer connections created so far.
220 * connections. Each array item contains pid, lid, url, servers,
  /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...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/irc/
irclib.py 35 * Handles multiple simultaneous IRC server connections.
82 # send data asynchronously to the server (and DCC connections)
83 # (maybe) automatically close unused, passive DCC connections after a while
97 """Class that handles one or several IRC server connections.
100 Connection objects that represent the IRC connections. The
102 framework for the connections and to keep the connections alive.
158 self.connections = []
168 self.connections.append(c)
181 for c in self.connections
    [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++);
  /external/chromium_org/remoting/webapp/
plugin_settings.js 46 /** @type {boolean} Whether to use TLS on connections to the XMPP server. */
client_plugin.js 107 * @param {string} clientPairingId For paired Me2Me connections, the
109 * @param {string} clientPairedSecret For paired Me2Me connections, the
  /external/chromium_org/third_party/sqlite/src/
configure.ac 259 AC_ARG_ENABLE(cross-thread-connections,
260 AC_HELP_STRING([--enable-cross-thread-connections],[Allow connection sharing across threads]),,enable_xthreadconnect=no)
261 AC_MSG_CHECKING([whether to allow connections to be shared across threads])
  /external/chromium_org/tools/measure_page_load_time/ff_ext/content/
measure_page_load_time.js 8 * 42492 for connections, then accepts URLs and returns strings of the
24 PORT_NUMBER : 42492, // port to listen for connections on
40 * Listener to accept incoming connections
  /external/wpa_supplicant_8/src/eap_server/
tncs.c 165 struct tncs_data *connections; member in struct:tncs_global
194 tncs = tncs_global_data->connections;
1143 tncs->next = tncs_global_data->connections;
1144 tncs_global_data->connections = tncs;
1162 conn = tncs_global_data->connections;
1168 tncs_global_data->connections = tncs->next;
  /packages/services/Telephony/src/com/android/phone/
BluetoothPhoneService.java 95 private static final int GSM_MAX_CONNECTIONS = 6; // Max connections allowed by GSM
96 private static final int CDMA_MAX_CONNECTIONS = 2; // Max connections allowed by CDMA
440 // Collect all known connections
444 LinkedList<Connection> connections = new LinkedList<Connection>(); local
451 connections.addAll(ringingCall.getConnections());
454 connections.addAll(foregroundCall.getConnections());
457 connections.addAll(backgroundCall.getConnections());
460 // Mark connections that we already known about
466 for (Connection c : connections) {
482 // Find a CLCC index for new connections
    [all...]
  /external/chromium_org/chrome_frame/test/
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/webkit/browser/database/
database_tracker.cc 186 void DatabaseTracker::CloseDatabases(const DatabaseConnections& connections) {
188 DCHECK(!is_initialized_ || connections.IsEmpty());
195 // We need to examine what we have in connections for the
199 connections.ListConnections(&open_dbs);
205 database_connections_.RemoveConnections(connections, &closed_dbs);

Completed in 1662 milliseconds

12 3 4