Home
last modified time | relevance | path

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

/packages/services/Telecomm/src/com/android/server/telecom/
DCallsManager.java305 private CompletableFuture<Pair<Call, PhoneAccountHandle>> mPendingAccountSelection; field in CallsManager
1645 mPendingAccountSelection = new CompletableFuture<>(); in startOutgoingCall()
1649 return mPendingAccountSelection; in startOutgoingCall()
2551 if (mPendingAccountSelection != null && !mPendingAccountSelection.isDone()) {
2552 mPendingAccountSelection.complete(null);
2553 mPendingAccountSelection = null;
2814 if (mPendingAccountSelection != null) {
2815 mPendingAccountSelection.complete(Pair.create(call, account));
2816 mPendingAccountSelection = null;