Lines Matching refs:callId
91 public void removeDiagnosticCall(String callId) throws RemoteException { in removeDiagnosticCall() argument
92 handleCallRemoved(callId); in removeDiagnosticCall()
101 public void receiveDeviceToDeviceMessage(String callId, int message, int value) { in receiveDeviceToDeviceMessage() argument
102 handleReceivedD2DMessage(callId, message, value); in receiveDeviceToDeviceMessage()
112 public void notifyCallDisconnected(@NonNull String callId, in notifyCallDisconnected() argument
114 handleCallDisconnected(callId, disconnectCause); in notifyCallDisconnected()
118 public void callQualityChanged(String callId, CallQuality callQuality) in callQualityChanged() argument
120 handleCallQualityChanged(callId, callQuality); in callQualityChanged()
339 private void handleReceivedD2DMessage(@NonNull String callId, int message, int value) { in handleReceivedD2DMessage() argument
340 Log.i(this, "handleReceivedD2DMessage: callId=%s, msg=%d/%d", callId, message, value); in handleReceivedD2DMessage()
343 callDiagnostics = mDiagnosticCallByTelecomCallId.get(callId); in handleReceivedD2DMessage()
357 private void handleCallDisconnected(@NonNull String callId, in handleCallDisconnected() argument
359 Log.i(this, "handleCallDisconnected: call=%s; cause=%s", callId, disconnectCause); in handleCallDisconnected()
362 callDiagnostics = mDiagnosticCallByTelecomCallId.get(callId); in handleCallDisconnected()
373 mAdapter.overrideDisconnectMessage(callId, message); in handleCallDisconnected()
376 callId, disconnectCause, e); in handleCallDisconnected()
397 private void handleCallQualityChanged(@NonNull String callId, in handleCallQualityChanged() argument
399 Log.i(this, "handleCallQualityChanged; call=%s, cq=%s", callId, callQuality); in handleCallQualityChanged()
402 callDiagnostics = mDiagnosticCallByTelecomCallId.get(callId); in handleCallQualityChanged()
418 String callId = callDiagnostics.getCallId(); in handleSendDeviceToDeviceMessage() local
420 mAdapter.sendDeviceToDeviceMessage(callId, message, value); in handleSendDeviceToDeviceMessage()
421 Log.i(this, "handleSendDeviceToDeviceMessage: call=%s; msg=%d/%d", callId, message, in handleSendDeviceToDeviceMessage()
425 callId, message, value, e); in handleSendDeviceToDeviceMessage()
438 String callId = callDiagnostics.getCallId(); in handleDisplayDiagnosticMessage() local
440 mAdapter.displayDiagnosticMessage(callId, messageId, message); in handleDisplayDiagnosticMessage()
441 Log.i(this, "handleDisplayDiagnosticMessage: call=%s; msg=%d/%s", callId, messageId, in handleDisplayDiagnosticMessage()
445 callId, messageId, message, e); in handleDisplayDiagnosticMessage()
457 String callId = callDiagnostics.getCallId(); in handleClearDiagnosticMessage() local
459 mAdapter.clearDiagnosticMessage(callId, messageId); in handleClearDiagnosticMessage()
460 Log.i(this, "handleClearDiagnosticMessage: call=%s; msg=%d", callId, messageId); in handleClearDiagnosticMessage()
463 callId, messageId, e); in handleClearDiagnosticMessage()