Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
DNotificationPlayer.java59 private LinkedList<Command> mCmdQueue = new LinkedList(); field in NotificationPlayer
176 synchronized (mCmdQueue) { in run()
178 cmd = mCmdQueue.removeFirst(); in run()
212 synchronized (mCmdQueue) { in run()
213 if (mCmdQueue.size() == 0) { in run()
238 synchronized (mCmdQueue) { in onCompletion()
239 if (mCmdQueue.size() == 0) { in onCompletion()
306 synchronized (mCmdQueue) { in play()
333 synchronized (mCmdQueue) { in play()
344 synchronized (mCmdQueue) { in stop()
[all …]
/frameworks/base/media/java/android/media/
DAsyncPlayer.java51 private final LinkedList<Command> mCmdQueue = new LinkedList(); field in AsyncPlayer
88 synchronized (mCmdQueue) { in run()
90 cmd = mCmdQueue.removeFirst(); in run()
114 synchronized (mCmdQueue) { in run()
115 if (mCmdQueue.size() == 0) { in run()
203 synchronized (mCmdQueue) { in play()
214 synchronized (mCmdQueue) { in stop()
228 mCmdQueue.add(cmd); in enqueueLocked()