Searched refs:LocalPrinter (Results 1 – 2 of 2) sorted by relevance
52 private final Map<PrinterId, LocalPrinter> mPrinters = new HashMap<>();82 for (LocalPrinter printer : mPrinters.values()) { in onStartPrinterDiscovery()119 LocalPrinter localPrinter = mPrinters.get(printerId); in onStartPrinterStateTracking()132 LocalPrinter localPrinter = mPrinters.get(printerId); in onStopPrinterStateTracking()157 LocalPrinter localPrinter = mPrinters.computeIfAbsent(printerId, in onPrinterFound()158 id -> new LocalPrinter(mPrintService, this, discoveredPrinter)); in onPrinterFound()176 LocalPrinter localPrinter = mPrinters.get(printerId); in onPrinterLost()193 for (LocalPrinter localPrinter : mPrinters.values()) { in monitorExpiredPrinters()214 void handlePrinter(LocalPrinter localPrinter) { in handlePrinter()267 private boolean isHandledByOtherService(LocalPrinter printer) { in isHandledByOtherService()[all …]
40 class LocalPrinter implements CapabilitiesCache.OnLocalPrinterCapabilities { class41 private static final String TAG = LocalPrinter.class.getSimpleName();54 LocalPrinter(BuiltInPrintService printService, LocalDiscoverySession session, in LocalPrinter() method in LocalPrinter