Home
last modified time | relevance | path

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

/cts/tests/tests/os/src/android/os/cts/
DBinderIntegrationTest.java209 MockServiceConnection conn1 = new MockServiceConnection(true, false); in testTransact() local
216 getContext().bindService(mService, conn1, 0); in testTransact()
230 getContext().unbindService(conn1); in testTransact()
243 getContext().unbindService(conn1); in testTransact()
245 conn1 = new MockServiceConnection(true, true); in testTransact()
250 conn1.setMonitor(true); in testTransact()
252 getContext().bindService(mService, conn1, 0); in testTransact()
261 getContext().unbindService(conn1); in testTransact()
269 conn1.setMonitor(false); in testTransact()
274 getContext().unbindService(conn1); in testTransact()
[all …]
/cts/tests/app/src/android/app/cts/
DServiceTest.java1518 NullServiceConnection conn1 = new NullServiceConnection(); in testNullServiceBinder() local
1521 assertTrue(mContext.bindService(intent, conn1, Context.BIND_AUTO_CREATE)); in testNullServiceBinder()
1522 conn1.waitForNullBinding(DELAY); in testNullServiceBinder()
1523 assertTrue(conn1.nullBindingReceived()); in testNullServiceBinder()
1529 mContext.unbindService(conn1); in testNullServiceBinder()