Home
last modified time | relevance | path

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

/aosp12/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DCreateConnectionProcessorTest.java36 import com.android.server.telecom.CreateConnectionResponse;
79 CreateConnectionResponse mMockCreateConnectionResponse;
160 verify(service).createConnection(eq(mMockCall), any(CreateConnectionResponse.class)); in testSimPhoneAccountSuccess()
181 any(CreateConnectionResponse.class)); in testbadPhoneAccount()
208 any(CreateConnectionResponse.class)); in testConnectionManagerSuccess()
248 verify(service).createConnection(eq(mMockCall), any(CreateConnectionResponse.class)); in testConnectionManagerFailedFallToSim()
322 verify(service).createConnection(eq(mMockCall), any(CreateConnectionResponse.class)); in testFakeEmergencyNumber()
359 verify(service).createConnection(eq(mMockCall), any(CreateConnectionResponse.class)); in testEmergencyCall()
399 verify(service).createConnection(eq(mMockCall), any(CreateConnectionResponse.class)); in testEmergencyCallMultiSimNoPreferred()
432 verify(service).createConnection(eq(mMockCall), any(CreateConnectionResponse.class)); in testEmergencyCallMultiSimTelephonyPreferred()
[all …]
/aosp12/packages/services/Telecomm/src/com/android/server/telecom/
H A DCreateConnectionProcessor.java51 public class CreateConnectionProcessor implements CreateConnectionResponse {
121 private CreateConnectionResponse mCallResponse;
131 Call call, ConnectionServiceRepository repository, CreateConnectionResponse response, in CreateConnectionProcessor()
180 void continueProcessingIfPossible(CreateConnectionResponse response, in continueProcessingIfPossible()
193 CreateConnectionResponse response = mCallResponse; in abort()
H A DCreateConnectionResponse.java29 public interface CreateConnectionResponse { interface
H A DConnectionServiceWrapper.java1175 private final Map<String, CreateConnectionResponse> mPendingResponses = new HashMap<>();
1242 public void createConference(final Call call, final CreateConnectionResponse response) { in createConference()
1307 public void createConnection(final Call call, final CreateConnectionResponse response) { in createConnection()
1801 CreateConnectionResponse response = mPendingResponses.remove(callId); in removeCall()
1810 CreateConnectionResponse response = mPendingResponses.remove(mCallIdMapper.getCallId(call)); in removeCall()
2115 CreateConnectionResponse[] responses = mPendingResponses.values().toArray( in handleConnectionServiceDeath()
2116 new CreateConnectionResponse[mPendingResponses.values().size()]); in handleConnectionServiceDeath()
H A DCall.java96 public class Call implements CreateConnectionResponse, EventManager.Loggable,