Searched refs:CreateConnectionResponse (Results 1 – 5 of 5) sorted by relevance
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | CreateConnectionProcessorTest.java | 36 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/ |
D | CreateConnectionProcessor.java | 50 public class CreateConnectionProcessor implements CreateConnectionResponse { 120 private CreateConnectionResponse mCallResponse; 130 Call call, ConnectionServiceRepository repository, CreateConnectionResponse response, in CreateConnectionProcessor() 179 void continueProcessingIfPossible(CreateConnectionResponse response, in continueProcessingIfPossible() 192 CreateConnectionResponse response = mCallResponse; in abort()
|
D | ConnectionServiceWrapper.java | 1125 private final Map<String, CreateConnectionResponse> mPendingResponses = new HashMap<>(); 1192 public void createConference(final Call call, final CreateConnectionResponse response) { in createConference() 1253 public void createConnection(final Call call, final CreateConnectionResponse response) { in createConnection() 1701 CreateConnectionResponse response = mPendingResponses.remove(callId); in removeCall() 1710 CreateConnectionResponse response = mPendingResponses.remove(mCallIdMapper.getCallId(call)); in removeCall() 1982 CreateConnectionResponse[] responses = mPendingResponses.values().toArray( in handleConnectionServiceDeath() 1983 new CreateConnectionResponse[mPendingResponses.values().size()]); in handleConnectionServiceDeath()
|
D | CreateConnectionResponse.java | 29 public interface CreateConnectionResponse { interface
|
D | Call.java | 85 public class Call implements CreateConnectionResponse, EventManager.Loggable,
|