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

  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 146 assertEquals(0, mGSMPhone.getForegroundCall().getConnections().size());
150 assertEquals(Call.State.IDLE, mGSMPhone.getForegroundCall().getState());
153 assertEquals(0, mGSMPhone.getForegroundCall().getEarliestCreateTime());
154 assertEquals(0, mGSMPhone.getForegroundCall().getEarliestConnectTime());
169 assertEquals(Call.State.DIALING, mGSMPhone.getForegroundCall().getState());
170 assertTrue(mGSMPhone.getForegroundCall().isDialingOrAlerting());
174 } while (mGSMPhone.getForegroundCall().getConnections().size() == 0);*/
177 assertEquals(1, mGSMPhone.getForegroundCall().getConnections().size());
182 mGSMPhone.getForegroundCall().getState());
185 assertTrue(mGSMPhone.getForegroundCall().getEarliestCreateTime() > 0)
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
CallAudioManager.java 67 if (hasFocus() && getForegroundCall() == call) {
136 Call call = getForegroundCall();
338 Call call = getForegroundCall();
473 Call call = CallsManager.getInstance().getForegroundCall();
482 private Call getForegroundCall() {
483 Call call = CallsManager.getInstance().getForegroundCall();
494 Call call = CallsManager.getInstance().getForegroundCall();
InCallToneMonitor.java 40 if (mCallsManager.getForegroundCall() != call) {
RingbackPlayer.java 138 && mCallsManager.getForegroundCall() == call
BluetoothPhoneService.java 225 call = callsManager.getForegroundCall();
236 call = callsManager.getForegroundCall();
576 boolean isForeground = getCallsManager().getForegroundCall() == call;
    [all...]
Ringer.java 171 Call foregroundCall = mCallsManager.getForegroundCall();
TelecomServiceImpl.java 518 Call call = mCallsManager.getForegroundCall();
CallsManager.java 294 Call getForegroundCall() {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhoneBase.java 64 public abstract Call getForegroundCall();
217 Rlog.v(LOG_TAG, "canDial(): foregndCall: " + getForegroundCall().getState());
220 && (!getForegroundCall().getState().isAlive()
230 Call.State foregroundCallState = getForegroundCall().getState();
512 } else if (getForegroundCall().isIdle()
SipPhone.java 361 public Call getForegroundCall() {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneBase.java 237 Rlog.v(LOG_TAG, "canDial(): foregndCall: " + getForegroundCall().getState());
240 && (!getForegroundCall().getState().isAlive()
250 Call.State foregroundCallState = getForegroundCall().getState();
533 } else if (getForegroundCall().isIdle()
ImsPhone.java 273 getForegroundCall() {
324 ImsPhoneCall call = getForegroundCall();
354 ImsPhoneCall call = getForegroundCall();
453 ImsPhoneCall.State foregroundCallState = getForegroundCall().getState();
918 ImsPhoneConnection conn = getForegroundCall().getHandoverConnection();
    [all...]
  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyConnection.java 445 if (!phone.getForegroundCall().isIdle()) {
457 return getPhone().getForegroundCall().getEarliestConnection();
TelephonyConnectionService.java 266 final Call foregroundCall = phone.getForegroundCall();
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CallManager.java 206 return phone.getForegroundCall().getPhone();
224 * phone.getForegroundCall().getPhone() != phone
226 * isSamePhone(phone, phone.getForegroundCall().getPhone()) == true
414 mForegroundCalls.add(basePhone.getForegroundCall());
443 mForegroundCalls.remove(basePhone.getForegroundCall());
    [all...]
DefaultPhoneNotifier.java 259 Call foregroundCall = sender.getForegroundCall();
Phone.java 764 Call getForegroundCall();
    [all...]
PhoneProxy.java 676 public Call getForegroundCall() {
677 return mActivePhone.getForegroundCall();
    [all...]
  /packages/services/Telephony/src/com/android/phone/
PhoneUtils.java 381 Call fgCall = phone.getForegroundCall();
708 Call fgCall = phone.getForegroundCall();
    [all...]
CallNotifier.java 436 if ((fgPhone.getForegroundCall().getState() == Call.State.ACTIVE)
446 mPreviousCdmaCallState = fgPhone.getForegroundCall().getState();
    [all...]
PhoneGlobals.java 691 boolean isDialing = (phone.getForegroundCall().getState() == Call.State.DIALING);
    [all...]
PhoneInterfaceManager.java     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GSMPhone.java 571 getForegroundCall() {
624 GsmCall call = getForegroundCall();
665 GsmCall call = getForegroundCall();
791 GsmCall.State foregroundCallState = getForegroundCall().getState();
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CDMAPhone.java 489 CdmaCall.State foregroundCallState = getForegroundCall().getState();
638 public CdmaCall getForegroundCall() {
    [all...]

Completed in 752 milliseconds