/external/chromium_org/printing/ |
printing_test.h | 25 wchar_t printer_name[MAX_PATH]; local 26 DWORD size = arraysize(printer_name); 27 BOOL result = ::GetDefaultPrinter(printer_name, &size); 36 return printer_name;
|
/external/chromium_org/chrome/service/cloud_print/ |
print_system_win.h | 20 virtual bool IsValidPrinter(const std::string& printer_name) OVERRIDE; 21 virtual bool GetJobDetails(const std::string& printer_name, 26 const std::string& printer_name) OVERRIDE; 29 std::string GetPrinterDriverInfo(const std::string& printer_name) const;
|
print_system_win.cc | 35 bool Start(const std::string& printer_name, Delegate* delegate) { 38 printer_info_ = print_backend->GetPrinterDriverInfo(printer_name); 46 if (!printer_name.empty()) { 47 printer_name_wide = UTF8ToWide(printer_name); 152 explicit PrinterWatcherWin(const std::string& printer_name) 153 : printer_name_(printer_name), 215 bool PrintSystemWin::IsValidPrinter(const std::string& printer_name) { 216 return print_backend_->IsValidPrinter(printer_name); 219 bool PrintSystemWin::GetJobDetails(const std::string& printer_name, 223 print_backend_->GetPrinterDriverInfo(printer_name)); [all...] |
print_system.h | 135 const std::string& printer_name, 173 const std::string& printer_name, 176 // Returns true if printer_name points to a valid printer. 177 virtual bool IsValidPrinter(const std::string& printer_name) = 0; 180 virtual bool ValidatePrintTicket(const std::string& printer_name, 184 virtual bool GetJobDetails(const std::string& printer_name, 192 const std::string& printer_name) = 0;
|
print_system_cups.cc | 85 const std::string& printer_name, 87 virtual bool IsValidPrinter(const std::string& printer_name) OVERRIDE; 89 const std::string& printer_name, 91 virtual bool GetJobDetails(const std::string& printer_name, 96 const std::string& printer_name) OVERRIDE; 104 const std::string& printer_name, 108 bool GetPrinterInfo(const std::string& printer_name, 115 const std::string& printer_name, 158 const std::string& printer_name, 228 printers.push_back(it->printer_name); [all...] |
print_system_xps_win.cc | 64 HRESULT PrintTicketToDevMode(const std::string& printer_name, 80 hr = printing::XPSModule::OpenProvider(UTF8ToWide(printer_name), 1, 111 const std::string& printer_name, 119 print_backend->GetPrinterDriverInfo(printer_name)); 121 print_data_mime_type, printer_name, job_title, 146 const std::string& printer_name, 152 print_backend->GetPrinterDriverInfo(printer_name)); 162 HRESULT hr = PrintTicketToDevMode(printer_name, print_ticket, 169 HDC dc = CreateDC(L"WINSPOOL", UTF8ToWide(printer_name).c_str(), 191 bool ret = PrintXPSDocument(printer_name, [all...] |
cloud_print_connector.cc | 115 if (settings_.ShouldConnect(it->printer_name)) 242 std::string printer_name; local 243 printer_data->GetString(kNameValue, &printer_name); 247 if (!settings_.ShouldConnect(printer_name)) { 248 VLOG(1) << "CP_CONNECTOR: Deleting " << printer_name << 251 } else if (RemovePrinterFromList(printer_name, &local_printers)) { 258 VLOG(1) << "CP_CONNECTOR: Deleting " << printer_name << 264 LOG(ERROR) << "CP_CONNECTOR: Printer: " << printer_name << 376 const std::string& printer_name, 380 if (IsSamePrinter(index->printer_name, printer_name)) [all...] |
connector_settings.h | 56 bool ShouldConnect(const std::string& printer_name) const;
|
job_status_updater.cc | 28 JobStatusUpdater::JobStatusUpdater(const std::string& printer_name, 35 printer_name_(printer_name),
|
cloud_print_connector.h | 90 virtual void OnPrinterDeleted(const std::string& printer_name) OVERRIDE; 147 bool RemovePrinterFromList(const std::string& printer_name, 166 const std::string& printer_name,
|
connector_settings.cc | 109 bool ConnectorSettings::ShouldConnect(const std::string& printer_name) const { 110 Printers::const_iterator printer = printers_.find(printer_name);
|
/external/chromium_org/printing/backend/ |
print_backend_chromeos.cc | 20 const std::string& printer_name, 23 const std::string& printer_name, 26 const std::string& printer_name) OVERRIDE; 27 virtual bool IsValidPrinter(const std::string& printer_name) OVERRIDE; 40 const std::string& printer_name, 47 const std::string& printer_name, 54 const std::string& printer_name) { 63 bool PrintBackendChromeOS::IsValidPrinter(const std::string& printer_name) {
|
print_backend.h | 27 std::string printer_name; member in struct:printing::PrinterBasicInfo 85 const std::string& printer_name, 90 const std::string& printer_name, 95 const std::string& printer_name) = 0; 97 // Returns true if printer_name points to a valid printer. 98 virtual bool IsValidPrinter(const std::string& printer_name) = 0;
|
print_backend_win.cc | 48 const std::string& printer_name, 51 const std::string& printer_name, 54 const std::string& printer_name) OVERRIDE; 55 virtual bool IsValidPrinter(const std::string& printer_name) OVERRIDE; 86 info.is_default = (info.printer_name == default_printer); 102 const std::string& printer_name, 105 if (!printer_handle.OpenPrinter(UTF8ToWide(printer_name).c_str())) { 114 DCHECK_EQ(info_5.get()->pPrinterName, UTF8ToUTF16(printer_name)); 164 const std::string& printer_name, 171 if (!IsValidPrinter(printer_name)) { [all...] |
print_backend_cups.cc | 114 const std::string& printer_name, 117 const std::string& printer_name, 120 const std::string& printer_name) OVERRIDE; 121 virtual bool IsValidPrinter(const std::string& printer_name) OVERRIDE; 174 printer_info.printer_name = printer.name; 221 const std::string& printer_name, 224 if (!GetPrinterCapsAndDefaults(printer_name, &info) ) 228 printer_name, info.printer_capabilities, printer_info); 232 const std::string& printer_name, 237 << ", printer name: " << printer_name; [all...] |
cups_helper.h | 40 const std::string& printer_name,
|
win_helper.cc | 20 typedef HRESULT (WINAPI* PTOpenProviderProc)(PCWSTR printer_name, 58 const LPCWSTR printer_name, 142 HRESULT XPSModule::OpenProvider(const base::string16& printer_name, 145 return g_open_provider_proc(printer_name.c_str(), version, provider); 260 const LPCWSTR printer_name, 270 return g_start_xps_print_job_proc(printer_name, 292 printer_info->printer_name = WideToUTF8(info_2.get()->pPrinterName);
|
/external/chromium_org/chrome/service/ |
service_utility_process_host.h | 66 const std::string& printer_name, 72 const std::string& printer_name) {} 105 bool StartGetPrinterCapsAndDefaults(const std::string& printer_name); 136 const std::string& printer_name, 138 void OnGetPrinterCapsAndDefaultsFailed(const std::string& printer_name);
|
service_utility_process_host.cc | 142 const std::string& printer_name) { 152 new ChromeUtilityMsg_GetPrinterCapsAndDefaults(printer_name)); 279 const std::string& printer_name, 291 printer_name, caps_and_defaults)); 295 const std::string& printer_name) { 306 printer_name));
|
/external/chromium_org/chrome/browser/ui/webui/print_preview/ |
print_preview_handler.cc | 289 std::string printer_name; local 292 // |it->printer_name| specifies the device name / printer queue name. 293 printer_name = it->printer_description; 295 printer_name = it->printer_name; 297 printer_info->SetString(printing::kSettingPrinterName, printer_name); 298 printer_info->SetString(printing::kSettingDeviceName, it->printer_name); 299 VLOG(1) << "Found printer " << printer_name 300 << " with device name " << it->printer_name; 314 const std::string& printer_name, 376 std::string printer_name; member in struct:PrintPreviewHandler::CUPSPrinterColorModels 739 std::string printer_name; local 874 std::string printer_name; local [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/command/ |
pretty_printers.py | 111 def printer_name(printer): member in class:InfoPrettyPrinter 129 cmp(self.printer_name(x), 130 self.printer_name(y))) 132 name = self.printer_name(printer) 140 cmp(self.printer_name(x), 141 self.printer_name(y)))
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/command/ |
pretty_printers.py | 111 def printer_name(printer): member in class:InfoPrettyPrinter 129 cmp(self.printer_name(x), 130 self.printer_name(y))) 132 name = self.printer_name(printer) 140 cmp(self.printer_name(x), 141 self.printer_name(y)))
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/command/ |
pretty_printers.py | 111 def printer_name(printer): member in class:InfoPrettyPrinter 129 cmp(self.printer_name(x), 130 self.printer_name(y))) 132 name = self.printer_name(printer) 140 cmp(self.printer_name(x), 141 self.printer_name(y)))
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/command/ |
pretty_printers.py | 111 def printer_name(printer): member in class:InfoPrettyPrinter 129 cmp(self.printer_name(x), 130 self.printer_name(y))) 132 name = self.printer_name(printer) 140 cmp(self.printer_name(x), 141 self.printer_name(y)))
|
/external/chromium/chrome/browser/ui/webui/ |
print_preview_handler.cc | 105 printers->Append(new StringValue(index->printer_name)); 126 void GetPrinterCapabilities(const std::string& printer_name) { 129 if (!print_backend_->GetPrinterCapsAndDefaults(printer_name, 299 std::string printer_name; local 300 bool ret = args->GetString(0, &printer_name); 301 if (!ret || printer_name.empty()) 311 printer_name));
|