Home
last modified time | relevance | path

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

/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DBlockingBroadcastReceiver.java67 private final BlockingQueue<Intent> mBlockingQueue; field in BlockingBroadcastReceiver
126 mBlockingQueue = new ArrayBlockingQueue<>(1); in BlockingBroadcastReceiver()
132 if (mBlockingQueue.remainingCapacity() == 0) { in onReceive()
138 mBlockingQueue.add(intent); in onReceive()
200 mReceivedIntent = mBlockingQueue.poll(timeoutMillis, TimeUnit.MILLISECONDS); in awaitForBroadcast()
/cts/tests/appsearch/src/com/android/cts/appsearch/app/
DGlobalSearchSessionPlatformCtsTest.java584 private final BlockingQueue<IBinder> mBlockingQueue = new LinkedBlockingQueue<>(); field in GlobalSearchSessionPlatformCtsTest.TestServiceConnection
593 mBlockingQueue.offer(service); in onServiceConnected()
601 IBinder service = mBlockingQueue.poll(TIMEOUT_BIND_SERVICE_SEC, TimeUnit.SECONDS); in getService()
/cts/tests/tests/app.usage/src/android/app/usage/cts/
DUsageStatsTest.java1802 private BlockingQueue<IBinder> mBlockingQueue = new LinkedBlockingQueue<>(); field in UsageStatsTest.TestServiceConnection
1805 mBlockingQueue.offer(service); in onServiceConnected()
1812 final IBinder service = mBlockingQueue.poll(TIMEOUT_BINDER_SERVICE_SEC, in getService()
/cts/tests/BlobStore/src/com/android/cts/blob/
DBlobStoreManagerTest.java1890 private final BlockingQueue<IBinder> mBlockingQueue = new LinkedBlockingQueue<>(); field in BlobStoreManagerTest.TestServiceConnection
1899 mBlockingQueue.offer(service); in onServiceConnected()
1907 final IBinder service = mBlockingQueue.poll(TIMEOUT_BIND_SERVICE_SEC, in getService()