Searched refs:printJobsForApp (Results 1 – 1 of 1) sorted by relevance
1762 List<PrintJobInfo> printJobsForApp = mPrintJobsForRunningApp.get(appId); in onPrintJobCreated() local1763 if (printJobsForApp == null) { in onPrintJobCreated()1764 printJobsForApp = new ArrayList<PrintJobInfo>(); in onPrintJobCreated()1765 mPrintJobsForRunningApp.put(appId, printJobsForApp); in onPrintJobCreated()1767 printJobsForApp.add(printJob); in onPrintJobCreated()1774 List<PrintJobInfo> printJobsForApp = mPrintJobsForRunningApp.get( in onPrintJobStateChanged() local1776 if (printJobsForApp == null) { in onPrintJobStateChanged()1779 final int printJobCount = printJobsForApp.size(); in onPrintJobStateChanged()1781 PrintJobInfo oldPrintJob = printJobsForApp.get(i); in onPrintJobStateChanged()1783 printJobsForApp.set(i, printJob); in onPrintJobStateChanged()[all …]