Searched refs:CreateConnectionResponse (Results 1 – 5 of 5) sorted by relevance
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | CreateConnectionProcessorTest.java | 34 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/ |
D | CreateConnectionProcessor.java | 45 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()
|
D | ConnectionServiceWrapper.java | 648 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()
|
D | CreateConnectionResponse.java | 28 public interface CreateConnectionResponse { interface
|
D | Call.java | 65 public class Call implements CreateConnectionResponse {
|