Searched refs:rttTextStream (Results 1 - 7 of 7) sorted by relevance
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
H A D | ImsRttTextHandler.java | 204 public void initialize(Connection.RttTextStream rttTextStream) { argument 205 obtainMessage(INITIALIZE, rttTextStream).sendToTarget();
|
H A D | ImsPhoneConnection.java | 1014 public void setCurrentRttTextStream(android.telecom.Connection.RttTextStream rttTextStream) { argument 1016 mRttTextStream = rttTextStream;
|
H A D | ImsPhone.java | 147 .setRttTextStream(dialArgs.rttTextStream) 171 public final android.telecom.Connection.RttTextStream rttTextStream; field in class:ImsPhone.ImsDialArgs 178 this.rttTextStream = b.mRttTextStream;
|
H A D | ImsPhoneCallTracker.java | 968 if (dialArgs.rttTextStream != null) { 970 mPendingMO.setCurrentRttTextStream(dialArgs.rttTextStream);
|
/frameworks/base/telecomm/java/android/telecom/ |
H A D | RemoteConnection.java | 1093 * @param rttTextStream The object that should be used to send text to or receive text from 1097 public void startRtt(@NonNull Connection.RttTextStream rttTextStream) { argument 1100 mConnectionService.startRtt(mConnectionId, rttTextStream.getFdFromInCall(), 1101 rttTextStream.getFdToInCall(), null /*Session.Info*/); 1125 * and rejection is indicated by {@code rttTextStream} being {@code null} 1127 * @param rttTextStream The object that should be used to send text to or receive text from 1130 public void sendRttUpgradeResponse(@Nullable Connection.RttTextStream rttTextStream) { argument 1133 if (rttTextStream == null) { 1138 rttTextStream.getFdFromInCall(), rttTextStream [all...] |
H A D | ConnectionService.java | 1106 Connection.RttTextStream rttTextStream = 1108 startRtt(callId, rttTextStream); 1134 Connection.RttTextStream rttTextStream = 1136 handleRttUpgradeResponse(callId, rttTextStream); 1855 private void startRtt(String callId, Connection.RttTextStream rttTextStream) { argument 1858 findConnectionForAction(callId, "startRtt").onStartRtt(rttTextStream); 1873 private void handleRttUpgradeResponse(String callId, Connection.RttTextStream rttTextStream) { argument 1874 Log.d(this, "handleRttUpgradeResponse(%s, %s)", callId, rttTextStream == null); 1877 .handleRttUpgradeResponse(rttTextStream);
|
H A D | Connection.java | 2926 * @param rttTextStream The object that should be used to send text to or receive text from 2929 public void onStartRtt(@NonNull RttTextStream rttTextStream) {} argument 2941 * indicated by {@code rttTextStream} being {@code null} 2942 * @param rttTextStream The object that should be used to send text to or receive text from 2945 public void handleRttUpgradeResponse(@Nullable RttTextStream rttTextStream) {} argument
|
Completed in 187 milliseconds