/aosp12/frameworks/base/telecomm/java/android/telecom/ |
H A D | CallDiagnosticService.java | 263 String telecomCallId = parcelableCall.getId(); in handleCallAdded() local 264 Log.i(this, "handleCallAdded: callId=%s - added", telecomCallId); in handleCallAdded() 267 mCallByTelecomCallId.put(telecomCallId, newCallDetails); in handleCallAdded() 278 callDiagnostics.setCallId(telecomCallId); in handleCallAdded() 291 String telecomCallId = parcelableCall.getId(); in handleCallUpdated() local 292 Log.i(this, "handleCallUpdated: callId=%s - updated", telecomCallId); in handleCallUpdated() 301 mCallByTelecomCallId.put(telecomCallId, newCallDetails); in handleCallUpdated() 310 private void handleCallRemoved(@NonNull String telecomCallId) { in handleCallRemoved() argument 315 if (mCallByTelecomCallId.containsKey(telecomCallId)) { in handleCallRemoved() 316 mCallByTelecomCallId.remove(telecomCallId); in handleCallRemoved() [all …]
|
H A D | ConnectionRequest.java | 109 public @NonNull Builder setTelecomCallId(@NonNull String telecomCallId) { in setTelecomCallId() argument 110 this.mTelecomCallId = telecomCallId; in setTelecomCallId() 232 String telecomCallId, in ConnectionRequest() argument 234 this(accountHandle, handle, extras, videoState, telecomCallId, in ConnectionRequest() 243 String telecomCallId, in ConnectionRequest() argument 247 this(accountHandle, handle, extras, videoState, telecomCallId, in ConnectionRequest() 256 String telecomCallId, in ConnectionRequest() argument 266 mTelecomCallId = telecomCallId; in ConnectionRequest()
|
H A D | Call.java | 1156 String telecomCallId, in Details() argument 1176 mTelecomCallId = telecomCallId; in Details() 1547 public RttCall(String telecomCallId, InputStreamReader receiveStream, in RttCall() argument 1549 mTelecomCallId = telecomCallId; in RttCall() 2414 Call(Phone phone, String telecomCallId, InCallAdapter inCallAdapter, String callingPackage, in Call() argument 2417 mTelecomCallId = telecomCallId; in Call() 2425 Call(Phone phone, String telecomCallId, InCallAdapter inCallAdapter, int state, in Call() argument 2428 mTelecomCallId = telecomCallId; in Call()
|
H A D | Conference.java | 149 public final void setTelecomCallId(String telecomCallId) { in setTelecomCallId() argument 150 mTelecomCallId = telecomCallId; in setTelecomCallId()
|
/aosp12/packages/services/Telephony/src/com/android/services/telephony/ |
H A D | GsmConnection.java | 25 GsmConnection(Connection connection, String telecomCallId, int callDirection) { in GsmConnection() argument 26 super(connection, telecomCallId, callDirection); in GsmConnection()
|
H A D | CdmaConnection.java | 86 String telecomCallId) { in CdmaConnection() argument 87 super(connection, telecomCallId, callDirection); in CdmaConnection()
|
H A D | TelephonyConnectionService.java | 1848 String telecomCallId) { in createConnectionFor() argument 1850 telecomCallId, false); in createConnectionFor() 1858 String telecomCallId, in createConnectionFor() argument 1865 returnConnection = new GsmConnection(originalConnection, telecomCallId, callDirection); in createConnectionFor() 1869 allowsMute, callDirection, telecomCallId); in createConnectionFor()
|
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
H A D | Connection.java | 338 public void setTelecomCallId(String telecomCallId) { in setTelecomCallId() argument 339 mTelecomCallId = telecomCallId; in setTelecomCallId()
|