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

  /packages/apps/Dialer/java/com/android/incallui/
AnswerScreenPresenter.java 137 DialerCall activeCall = CallList.getInstance().getActiveCall();
138 if (activeCall == null) {
139 LogUtil.i("AnswerScreenPresenter.onAnswerAndReleaseCall", "activeCall == null");
142 activeCall.setReleasedByAnsweringSecondCall(true);
143 activeCall.addListener(new AnswerOnDisconnected(activeCall));
144 activeCall.disconnect();
151 DialerCall activeCall = CallList.getInstance().getActiveCall();
152 if (activeCall != null) {
153 activeCall.increaseSecondCallWithoutAnswerAndReleasedButtonTimes()
    [all...]
ProximitySensor.java 114 DialerCall activeCall = callList.getActiveCall();
115 boolean isVideoCall = activeCall != null && activeCall.isVideoCall();
116 boolean isRttCall = activeCall != null && activeCall.isRttCall();
InCallPresenter.java     [all...]
VideoCallPresenter.java 207 final DialerCall activeCall = CallList.getInstance().getActiveCall();
228 else if (isVideoCall(activeCall) && isIncomingVideoCall(call)) {
229 cameraDir = activeCall.getCameraDir();
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
BluetoothPhoneServiceImpl.java 494 Call activeCall = mCallsManager.getActiveCall();
499 Log.i(TAG, "Active: %s\nRinging: %s\nHeld: %s", activeCall, ringingCall, heldCall);
510 if (activeCall == null && ringingCall == null && heldCall == null)
512 if (activeCall != null) {
513 mCallsManager.disconnectCall(activeCall);
528 if (activeCall != null && activeCall.can(Connection.CAPABILITY_SWAP_CONFERENCE)) {
529 activeCall.swapConference();
541 } else if (activeCall != null && activeCall.can(Connection.CAPABILITY_HOLD))
    [all...]
CallsManager.java     [all...]
ConnectionServiceWrapper.java     [all...]
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
BluetoothPhoneServiceTest.java 260 Call activeCall = createActiveCall();
261 when(activeCall.getState()).thenReturn(CallState.ACTIVE);
262 calls.add(activeCall);
263 when(activeCall.isConference()).thenReturn(false);
264 when(activeCall.getHandle()).thenReturn(Uri.parse("tel:555-000"));
663 Call activeCall = createActiveCall();
669 verify(mMockCallsManager).disconnectCall(eq(activeCall));
677 Call activeCall = createActiveCall();
683 verify(mMockCallsManager).disconnectCall(eq(activeCall));
715 Call activeCall = createActiveCall()
    [all...]
ConnectionServiceFocusManagerTest.java 202 CallFocus activeCall = createFakeCall(mActiveConnectionService, CallState.ACTIVE);
204 requestFocus(activeCall, null);
207 int previousState = activeCall.getState();
208 when(activeCall.getState()).thenReturn(CallState.ON_HOLD);
210 (Call) activeCall, previousState, activeCall.getState());
  /prebuilts/go/darwin-x86/src/crypto/tls/
conn.go 101 // activeCall is an atomic int32; the low bit is whether Close has
104 activeCall int32
1041 x := atomic.LoadInt32(&c.activeCall)
1045 if atomic.CompareAndSwapInt32(&c.activeCall, x, x+2) {
1046 defer atomic.AddInt32(&c.activeCall, -2)
    [all...]
  /prebuilts/go/linux-x86/src/crypto/tls/
conn.go 101 // activeCall is an atomic int32; the low bit is whether Close has
104 activeCall int32
1041 x := atomic.LoadInt32(&c.activeCall)
1045 if atomic.CompareAndSwapInt32(&c.activeCall, x, x+2) {
1046 defer atomic.AddInt32(&c.activeCall, -2)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCallTracker.java 181 ImsCall activeCall = mForegroundCall.getFirstConnection().getImsCall();
182 if (activeCall != null && imsCall != null) {
183 // activeCall could be null if the foreground call is in a disconnected
187 shouldDisconnectActiveCallOnAnswer(activeCall, imsCall);
    [all...]

Completed in 678 milliseconds