HomeSort by relevance Sort by last modified time
    Searched refs:getForegroundCall (Results 1 - 12 of 12) sorted by null

  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 144 assertEquals(0, mGSMPhone.getForegroundCall().getConnections().size());
148 assertEquals(Call.State.IDLE, mGSMPhone.getForegroundCall().getState());
151 assertEquals(0, mGSMPhone.getForegroundCall().getEarliestCreateTime());
152 assertEquals(0, mGSMPhone.getForegroundCall().getEarliestConnectTime());
167 assertEquals(Call.State.DIALING, mGSMPhone.getForegroundCall().getState());
168 assertTrue(mGSMPhone.getForegroundCall().isDialingOrAlerting());
172 } while (mGSMPhone.getForegroundCall().getConnections().size() == 0);*/
175 assertEquals(1, mGSMPhone.getForegroundCall().getConnections().size());
180 mGSMPhone.getForegroundCall().getState());
183 assertTrue(mGSMPhone.getForegroundCall().getEarliestCreateTime() > 0)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhoneBase.java 64 public abstract Call getForegroundCall();
223 Log.v(LOG_TAG, "canDial(): foregndCall: " + getForegroundCall().getState());
226 && (!getForegroundCall().getState().isAlive()
236 Call.State foregroundCallState = getForegroundCall().getState();
462 } else if (getForegroundCall().isIdle()
SipPhone.java 319 public Call getForegroundCall() {
839 : (SipCall) SipPhone.this.getForegroundCall();
860 call = (SipCall) SipPhone.this.getForegroundCall();
    [all...]
  /packages/apps/Phone/src/com/android/phone/
PhoneUtils.java 450 Call fgCall = phone.getForegroundCall();
    [all...]
CallNotifier.java     [all...]
PhoneInterfaceManager.java 367 final boolean hasActiveCall = !mPhone.getForegroundCall().isIdle();
PhoneGlobals.java     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CallManager.java 193 return phone.getForegroundCall().getPhone();
211 * phone.getForegroundCall().getPhone() != phone
213 * isSamePhone(phone, phone.getForegroundCall().getPhone()) == true
306 mForegroundCalls.add(basePhone.getForegroundCall());
330 mForegroundCalls.remove(basePhone.getForegroundCall());
    [all...]
Phone.java 703 Call getForegroundCall();
    [all...]
PhoneProxy.java 526 public Call getForegroundCall() {
527 return mActivePhone.getForegroundCall();
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GSMPhone.java 463 getForegroundCall() {
509 GsmCall call = (GsmCall) getForegroundCall();
551 GsmCall call = (GsmCall) getForegroundCall();
685 GsmCall.State foregroundCallState = getForegroundCall().getState();
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CDMAPhone.java 395 CdmaCall.State foregroundCallState = getForegroundCall().getState();
493 public CdmaCall getForegroundCall() {
    [all...]

Completed in 304 milliseconds