OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:activecall
(Results
1 - 6
of
6
) sorted by null
/packages/services/Telecomm/src/com/android/server/telecom/
BluetoothPhoneServiceImpl.java
484
Call
activeCall
= mCallsManager.getActiveCall();
489
Log.i(TAG, "Active: %s\nRinging: %s\nHeld: %s",
activeCall
, ringingCall, heldCall);
500
if (
activeCall
!= null) {
501
mCallsManager.disconnectCall(
activeCall
);
510
if (
activeCall
!= null &&
activeCall
.can(Connection.CAPABILITY_SWAP_CONFERENCE)) {
511
activeCall
.swapConference();
523
} else if (
activeCall
!= null &&
activeCall
.can(Connection.CAPABILITY_HOLD)) {
524
mCallsManager.holdCall(
activeCall
);
[
all
...]
ConnectionServiceWrapper.java
[
all
...]
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
BluetoothPhoneServiceTest.java
239
Call
activeCall
= createActiveCall();
240
when(
activeCall
.getState()).thenReturn(CallState.ACTIVE);
241
calls.add(
activeCall
);
242
when(
activeCall
.isConference()).thenReturn(false);
243
when(
activeCall
.getHandle()).thenReturn(Uri.parse("tel:555-000"));
596
Call
activeCall
= createActiveCall();
602
verify(mMockCallsManager).disconnectCall(eq(
activeCall
));
609
Call
activeCall
= createActiveCall();
615
verify(mMockCallsManager).disconnectCall(eq(
activeCall
));
644
Call
activeCall
= createActiveCall()
[
all
...]
/packages/apps/Dialer/InCallUI/src/com/android/incallui/
InCallPresenter.java
[
all
...]
VideoCallPresenter.java
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCallTracker.java
155
ImsCall
activeCall
= mForegroundCall.getFirstConnection().getImsCall();
157
shouldDisconnectActiveCallOnAnswer(
activeCall
, imsCall);
703
ImsCall
activeCall
= mForegroundCall.getImsCall();
707
shouldDisconnectActiveCallOnAnswer(
activeCall
, ringingCall);
[
all
...]
Completed in 336 milliseconds