HomeSort by relevance Sort by last modified time
    Searched defs:connections (Results 26 - 39 of 39) sorted by null

12

  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
tncs.c 171 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/src/eap_server/
tncs.c 165 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;
  /frameworks/base/services/java/com/android/server/am/
ProcessRecord.java 125 final HashSet<ConnectionRecord> connections field in class:ProcessRecord
294 if (connections.size() > 0) {
295 pw.print(prefix); pw.println("Connections:");
296 for (ConnectionRecord cr : connections) {
380 if (connections.size() > 0) {
381 for (ConnectionRecord cr : connections) {
ActivityRecord.java 101 HashSet<ConnectionRecord> connections; // All ConnectionRecord we hold field in class:ActivityRecord
251 if (connections != null) {
252 pw.print(prefix); pw.print("connections="); pw.println(connections);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCallTracker.java 63 static final int MAX_CONNECTIONS = 7; // only 7 connections allowed in GSM
64 static final int MAX_CONNECTIONS_PER_CALL = 5; // only 5 connections allowed per call
67 GsmConnection connections[] = new GsmConnection[MAX_CONNECTIONS]; field in class:GsmCallTracker
72 // connections dropped during last poll
113 for(GsmConnection c : connections) {
161 connCopy = (List<Connection>) foregroundCall.connections.clone();
436 ; i < connections.length; i++) {
437 GsmConnection conn = connections[i];
461 connections[i] = pendingMO;
472 hangup(connections[i])
    [all...]
  /packages/apps/Phone/src/com/android/phone/
BluetoothPhoneService.java 97 private static final int GSM_MAX_CONNECTIONS = 6; // Max connections allowed by GSM
98 private static final int CDMA_MAX_CONNECTIONS = 2; // Max connections allowed by CDMA
467 // Collect all known connections
471 LinkedList<Connection> connections = new LinkedList<Connection>(); local
478 connections.addAll(ringingCall.getConnections());
481 connections.addAll(foregroundCall.getConnections());
484 connections.addAll(backgroundCall.getConnections());
487 // Mark connections that we already known about
493 for (Connection c : connections) {
509 // Find a CLCC index for new connections
    [all...]
CallCard.java 1012 List<Connection> connections = call.getConnections(); local
    [all...]
PhoneUtils.java 128 * Handler that tracks the connections and updates the value of the
141 // update the foreground connections, if there are new connections.
160 // the background connections, if there are new connections.
173 // Check to see if there are any lingering connections here
174 // (disconnected connections), use old-school iterators to avoid
188 // as long as there is one or more connections, we should update
190 // call, and that with no connections, we should be back to a
1812 List<Connection> connections = call.getConnections(); local
    [all...]
InCallScreen.java 646 // connections in the DISCONNECTED state.
1770 List<Connection> connections = call.getConnections(); local
3693 List<Connection> connections = mCM.getFgCallConnections(); local
3810 List<Connection> connections = mCM.getFgCallConnections(); local
    [all...]
  /system/core/libcutils/
mq.c 196 * keep track of which connections we've sent to whom.
198 Hashmap* connections; member in struct:PeerProxy
368 hashmapRemove(otherPeer->connections, &(deadPeer->credentials.pid));
419 if (peerProxy->connections != NULL) {
421 hashmapForEach(peerProxy->connections, &peerProxyRemoveConnection,
423 hashmapFree(peerProxy->connections);
874 if (!hashmapContainsKey(peerProxy->connections, &targetPid)) {
1086 peerProxy->connections = hashmapCreate(10, &pidHash, &pidEquals);
    [all...]
  /external/webkit/Source/WebCore/bridge/qt/
qt_runtime.cpp 1536 QMultiMap<QObject*, QtConnectionObject*> QtRuntimeConnectionMethod::connections; member in class:JSC::Bindings::QtRuntimeConnectionMethod
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java 61 CdmaConnection connections[] = new CdmaConnection[MAX_CONNECTIONS]; field in class:CdmaCallTracker
67 // connections dropped during last poll
111 for(CdmaConnection c : connections) {
173 connCopy = (List<Connection>) foregroundCall.connections.clone();
500 ; i < connections.length; i++) {
501 CdmaConnection conn = connections[i];
525 connections[i] = pendingMO;
541 hangup(connections[i]);
565 // Loop through foreground call connections as
566 // it contains the known logical connections
    [all...]
  /tools/motodev/src/plugins/logger/lib/
log4j-1.2.14.jar 
  /tools/motodev/src/plugins/preflighting.core/lib/
log4j-1.2.14.jar 

Completed in 752 milliseconds

12