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.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 …]
/packages/services/Telecomm/src/com/android/server/telecom/
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()
DCreateConnectionResponse.java29 public interface CreateConnectionResponse { interface
DConnectionServiceWrapper.java1136 private final Map<String, CreateConnectionResponse> mPendingResponses = new HashMap<>();
1203 public void createConference(final Call call, final CreateConnectionResponse response) { in createConference()
1268 public void createConnection(final Call call, final CreateConnectionResponse response) { in createConnection()
1762 CreateConnectionResponse response = mPendingResponses.remove(callId); in removeCall()
1771 CreateConnectionResponse response = mPendingResponses.remove(mCallIdMapper.getCallId(call)); in removeCall()
2076 CreateConnectionResponse[] responses = mPendingResponses.values().toArray( in handleConnectionServiceDeath()
2077 new CreateConnectionResponse[mPendingResponses.values().size()]); in handleConnectionServiceDeath()
DCall.java95 public class Call implements CreateConnectionResponse, EventManager.Loggable,