Searched refs:getGatewayInfo (Results 1 – 11 of 11) sorted by relevance
/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/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | BluetoothPhoneServiceTest.java | 314 when(confCall1.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testConferenceInProgressCDMA() 316 when(confCall2.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testConferenceInProgressCDMA() 363 when(foregroundCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testListCurrentCallsCdmaHold() 365 when(heldCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testListCurrentCallsCdmaHold() 405 when(confCall1.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testListCurrentCallsCdmaConference() 407 when(confCall2.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testListCurrentCallsCdmaConference() 441 when(waitingCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testWaitingCallClccResponse() 480 when(ringingCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testRingingCallClccResponse() 501 when(ringingCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testCallClccCache() 515 when(newHoldingCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null, in testCallClccCache() [all …]
|
/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 | 646 if (call.getGatewayInfo() != null) { in sendClccForCall() 647 addressUri = call.getGatewayInfo().getOriginalAddress(); in sendClccForCall()
|
D | ParcelableCallUtils.java | 238 .setGatewayInfo(call.getGatewayInfo()) in toParcelableCall()
|
D | ConnectionServiceWrapper.java | 1261 GatewayInfo gatewayInfo = call.getGatewayInfo(); in createConnection()
|
D | Call.java | 1350 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 | 1040 public GatewayInfo getGatewayInfo() { in getGatewayInfo() method in DialerCall 1041 return telecomCall == null ? null : telecomCall.getDetails().getGatewayInfo(); in getGatewayInfo()
|