HomeSort by relevance Sort by last modified time
    Searched refs:mJobQueue (Results 1 - 2 of 2) sorted by null

  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
DispatchThread.java 32 private final Queue<Runnable> mJobQueue;
39 mJobQueue = new LinkedList<Runnable>();
55 synchronized (mJobQueue) {
56 if (mJobQueue.size() == MAX_MESSAGE_QUEUE_LENGTH) {
60 mJobQueue.add(job);
61 mJobQueue.notifyAll();
98 synchronized(mJobQueue) {
99 mJobQueue.notifyAll();
113 synchronized (mJobQueue) {
114 while (mJobQueue.size() == 0 && !isEnded())
    [all...]
  /packages/services/BuiltInPrintService/src/com/android/bips/
BuiltInPrintService.java 63 private JobQueue mJobQueue;
110 mJobQueue = new JobQueue();
137 mJobQueue.print(new LocalPrintJob(this, mBackend, printJob));
143 mJobQueue.cancel(printJob.getId());

Completed in 97 milliseconds