Home
last modified time | relevance | path

Searched refs:onCallDisconnected (Results 1 – 6 of 6) sorted by relevance

/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DTestCallDiagnosticService.java52 public CharSequence onCallDisconnected(int disconnectCause, int preciseDisconnectCause) { in onCallDisconnected() method in TestCallDiagnosticService.TestCallDiagnostics
59 public CharSequence onCallDisconnected(@NonNull ImsReasonInfo disconnectReason) { in onCallDisconnected() method in TestCallDiagnosticService.TestCallDiagnostics
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallsManagerTest.java1590 verify(mCallDiagnosticServiceController, never()).onCallDisconnected(any(Call.class), in testDisconnectCallSynchronous()
1601 when(mCallDiagnosticServiceController.onCallDisconnected(any(Call.class), in testDisconnectCallAsynchronous()
1605 verify(mCallDiagnosticServiceController).onCallDisconnected(any(Call.class), in testDisconnectCallAsynchronous()
1621 when(mCallDiagnosticServiceController.onCallDisconnected(any(Call.class), in testDisconnectDialingCall()
1625 verify(mCallDiagnosticServiceController).onCallDisconnected(any(Call.class), in testDisconnectDialingCall()
/packages/apps/Dialer/java/com/android/dialer/postcall/
DPostCall.java164 public static void onCallDisconnected(Context context, String number, long callConnectedMillis) { in onCallDisconnected() method in PostCall
/packages/services/Telecomm/src/com/android/server/telecom/
DCallDiagnosticServiceController.java284 public boolean onCallDisconnected(@NonNull Call call, in onCallDisconnected() method in CallDiagnosticServiceController
DCallsManager.java3204 && mCallDiagnosticServiceController.onCallDisconnected(call, disconnectCause)) {
/packages/apps/Dialer/java/com/android/incallui/
DInCallPresenter.java1044 PostCall.onCallDisconnected(context, call.getNumber(), call.getConnectTimeMillis()); in onDisconnect()