Searched refs:fromInCall (Results 1 – 5 of 5) sorted by relevance
/aosp12/frameworks/base/telecomm/java/com/android/internal/telecom/ |
H A D | IConnectionService.aidl | 128 void startRtt(String callId, in ParcelFileDescriptor fromInCall, in startRtt() argument 133 void respondToRttUpgradeRequest(String callId, in ParcelFileDescriptor fromInCall, in respondToRttUpgradeRequest() argument
|
/aosp12/packages/services/Telecomm/src/com/android/server/telecom/ |
H A D | ConnectionServiceWrapper.java | 1950 void startRtt(Call call, ParcelFileDescriptor fromInCall, ParcelFileDescriptor toInCall) { in startRtt() argument 1954 logOutgoing("startRtt: %s %s %s", callId, fromInCall, toInCall); in startRtt() 1955 mServiceInterface.startRtt(callId, fromInCall, toInCall, in startRtt() 1974 Call call, ParcelFileDescriptor fromInCall, ParcelFileDescriptor toInCall) { in respondToRttRequest() argument 1978 logOutgoing("respondToRttRequest: %s %s %s", callId, fromInCall, toInCall); in respondToRttRequest() 1980 callId, fromInCall, toInCall, Log.getExternalSession(TELECOM_ABBREVIATION)); in respondToRttRequest()
|
/aosp12/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
H A D | ConnectionServiceFixture.java | 401 public void startRtt(String callId, ParcelFileDescriptor fromInCall, in startRtt() argument 412 public void respondToRttUpgradeRequest(String callId, ParcelFileDescriptor fromInCall, in respondToRttUpgradeRequest() argument
|
/aosp12/frameworks/base/telecomm/java/android/telecom/ |
H A D | Connection.java | 1278 public RttTextStream(ParcelFileDescriptor toInCall, ParcelFileDescriptor fromInCall) { in RttTextStream() argument 1279 mFdFromInCall = fromInCall; in RttTextStream() 1281 mFromInCallFileInputStream = new FileInputStream(fromInCall.getFileDescriptor()); in RttTextStream()
|
H A D | ConnectionService.java | 792 public void startRtt(String callId, ParcelFileDescriptor fromInCall, 798 args.arg2 = new Connection.RttTextStream(toInCall, fromInCall); 820 public void respondToRttUpgradeRequest(String callId, ParcelFileDescriptor fromInCall, 826 if (toInCall == null || fromInCall == null) { 829 args.arg2 = new Connection.RttTextStream(toInCall, fromInCall);
|