Lines Matching refs:telecomCallId
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()
279 mDiagnosticCallByTelecomCallId.put(telecomCallId, callDiagnostics); in handleCallAdded()
291 String telecomCallId = parcelableCall.getId(); in handleCallUpdated() local
292 Log.i(this, "handleCallUpdated: callId=%s - updated", telecomCallId); in handleCallUpdated()
296 callDiagnostics = mDiagnosticCallByTelecomCallId.get(telecomCallId); in handleCallUpdated()
301 mCallByTelecomCallId.put(telecomCallId, newCallDetails); in handleCallUpdated()
310 private void handleCallRemoved(@NonNull String telecomCallId) { in handleCallRemoved() argument
311 Log.i(this, "handleCallRemoved: callId=%s - removed", telecomCallId); in handleCallRemoved()
315 if (mCallByTelecomCallId.containsKey(telecomCallId)) { in handleCallRemoved()
316 mCallByTelecomCallId.remove(telecomCallId); in handleCallRemoved()
319 if (mDiagnosticCallByTelecomCallId.containsKey(telecomCallId)) { in handleCallRemoved()
320 callDiagnostics = mDiagnosticCallByTelecomCallId.remove(telecomCallId); in handleCallRemoved()