Home
last modified time | relevance | path

Searched refs:TestConnection (Results 1 – 2 of 2) sorted by relevance

/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DTestConnectionService.java130 final class TestConnection extends Connection { class in TestConnectionService
142 destroyCall(TestConnection.this);
163 TestConnection(boolean isIncoming, ConnectionRequest request) { in TestConnection() method in TestConnectionService.TestConnection
211 activateCall(TestConnection.this); in startOutgoing()
337 private final List<TestConnection> mCalls = new ArrayList<>();
388 final TestConnection connection =
389 new TestConnection(false /* isIncoming */, originalRequest);
426 final TestConnection connection = new TestConnection(true, request);
477 final TestConnection connection = new TestConnection(false, request);
502 TestConnection c = mCalls.get(0);
[all …]
DTestVideoProvider.java23 import com.android.server.telecom.testapps.TestConnectionService.TestConnection;
57 private TestConnection mConnection;
77 public TestVideoProvider(Context context, TestConnection connection) { in TestVideoProvider()