Searched refs:getGatewayInfo (Results 1 – 11 of 11) sorted by relevance
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | BluetoothPhoneServiceTest.java | 313 when(confCall1.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testConferenceInProgressCDMA() 315 when(confCall2.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testConferenceInProgressCDMA() 362 when(foregroundCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testListCurrentCallsCdmaHold() 364 when(heldCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testListCurrentCallsCdmaHold() 404 when(confCall1.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testListCurrentCallsCdmaConference() 406 when(confCall2.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testListCurrentCallsCdmaConference() 440 when(waitingCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testWaitingCallClccResponse() 479 when(ringingCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testRingingCallClccResponse() 500 when(ringingCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testCallClccCache() 514 when(newHoldingCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testCallClccCache() [all …]
|
/packages/apps/Car/libs/car-telephony-common/src/com/android/car/telephony/common/ |
D | CallDetail.java | 89 GatewayInfo gatewayInfo = callDetail.getGatewayInfo(); in getNumber() 106 return callDetail != null && callDetail.getGatewayInfo() != null in getGatewayInfoOriginalAddress() 107 ? callDetail.getGatewayInfo().getOriginalAddress() in getGatewayInfoOriginalAddress()
|
/packages/apps/Dialer/java/com/android/dialer/telecom/ |
D | TelecomCallUtil.java | 55 if (call.getDetails().getGatewayInfo() != null) { in getNumber() 56 return call.getDetails().getGatewayInfo().getOriginalAddress().getSchemeSpecificPart(); in getNumber()
|
/packages/apps/Dialer/java/com/android/incallui/ |
D | CallCardPresenter.java | 905 return DialerCall.getNumberFromHandle(primary.getGatewayInfo().getGatewayAddress()); in getGatewayNumber() 929 pm.getApplicationInfo(primary.getGatewayInfo().getGatewayProviderPackageName(), 0); in getConnectionLabel() 977 && primary.getGatewayInfo() != null in hasOutgoingGatewayCall() 978 && !primary.getGatewayInfo().isEmpty(); in hasOutgoingGatewayCall()
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | BluetoothPhoneServiceImpl.java | 642 if (call.getGatewayInfo() != null) { in sendClccForCall() 643 addressUri = call.getGatewayInfo().getOriginalAddress(); in sendClccForCall()
|
D | ParcelableCallUtils.java | 243 call.getGatewayInfo(), in toParcelableCall()
|
D | ConnectionServiceWrapper.java | 1102 GatewayInfo gatewayInfo = call.getGatewayInfo(); in createConnection()
|
D | Call.java | 1164 public GatewayInfo getGatewayInfo() { in getGatewayInfo() method in Call
|
/packages/apps/Car/Dialer/tests/robotests/src/com/android/car/dialer/livedata/ |
D | CallDetailLiveDataTest.java | 110 when(updatedDetails.getGatewayInfo()).thenReturn(gatewayInfo); in testOnDetailsChanged()
|
/packages/apps/Car/Dialer/tests/robotests/src/com/android/car/dialer/ui/activecall/ |
D | InCallViewModelTest.java | 96 when(mMockDetails.getGatewayInfo()).thenReturn(gatewayInfo); in setup()
|
/packages/apps/Dialer/java/com/android/incallui/call/ |
D | DialerCall.java | 1035 public GatewayInfo getGatewayInfo() { in getGatewayInfo() method in DialerCall 1036 return telecomCall == null ? null : telecomCall.getDetails().getGatewayInfo(); in getGatewayInfo()
|