Searched refs:printJobsForApp (Results 1 – 1 of 1) sorted by relevance
1775 List<PrintJobInfo> printJobsForApp = mPrintJobsForRunningApp.get(appId); in onPrintJobCreated() local1776 if (printJobsForApp == null) { in onPrintJobCreated()1777 printJobsForApp = new ArrayList<PrintJobInfo>(); in onPrintJobCreated()1778 mPrintJobsForRunningApp.put(appId, printJobsForApp); in onPrintJobCreated()1780 printJobsForApp.add(printJob); in onPrintJobCreated()1787 List<PrintJobInfo> printJobsForApp = mPrintJobsForRunningApp.get( in onPrintJobStateChanged() local1789 if (printJobsForApp == null) { in onPrintJobStateChanged()1792 final int printJobCount = printJobsForApp.size(); in onPrintJobStateChanged()1794 PrintJobInfo oldPrintJob = printJobsForApp.get(i); in onPrintJobStateChanged()1796 printJobsForApp.set(i, printJob); in onPrintJobStateChanged()[all …]