Home
last modified time | relevance | path

Searched refs:isConference (Results 1 – 11 of 11) sorted by relevance

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DBluetoothPhoneServiceTest.java243 when(activeCall.isConference()).thenReturn(false); in testListCurrentCallsOneCall()
280 when(parentCall.isConference()).thenReturn(true); in testConferenceInProgressCDMA()
327 when(parentCall.isConference()).thenReturn(true); in testListCurrentCallsCdmaHold()
368 when(parentCall.isConference()).thenReturn(true); in testListCurrentCallsCdmaConference()
398 when(waitingCall.isConference()).thenReturn(false); in testWaitingCallClccResponse()
415 when(newCall.isConference()).thenReturn(false); in testNewCallClccResponse()
431 when(ringingCall.isConference()).thenReturn(false); in testRingingCallClccResponse()
451 when(ringingCall.isConference()).thenReturn(false); in testCallClccCache()
465 when(newHoldingCall.isConference()).thenReturn(false); in testCallClccCache()
485 when(dialingCall.isConference()).thenReturn(false); in testAlertingCallClccResponse()
[all …]
DCallLogManagerTest.java713 private Call makeFakeCall(int disconnectCauseCode, boolean isConference, boolean isIncoming, in makeFakeCall() argument
717 return makeFakeCall(disconnectCauseCode, isConference, isIncoming, creationTimeMillis, in makeFakeCall()
722 private Call makeFakeCall(int disconnectCauseCode, boolean isConference, boolean isIncoming, in makeFakeCall() argument
730 when(fakeCall.isConference()).thenReturn(isConference); in makeFakeCall()
/packages/apps/Dialer/java/com/android/incallui/incall/protocol/
DSecondaryInfo.java31 public final boolean isConference; field in SecondaryInfo
45 boolean isConference, in SecondaryInfo() argument
53 this.isConference = isConference; in SecondaryInfo()
75 isConference = in.readByte() != 0; in SecondaryInfo()
105 dest.writeByte((byte) (isConference ? 1 : 0)); in writeToParcel()
DPrimaryCallState.java37 public final boolean isConference; field in PrimaryCallState
84 boolean isConference, in PrimaryCallState() argument
104 this.isConference = isConference; in PrimaryCallState()
/packages/services/Telecomm/src/com/android/server/telecom/
DBluetoothPhoneServiceImpl.java564 if (!call.isConference() || in sendListOfCalls()
565 (call.isConference() && call in sendListOfCalls()
580 boolean isConferenceWithNoChildren = call.isConference() && call in sendClccForCall()
722 if (activeCall != null && activeCall.isConference() && in updateHeadsetWithCallState()
DCall.java480 boolean isConference) { in Call() argument
483 mState = isConference ? CallState.ACTIVE : CallState.NEW; in Call()
496 mIsConference = isConference; in Call()
537 boolean isConference, in Call() argument
542 shouldAttachToExistingConnection, isConference); in Call()
831 public boolean isConference() { in isConference() method in Call
DParcelableCallUtils.java97 if (call.isConference()) { in toParcelableCall()
DCallLogManager.java152 !call.isConference() && in onCallStateChanged()
DCallsManager.java2412 if (liveCallPhoneAccount == null && liveCall.isConference() && in makeRoomForOutgoingCall()
/packages/apps/Dialer/java/com/android/incallui/contactgrid/
DTopRow.java136 && (isAccount(state) || state.isWifi || state.isConference)) { in getConnectionLabel()
DContactGridManager.java248 } else if (callState.isConference) { in getContactTypeForPrimaryCallState()