/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
D | GsmCall.java | 34 /*package*/ ArrayList<Connection> connections = new ArrayList<Connection>(); field in GsmCall 68 return connections; in getConnections() 78 return connections.size() > 1; in isMultiparty() 99 connections.add(conn); in attach() 106 connections.add(conn); in attachFake() 121 for (int i = 0, s = connections.size() ; i < s; i ++) { in connectionDisconnected() 122 if (connections.get(i).getState() in connectionDisconnected() 139 connections.remove(conn); in detach() 141 if (connections.size() == 0) { in detach() 167 return connections.size() == GsmCallTracker.MAX_CONNECTIONS_PER_CALL; in isFull() [all …]
|
D | GsmCallTracker.java | 64 GsmConnection connections[] = new GsmConnection[MAX_CONNECTIONS]; field in GsmCallTracker 110 for(GsmConnection c : connections) { in dispose() 158 connCopy = (List<Connection>) foregroundCall.connections.clone(); in fakeHoldForegroundBeforeDial() 432 ; i < connections.length; i++) { in handlePollCalls() 433 GsmConnection conn = connections[i]; in handlePollCalls() 457 connections[i] = pendingMO; in handlePollCalls() 468 hangup(connections[i]); in handlePollCalls() 478 connections[i] = new GsmConnection(phone.getContext(), dc, this, i); in handlePollCalls() 481 if (connections[i].getCall() == ringingCall) { in handlePollCalls() 482 newRinging = connections[i]; in handlePollCalls() [all …]
|
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/ |
D | CdmaCall.java | 35 /*package*/ ArrayList<Connection> connections = new ArrayList<Connection>(); field in CdmaCall 68 return connections; in getConnections() 82 return connections.size() > 1; in isMultiparty() 103 connections.add(conn); in attach() 110 connections.add(conn); in attachFake() 125 for (int i = 0, s = connections.size() ; i < s; i ++) { in connectionDisconnected() 126 if (connections.get(i).getState() in connectionDisconnected() 143 connections.remove(conn); in detach() 145 if (connections.size() == 0) { in detach() 171 return connections.size() == CdmaCallTracker.MAX_CONNECTIONS_PER_CALL; in isFull() [all …]
|
D | CdmaCallTracker.java | 58 CdmaConnection connections[] = new CdmaConnection[MAX_CONNECTIONS]; field in CdmaCallTracker 108 for(CdmaConnection c : connections) { in dispose() 170 connCopy = (List<Connection>) foregroundCall.connections.clone(); in fakeHoldForegroundBeforeDial() 496 ; i < connections.length; i++) { in handlePollCalls() 497 CdmaConnection conn = connections[i]; in handlePollCalls() 521 connections[i] = pendingMO; in handlePollCalls() 537 hangup(connections[i]); in handlePollCalls() 563 int count = foregroundCall.connections.size(); in handlePollCalls() 566 CdmaConnection cn = (CdmaConnection)foregroundCall.connections.get(n); in handlePollCalls() 569 count = ringingCall.connections.size(); in handlePollCalls() [all …]
|
/frameworks/base/telephony/java/com/android/internal/telephony/sip/ |
D | SipCallBase.java | 30 protected List<Connection> connections = new ArrayList<Connection>(); field in SipCallBase 36 return connections; in getConnections() 40 return connections.size() > 1; in isMultiparty() 48 for (Iterator<Connection> it = connections.iterator(); it.hasNext(); ) { in clearDisconnected() 53 if (connections.isEmpty()) setState(State.IDLE); in clearDisconnected()
|
D | SipPhone.java | 353 connections.clear(); in reset() 367 connections = that.connections; in takeOver() 369 for (Connection c : connections) { in takeOver() 383 return connections; in getConnections() 400 connections.add(c); in dial() 416 for (Connection c : connections) { in hangup() 434 connections.add(c); in initIncomingCall() 451 if (connections.size() != 1) { in acceptCall() 454 ((SipConnection) connections.get(0)).acceptCall(); in acceptCall() 482 for (Connection c : connections) ((SipConnection) c).hold(); in hold() [all …]
|
/frameworks/base/services/java/com/android/server/am/ |
D | AppBindRecord.java | 31 final HashSet<ConnectionRecord> connections = new HashSet<ConnectionRecord>(); field in AppBindRecord 41 if (connections.size() > 0) { in dumpInIntentBind() 43 Iterator<ConnectionRecord> it = connections.iterator(); in dumpInIntentBind()
|
D | ProcessRecord.java | 113 final HashSet<ConnectionRecord> connections field in ProcessRecord 253 if (connections.size() > 0) { in dump() 254 pw.print(prefix); pw.print("connections="); pw.println(connections); in dump() 320 if (connections.size() > 0) { in updateHasAboveClientLocked() 321 for (ConnectionRecord cr : connections) { in updateHasAboveClientLocked()
|
D | ServiceRecord.java | 75 final HashMap<IBinder, ArrayList<ConnectionRecord>> connections field in ServiceRecord 260 if (connections.size() > 0) { in dump() 262 Iterator<ArrayList<ConnectionRecord>> it = connections.values().iterator(); in dump()
|
D | ActivityRecord.java | 90 HashSet<ConnectionRecord> connections; // All ConnectionRecord we hold field in ActivityRecord 198 if (connections != null) { in dump() 199 pw.print(prefix); pw.print("connections="); pw.println(connections); in dump()
|
D | ActivityManagerService.java | 1646 if (app.connections.size() > 0) { in updateLruProcessInternalLocked() 1647 for (ConnectionRecord cr : app.connections) { in updateLruProcessInternalLocked() 8652 pw.print(" connections="); pw.println(r.connections.size()); in dumpServicesLocked() 9398 if (r.connections.size() > 0) { in killServicesLocked() 9400 = r.connections.values().iterator(); in killServicesLocked() 9423 if (app.connections.size() > 0) { in killServicesLocked() 9424 Iterator<ConnectionRecord> it = app.connections.iterator(); in killServicesLocked() 9430 app.connections.clear(); in killServicesLocked() 9754 info.clientCount = r.connections.size(); in makeRunningServiceInfoLocked() 9770 for (ArrayList<ConnectionRecord> connl : r.connections.values()) { in makeRunningServiceInfoLocked() [all …]
|
D | ActivityStack.java | 3579 if (r.connections != null) { in cleanUpActivityServicesLocked() 3580 Iterator<ConnectionRecord> it = r.connections.iterator(); in cleanUpActivityServicesLocked() 3585 r.connections = null; in cleanUpActivityServicesLocked()
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
D | Call.java | 88 List connections = getConnections(); in hasConnections() local 90 if (connections == null) { in hasConnections() 94 return connections.size() > 0; in hasConnections()
|
/frameworks/base/docs/html/guide/topics/wireless/ |
D | index.jd | 12 interactions include the ability to scan, add, dave, terminate and initiate connections.</p>
|
D | bluetooth.jd | 67 <li>Manage multiple connections</li> 80 connections:</p> 437 discoverable mode but still able to receive connections, or not in discoverable 438 mode and unable to receive connections, respectively.</p> 443 connections, because the remote devices must be able to discover the device 472 server, so that each one has a server socket open and listening for connections. 496 discarded, unless you want to accept more connections.</p> 540 <li>Unless you want to accept additional connections, call 569 connections:</p> 632 as soon as you are done listening for incoming connections. In this example, {@link
|
/frameworks/base/docs/html/guide/developing/tools/ |
D | adb.jd | 52 …connections to all running emulator/device instances. It locates emulator/device instances by scan… 63 …et up connections to all emulator instances, you can use adb commands to control and access those … 269 <td>Forwards socket connections from a specified local port to a specified remote port on the emula…
|
/frameworks/base/docs/html/guide/developing/devices/ |
D | emulator.jd | 563 <td>Make all TCP connections through a specified HTTP/HTTPS proxy</td> 1010 UDP connections/messages on behalf of the emulated device, provided your 1058 incoming TCP connections to your host (development) machine on 127.0.0.1:5000 1122 HTTP/HTTPS proxy for all outgoing TCP connections. Redirection for UDP is not 1206 <p class="note">Note: The emulator listens for connections on ports 5554-5587 and accepts connectio… 1483 …ple, you can simulate inbound phone calls and establish/terminate data connections. The Android sy… 1767 <li>No support for USB connections</li>
|
/frameworks/base/docs/html/sdk/ |
D | OLD_RELEASENOTES.jd | 499 …connections on ports 5554-5587. Future versions will only accept connections from localhost. It is…
|
D | android-2.3.3.jd | 207 connections. This lets applications communicate with simple devices that may not
|
D | android-2.3-highlights.jd | 346 set up peer-to-peer connections with other NFC devices.</p>
|
D | android-3.1-highlights.jd | 159 high-performance Wi-Fi connections even when the device screen is off. Users can
|
/frameworks/base/docs/html/guide/topics/network/ |
D | sip.jd | 90 <td>Provides APIs for SIP tasks, such as initiating SIP connections, and provides access
|
/frameworks/base/docs/html/guide/topics/appwidgets/ |
D | index.jd | 1030 connections and/or cursors to your data source. For example, the <a 1060 // In onCreate() you setup any connections / cursors to your data source. Heavy lifting, 1258 … // In onCreate() you set up any connections / cursors to your data source. Heavy lifting,
|
/frameworks/base/docs/html/guide/topics/usb/ |
D | adk.jd | 113 connections with external USB devices. Android Open Accessory support overcomes this limitation 340 reserved for serial port connections. You most likely want COM2 or COM3.</li>
|
/frameworks/base/docs/html/guide/topics/security/ |
D | security.jd | 236 Network communication: view Wi-Fi state, create Bluetooth connections, full
|