Home
last modified time | relevance | path

Searched refs:mConnections (Results 1 – 4 of 4) sorted by relevance

/cts/tests/app/src/android/app/cts/android/app/cts/tools/
DServiceProcessController.java48 final ServiceConnectionHandler[] mConnections; field in ServiceProcessController
71 mConnections = new ServiceConnectionHandler[serviceIntents.length]; in ServiceProcessController()
73 mConnections[i] = new ServiceConnectionHandler(mContext, serviceIntents[i]); in ServiceProcessController()
94 return mConnections[index]; in getConnection()
106 for (int i=0; i<mConnections.length; i++) { in ensureProcessGone()
107 mConnections[i].bind(timeout); in ensureProcessGone()
108 IBinder serviceBinder = mConnections[i].getServiceIBinder(); in ensureProcessGone()
113 mConnections[i].unbind(timeout); in ensureProcessGone()
/cts/tests/tests/telecom/src/android/telecom/cts/
DCtsSelfManagedConnectionService.java55 mConnections.remove(connection);
62 private List<SelfManagedConnection> mConnections = new ArrayList<>(); field in CtsSelfManagedConnectionService
111 if (mConnections != null && mConnections.size() > 0) { in tearDown()
112 mConnections.forEach(connection -> { in tearDown()
117 mConnections.clear(); in tearDown()
137 mConnections.add(connection); in createSelfManagedConnection()
145 return new ArrayList<>(mConnections); in getConnections()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/telecom/
DCtsConnectionService.java43 mConnections.remove(connection);
51 private List<CtsConnection> mConnections = new ArrayList<>(); field in CtsConnectionService
80 return new ArrayList<CtsConnection>(mConnections); in getConnections()
91 if (mConnections.size() > 0) { in waitForAndGetConnection()
92 return mConnections.get(0); in waitForAndGetConnection()
152 mConnections.add(connection); in createManagedConnection()
/cts/tests/tests/externalservice/service/src/android/externalservice/service/
DServiceCreator.java39 private final ArrayList<CreatorConnection> mConnections = new ArrayList<>(); field in ServiceCreator
55 mConnections.add(conn);
80 for (final CreatorConnection conn : mConnections) { in onDestroy()