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

  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 149 assertEquals(0, mGSMPhone.getForegroundCall().getConnections().size());
153 assertEquals(Call.State.IDLE, mGSMPhone.getForegroundCall().getState());
156 assertEquals(0, mGSMPhone.getForegroundCall().getEarliestCreateTime());
157 assertEquals(0, mGSMPhone.getForegroundCall().getEarliestConnectTime());
172 assertEquals(Call.State.DIALING, mGSMPhone.getForegroundCall().getState());
173 assertTrue(mGSMPhone.getForegroundCall().isDialingOrAlerting());
177 } while (mGSMPhone.getForegroundCall().getConnections().size() == 0);*/
180 assertEquals(1, mGSMPhone.getForegroundCall().getConnections().size());
185 mGSMPhone.getForegroundCall().getState());
188 assertTrue(mGSMPhone.getForegroundCall().getEarliestCreateTime() > 0)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipPhoneBase.java 59 public abstract Call getForegroundCall();
204 Log.v(LOG_TAG, "canDial(): foregndCall: " + getForegroundCall().getState());
207 && (!getForegroundCall().getState().isAlive()
217 Call.State foregroundCallState = getForegroundCall().getState();
427 } else if (getForegroundCall().isIdle()
SipPhone.java 314 public Call getForegroundCall() {
834 : (SipCall) SipPhone.this.getForegroundCall();
855 call = (SipCall) SipPhone.this.getForegroundCall();
    [all...]
  /packages/apps/Phone/src/com/android/phone/
PhoneUtils.java 403 Call fgCall = phone.getForegroundCall();
700 Call fgCall = phone.getForegroundCall();
737 Connection c = phone.getForegroundCall().getEarliestConnection();
753 phone.getForegroundCall().getLatestConnection());
    [all...]
CallNotifier.java 699 if ((fgPhone.getForegroundCall().getState() == Call.State.ACTIVE)
709 mPreviousCdmaCallState = fgPhone.getForegroundCall().getState();
    [all...]
PhoneInterfaceManager.java 328 final boolean hasActiveCall = !mPhone.getForegroundCall().isIdle();
PhoneApp.java     [all...]
  /frameworks/base/telephony/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 744 Call getForegroundCall();
    [all...]
PhoneProxy.java 410 public Call getForegroundCall() {
411 return mActivePhone.getForegroundCall();
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GSMPhone.java 479 getForegroundCall() {
525 GsmCall call = (GsmCall) getForegroundCall();
567 GsmCall call = (GsmCall) getForegroundCall();
701 GsmCall.State foregroundCallState = getForegroundCall().getState();
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CDMAPhone.java 384 CdmaCall.State foregroundCallState = getForegroundCall().getState();
481 public CdmaCall getForegroundCall() {
    [all...]

Completed in 238 milliseconds