HomeSort by relevance Sort by last modified time
    Searched defs:foregroundCall (Results 1 - 6 of 6) sorted by null

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 58 private SipCall foregroundCall = new SipCall();
69 foregroundCall = new SipCall();
102 if (foregroundCall.getState().isAlive()
113 boolean makeCallWait = foregroundCall.getState().isAlive();
171 if (foregroundCall.getState() == SipCall.State.ACTIVE) {
174 if (foregroundCall.getState() != SipCall.State.IDLE) {
179 foregroundCall.setMute(false);
181 Connection c = foregroundCall.dial(dialString);
192 foregroundCall.switchWith(backgroundCall);
194 if (foregroundCall.getState().isAlive()) foregroundCall.unhold()
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCallTracker.java 78 GsmCall foregroundCall = new GsmCall(this);
161 connCopy = (List<Connection>) foregroundCall.connections.clone();
185 if (foregroundCall.getState() == GsmCall.State.ACTIVE) {
193 // a) foregroundCall is empty for the newly dialed connection
199 if (foregroundCall.getState() != GsmCall.State.IDLE) {
205 this, foregroundCall);
306 return foregroundCall.getState() == GsmCall.State.ACTIVE
309 && !foregroundCall.isFull();
323 && (!foregroundCall.getState().isAlive()
331 return foregroundCall.getState() == GsmCall.State.ACTIV
    [all...]
GsmServiceStateTracker.java 483 phone.mCT.foregroundCall.hangupIfAlive();
    [all...]
  /packages/apps/Phone/src/com/android/phone/
BluetoothPhoneService.java 244 Call foregroundCall = mCM.getActiveFgCall();
247 Log.d(TAG, " handlePreciseCallStateChange: foreground: " + foregroundCall +
251 mForegroundCallState = foregroundCall.getState();
473 Call foregroundCall = mCM.getActiveFgCall();
480 if (foregroundCall.getState().isAlive()) {
481 connections.addAll(foregroundCall.getConnections());
566 Call foregroundCall = mCM.getActiveFgCall();
575 } else if (foregroundCall.getState().isAlive()) {
579 clccConnections[0] = foregroundCall.getEarliestConnection();
582 if (foregroundCall.getConnections().size() <= 1)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java 73 CdmaCall foregroundCall = new CdmaCall(this);
103 foregroundCall.setGeneric(false);
173 connCopy = (List<Connection>) foregroundCall.connections.clone();
207 foregroundCall.setGeneric(false);
212 if (foregroundCall.getState() == CdmaCall.State.ACTIVE) {
217 this, foregroundCall);
260 if (!foregroundCall.isIdle()) {
264 // Attach the new connection to foregroundCall
266 checkForTestEmergencyNumber(dialString), this, foregroundCall);
288 cwConn.updateParent(ringingCall, foregroundCall);
    [all...]
CdmaServiceStateTracker.java     [all...]

Completed in 157 milliseconds