Searched defs:mDeviceQueue (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DRemoteDevices.java50 private Queue<String> mDeviceQueue; field in class:RemoteDevices
57 mDeviceQueue = new LinkedList<String>();
68 if (mDeviceQueue != null)
69 mDeviceQueue.clear();
99 mDeviceQueue.offer(key);
100 if (mDeviceQueue.size() > MAX_DEVICE_QUEUE_SIZE) {
101 String deleteKey = mDeviceQueue.poll();

Completed in 27 milliseconds