Home
last modified time | relevance | path

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

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCreateConnectionProcessorTest.java34 import com.android.server.telecom.CreateConnectionResponse;
64 CreateConnectionResponse mMockCreateConnectionResponse;
100 verify(service).createConnection(eq(mMockCall), any(CreateConnectionResponse.class)); in testSimPhoneAccountSuccess()
120 any(CreateConnectionResponse.class)); in testbadPhoneAccount()
143 verify(service).createConnection(eq(mMockCall), any(CreateConnectionResponse.class)); in testConnectionManagerSuccess()
178 verify(service).createConnection(eq(mMockCall), any(CreateConnectionResponse.class)); in testConnectionManagerFailedFallToSim()
231 verify(service).createConnection(eq(mMockCall), any(CreateConnectionResponse.class)); in testEmergencyCallToSim()
266 verify(service).createConnection(eq(mMockCall), any(CreateConnectionResponse.class)); in testEmergencyCallSimFailToConnectionManager()
/packages/services/Telecomm/src/com/android/server/telecom/
DCreateConnectionProcessor.java45 public class CreateConnectionProcessor implements CreateConnectionResponse {
93 private CreateConnectionResponse mCallResponse;
102 Call call, ConnectionServiceRepository repository, CreateConnectionResponse response, in CreateConnectionProcessor()
139 void continueProcessingIfPossible(CreateConnectionResponse response, in continueProcessingIfPossible()
152 CreateConnectionResponse response = mCallResponse; in abort()
DConnectionServiceWrapper.java648 private final Map<String, CreateConnectionResponse> mPendingResponses = new HashMap<>();
699 public void createConnection(final Call call, final CreateConnectionResponse response) { in createConnection()
905 CreateConnectionResponse response = mPendingResponses.remove(callId); in removeCall()
914 CreateConnectionResponse response = mPendingResponses.remove(mCallIdMapper.getCallId(call)); in removeCall()
1053 CreateConnectionResponse[] responses = mPendingResponses.values().toArray( in handleConnectionServiceDeath()
1054 new CreateConnectionResponse[mPendingResponses.values().size()]); in handleConnectionServiceDeath()
DCreateConnectionResponse.java28 public interface CreateConnectionResponse { interface
DCall.java65 public class Call implements CreateConnectionResponse {