Home
last modified time | relevance | path

Searched refs:callFuture (Results 1 – 4 of 4) sorted by relevance

/packages/services/Telecomm/src/com/android/server/telecom/voip/
DOutgoingCallTransaction.java88 CompletableFuture<Call> callFuture = in processTransaction() local
96 if (callFuture == null) { in processTransaction()
102 CompletionStage<VoipCallTransactionResult> result = callFuture.thenComposeAsync( in processTransaction()
/packages/services/Telecomm/src/com/android/server/telecom/
DCallIntentProcessor.java227 CompletableFuture<Call> callFuture = callsManager in processOutgoingCallIntent() local
232 callFuture.thenAccept((call) -> { in processOutgoingCallIntent()
DCallsManager.java2495 CompletableFuture<Call> callFuture = startOutgoingCall(participants, phoneAccountHandle, in startConference() local
2505 callFuture.thenAccept((call) -> { in startConference()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallsManagerTest.java1757 CompletableFuture<Call> callFuture = mCallsManager.startOutgoingCall( in testBlockNonEmergencyCallDuringEmergencyCall() local
1762 Call result = callFuture.get(TEST_TIMEOUT, TimeUnit.MILLISECONDS); in testBlockNonEmergencyCallDuringEmergencyCall()
2439 CompletableFuture<Call> callFuture = mCallsManager.startOutgoingCall( in testReuseCallConcurrency() local
2451 callFuture.join(); in testReuseCallConcurrency()
2455 assertNotNull(callFuture.get()); in testReuseCallConcurrency()
2676 CompletableFuture<Call> callFuture = mCallsManager.startOutgoingCall( in testAbortOutgoingCallNoPhoneAccountsNotifyListeners() local
2679 Call result = callFuture.get(TEST_TIMEOUT, TimeUnit.MILLISECONDS); in testAbortOutgoingCallNoPhoneAccountsNotifyListeners()
2814 CompletableFuture<Call> callFuture = mCallsManager.startOutgoingCall( in testStartOutgoingCall_TargetPhoneAccountSet() local
2817 Call outgoingCall = callFuture.get(); in testStartOutgoingCall_TargetPhoneAccountSet()