Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/btservice/
DAdapterService.java244 private final ArrayDeque<IBluetoothOobDataCallback> mOobDataCallbackQueue = new ArrayDeque<>(); field in AdapterService
4877 if (mOobDataCallbackQueue.peek() != null) { in generateLocalOobData()
4885 mOobDataCallbackQueue.offer(callback); in generateLocalOobData()
4897 if (mOobDataCallbackQueue.peek() == callback) { in removeFromOobDataCallbackQueue()
4899 mOobDataCallbackQueue.poll().onError(BluetoothStatusCodes.ERROR_UNKNOWN); in removeFromOobDataCallbackQueue()
4907 if (mOobDataCallbackQueue.peek() == null) { in notifyOobDataCallback()
4913 mOobDataCallbackQueue.poll().onError(BluetoothStatusCodes.ERROR_UNKNOWN); in notifyOobDataCallback()
4919 mOobDataCallbackQueue.poll().onOobData(transport, oobData); in notifyOobDataCallback()