/packages/apps/Dialer/java/com/android/incallui/incall/protocol/ |
D | SecondaryInfo.java | 42 public abstract boolean isConference(); in isConference() method in SecondaryInfo 70 public abstract Builder setIsConference(boolean isConference); in setIsConference() argument 124 dest.writeByte((byte) (isConference() ? 1 : 0)); in writeToParcel()
|
D | PrimaryCallState.java | 82 public abstract boolean isConference(); in isConference() method in PrimaryCallState 165 public abstract Builder setIsConference(boolean isConference); in setIsConference() argument
|
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/telephony/ |
D | BluetoothInCallServiceTest.java | 271 when(activeCall.isConference()).thenReturn(false); in testListCurrentCallsOneCall() 335 when(silentRingingCall.isConference()).thenReturn(false); in testListCurrentCallsSilentRinging() 386 when(parentCall.isConference()).thenReturn(true); in testConferenceInProgressCDMA() 454 when(parentCall.isConference()).thenReturn(true); in testListCurrentCallsCdmaHold() 517 when(parentCall.isConference()).thenReturn(true); in testListCurrentCallsCdmaConference() 565 when(waitingCall.isConference()).thenReturn(false); in testWaitingCallClccResponse() 600 when(newCall.isConference()).thenReturn(false); in testNewCallClccResponse() 629 when(activeCall.isConference()).thenReturn(false); in testListCurrentCallsCallHandleChanged() 673 when(ringingCall.isConference()).thenReturn(false); in testRingingCallClccResponse() 711 when(ringingCall.isConference()).thenReturn(false); in testCallClccCache() [all …]
|
D | BluetoothCallTest.java | 336 assertThrows(NullPointerException.class, () -> mBluetoothCall.isConference()); in isConference_whenInnerCallIsNull_throwsNPE()
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | CallsManager.java | 218 void onConferenceStateChanged(Call call, boolean isConference); in onConferenceStateChanged() argument 1233 public void onConferenceStateChanged(Call call, boolean isConference) { in onConferenceStateChanged() argument 1237 listener.onConferenceStateChanged(call, isConference); in onConferenceStateChanged() 1518 boolean isConference) { in processIncomingCallIntent() argument 1541 isConference, /* isConference */ in processIncomingCallIntent() 1717 if (isConference) { in processIncomingCallIntent() 1725 if (isConference) { in processIncomingCallIntent() 1746 if (isConference) { in processIncomingCallIntent() 1871 String callingPackage, boolean isConference) { in startOutgoingCall() argument 1873 Uri handle = isConference ? Uri.parse("tel:conf-factory") : participants.get(0); in startOutgoingCall() [all …]
|
D | Call.java | 181 default void onConferenceStateChanged(Call call, boolean isConference) {}; in onConferenceStateChanged() argument 266 public void onConferenceStateChanged(Call call, boolean isConference) {} in onConferenceStateChanged() argument 894 boolean isConference, in Call() argument 901 isConference, clockProxy, toastFactory, featureFlags); in Call() 919 boolean isConference, in Call() argument 926 mState = (isConference && callDirection != CALL_DIRECTION_INCOMING && in Call() 942 mIsConference = isConference; in Call() 990 boolean isConference, in Call() argument 999 shouldAttachToExistingConnection, isConference, clockProxy, toastFactory, in Call() 1512 public boolean isConference() { in isConference() method in Call [all …]
|
D | CallsManagerListenerBase.java | 123 public void onConferenceStateChanged(Call call, boolean isConference) { in onConferenceStateChanged() argument
|
D | CallLogManager.java | 199 if (call.isConference() && call.hadChildren() && in shouldLogDisconnectedCall() 207 if (call.isConference() && !call.hadChildren() && in shouldLogDisconnectedCall()
|
D | ParcelableCallUtils.java | 150 if (call.isConference()) { in toParcelableCall()
|
D | CallAudioManager.java | 896 if (call.isConference() && call.getChildCalls() != null in isCallVoip()
|
D | ConnectionServiceWrapper.java | 1263 public void setConferenceState(String callId, boolean isConference, in setConferenceState() argument 1279 call.setConferenceState(isConference); in setConferenceState()
|
D | InCallController.java | 1806 public void onConferenceStateChanged(Call call, boolean isConference) { in onConferenceStateChanged() argument 1807 Log.d(this, "onConferenceStateChanged %s ,isConf=%b", call, isConference); in onConferenceStateChanged()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/telephony/ |
D | BluetoothInCallService.java | 605 if (!call.isConference()) { in onCallAdded() 683 if (call.isConference()) { in onCallRemoved() 769 return call.isConference() in isConferenceWithNoChildren() 781 if (call.isConference() && !mBluetoothConferenceCallInference.isEmpty()) { in sendListOfCalls() 898 if (!call.isConference() || isConferenceWithNoChildren) { in sendListOfCalls() 1055 if (call.isConference()) { in getIndexForCall() 1206 && activeCall.isConference() in updateHeadsetWithCallState()
|
D | BluetoothCall.java | 285 public boolean isConference() { in isConference() method in BluetoothCall
|
/packages/apps/Dialer/java/com/android/dialer/lettertile/ |
D | LetterTileDrawable.java | 424 boolean isConference) { in getContactTypeFromPrimitives() argument 433 } else if (isConference) { in getContactTypeFromPrimitives()
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | CallLogManagerTest.java | 1281 private Call makeFakeCall(int disconnectCauseCode, boolean isConference, boolean isIncoming, in makeFakeCall() argument 1285 return makeFakeCall(disconnectCauseCode, isConference, isIncoming, creationTimeMillis, in makeFakeCall() 1290 private Call makeFakeCall(int disconnectCauseCode, boolean isConference, boolean isIncoming, in makeFakeCall() argument 1298 when(fakeCall.isConference()).thenReturn(isConference); in makeFakeCall()
|
D | CallAudioManagerTest.java | 719 when(conference.isConference()).thenReturn(true);
|
/packages/apps/Dialer/java/com/android/incallui/contactgrid/ |
D | ContactGridManager.java | 322 .setIsConference(primaryCallState.isConference()); in loadPhotoWithGlide() 366 primaryCallState.isConference())); in loadPhotoWithLegacy()
|
D | TopRow.java | 249 && (isAccount(state) || state.isWifi() || state.isConference())) { in getConnectionLabel()
|
/packages/apps/Dialer/java/com/android/incallui/rtt/impl/ |
D | RttChatFragment.java | 418 primaryCallState.isConference())); in updateAvatar()
|