Home | History | Annotate | Download | only in camera

Lines Matching defs:mQueue

37     private final ArrayList<WorkItem> mQueue = new ArrayList<WorkItem>();
54 synchronized (mQueue) {
56 mQueue.add(w);
57 mQueue.notifyAll();
62 synchronized (mQueue) {
65 mQueue.remove(index);
73 // The caller should hold mQueue lock.
75 for (int i = 0; i < mQueue.size(); i++) {
76 if (mQueue.get(i).mImage == image) {
85 synchronized (mQueue) {
86 int n = mQueue.size();
89 tags[i] = mQueue.get(i).mTag;
91 mQueue.clear();
121 synchronized (mQueue) {
125 if (!mQueue.isEmpty()) {
126 workItem = mQueue.remove(0);
129 mQueue.wait();
159 synchronized (mQueue) {
161 mQueue.notifyAll();