Home | History | Annotate | Download | only in cloud_print

Lines Matching refs:printer_name

85       const std::string& printer_name,
87 virtual bool IsValidPrinter(const std::string& printer_name) OVERRIDE;
89 const std::string& printer_name,
92 virtual bool GetJobDetails(const std::string& printer_name,
97 const std::string& printer_name) OVERRIDE;
106 const std::string& printer_name,
110 bool GetPrinterInfo(const std::string& printer_name,
117 const std::string& printer_name,
160 const std::string& printer_name,
230 printers.push_back(it->printer_name);
251 const std::string& printer_name)
252 : printer_name_(printer_name),
347 std::string to_hash(info.printer_name);
382 const std::string& printer_name,
390 printer_name, job_title, tags, &dry_run);
500 printer_it->printer_name = MakeFullPrinterName(it->url,
501 printer_it->printer_name);
531 const std::string& printer_name,
534 bool succeeded = GetPrinterCapsAndDefaults(printer_name, &printer_info);
540 printer_name,
544 bool PrintSystemCUPS::IsValidPrinter(const std::string& printer_name) {
545 return GetPrinterInfo(printer_name, NULL);
549 const std::string& printer_name,
584 const std::string& printer_name,
589 FindServerByFullName(printer_name, &short_printer_name);
594 server_info->caps_cache.find(printer_name);
608 server_info->caps_cache[printer_name] = *printer_info;
612 bool PrintSystemCUPS::GetJobDetails(const std::string& printer_name,
620 FindServerByFullName(printer_name, &short_printer_name);
632 << ", printer name:" << printer_name
643 << ", printer name: " << printer_name;
677 << ", printer name: " << printer_name
682 << ", printer name: " << printer_name
689 bool PrintSystemCUPS::GetPrinterInfo(const std::string& printer_name,
694 << ", printer name: " << printer_name;
698 FindServerByFullName(printer_name, &short_printer_name);
705 if (it->printer_name == printer_name) {
721 const std::string& printer_name) {
723 DCHECK(!printer_name.empty());
724 return new PrinterWatcherCUPS(this, printer_name);
775 const std::string& printer_name,
780 VLOG(1) << "CP_CUPS: Spooling print job, printer name: " << printer_name;
784 FindServerByFullName(printer_name, &short_printer_name);
789 server_info->backend->GetPrinterDriverInfo(printer_name));
825 << ", printer name: " << printer_name
878 const std::string& printer_name,
880 callback.Run(succeeded, printer_name, printer_info);