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 143 assertEquals(0, mGSMPhone.getForegroundCall().getConnections().size());
147 assertEquals(Call.State.IDLE, mGSMPhone.getForegroundCall().getState());
150 assertEquals(0, mGSMPhone.getForegroundCall().getEarliestCreateTime());
151 assertEquals(0, mGSMPhone.getForegroundCall().getEarliestConnectTime());
166 assertEquals(Call.State.DIALING, mGSMPhone.getForegroundCall().getState());
167 assertTrue(mGSMPhone.getForegroundCall().isDialingOrAlerting());
171 } while (mGSMPhone.getForegroundCall().getConnections().size() == 0);*/
174 assertEquals(1, mGSMPhone.getForegroundCall().getConnections().size());
179 mGSMPhone.getForegroundCall().getState());
182 assertTrue(mGSMPhone.getForegroundCall().getEarliestCreateTime() > 0)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipPhoneBase.java 62 public abstract Call getForegroundCall();
213 Log.v(LOG_TAG, "canDial(): foregndCall: " + getForegroundCall().getState());
216 && (!getForegroundCall().getState().isAlive()
226 Call.State foregroundCallState = getForegroundCall().getState();
452 } else if (getForegroundCall().isIdle()
SipPhone.java 318 public Call getForegroundCall() {
838 : (SipCall) SipPhone.this.getForegroundCall();
859 call = (SipCall) SipPhone.this.getForegroundCall();
    [all...]
  /packages/apps/Phone/src/com/android/phone/
PhoneUtils.java 415 Call fgCall = phone.getForegroundCall();
698 Call fgCall = phone.getForegroundCall();
735 Connection c = phone.getForegroundCall().getEarliestConnection();
751 phone.getForegroundCall().getLatestConnection());
    [all...]
CallNotifier.java     [all...]
PhoneInterfaceManager.java 362 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 787 Call getForegroundCall();
    [all...]
PhoneProxy.java 408 public Call getForegroundCall() {
409 return mActivePhone.getForegroundCall();
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GSMPhone.java 474 getForegroundCall() {
520 GsmCall call = (GsmCall) getForegroundCall();
562 GsmCall call = (GsmCall) getForegroundCall();
696 GsmCall.State foregroundCallState = getForegroundCall().getState();
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CDMAPhone.java 408 CdmaCall.State foregroundCallState = getForegroundCall().getState();
506 public CdmaCall getForegroundCall() {
    [all...]

Completed in 541 milliseconds