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

/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
H A DAvrcp.java194 private EvictingQueue<MediaKeyLog> mPassthroughLogs; // Passthorugh keys dispatched
195 private List<MediaKeyLog> mPassthroughPending; // Passthrough keys sent not dispatched yet
198 private class MediaKeyLog { class in class:Avrcp
204 MediaKeyLog(long time, KeyEvent event) { method in class:Avrcp.MediaKeyLog
326 mPassthroughLogs = new EvictingQueue<MediaKeyLog>(PASSTHROUGH_LOG_MAX_SIZE);
327 mPassthroughPending = Collections.synchronizedList(new ArrayList<MediaKeyLog>());
2601 for (MediaKeyLog log : mPassthroughLogs) {
2606 for (MediaKeyLog log : mPassthroughPending) {
2975 mPassthroughPending.add(new MediaKeyLog(System.currentTimeMillis(), event));
2983 Iterator<MediaKeyLog> pendin
[all...]

Completed in 40 milliseconds