HomeSort by relevance Sort by last modified time
    Searched refs:printer_name (Results 1 - 25 of 53) sorted by null

1 2 3

  /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/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_cups.cc 40 const std::string& printer_name,
43 const std::string& printer_name,
46 const std::string& printer_name) OVERRIDE;
47 virtual bool IsValidPrinter(const std::string& printer_name) OVERRIDE;
100 printer_info.printer_name = printer.name;
147 const std::string& printer_name,
150 if (!GetPrinterCapsAndDefaults(printer_name, &info) )
154 printer_name, info.printer_capabilities, printer_info);
158 const std::string& printer_name,
163 << ", printer name: " << printer_name;
    [all...]
print_backend.h 28 std::string printer_name; member in struct:printing::PrinterBasicInfo
97 const std::string& printer_name,
102 const std::string& printer_name,
107 const std::string& printer_name) = 0;
109 // Returns true if printer_name points to a valid printer.
110 virtual bool IsValidPrinter(const std::string& printer_name) = 0;
cups_helper.h 40 const std::string& printer_name,
print_backend_win.cc 163 const std::string& printer_name,
166 const std::string& printer_name,
169 const std::string& printer_name) OVERRIDE;
170 virtual bool IsValidPrinter(const std::string& printer_name) OVERRIDE;
201 info.is_default = (info.printer_name == default_printer);
217 const std::string& printer_name,
220 if (!printer_handle.OpenPrinter(base::UTF8ToWide(printer_name).c_str())) {
230 DCHECK_EQ(name, base::UTF8ToUTF16(printer_name));
288 const std::string& printer_name,
295 if (!IsValidPrinter(printer_name)) {
    [all...]
win_helper.cc 24 typedef HRESULT (WINAPI* PTOpenProviderProc)(PCWSTR printer_name,
62 const LPCWSTR printer_name,
182 HRESULT XPSModule::OpenProvider(const base::string16& printer_name,
185 return g_open_provider_proc(printer_name.c_str(), version, provider);
300 const LPCWSTR printer_name,
310 return g_start_xps_print_job_proc(printer_name,
332 printer_info->printer_name = base::WideToUTF8(info_2.get()->pPrinterName);
389 const base::string16& printer_name,
399 if (!printer.OpenPrinter(printer_name.c_str()))
408 hr = printing::XPSModule::OpenProvider(printer_name, 1, &provider)
    [all...]
win_helper.h 98 static HRESULT OpenProvider(const base::string16& printer_name,
153 const LPCWSTR printer_name,
174 const base::string16& printer_name,
181 const base::string16& printer_name,
  /external/chromium_org/chrome/service/
service_utility_process_host.h 67 const std::string& printer_name,
74 const std::string& printer_name,
108 bool StartGetPrinterCapsAndDefaults(const std::string& printer_name);
114 bool StartGetPrinterSemanticCapsAndDefaults(const std::string& printer_name);
147 const std::string& printer_name,
149 void OnGetPrinterCapsAndDefaultsFailed(const std::string& printer_name);
151 const std::string& printer_name,
154 const std::string& printer_name);
service_utility_process_host.cc 129 const std::string& printer_name) {
140 new ChromeUtilityMsg_GetPrinterCapsAndDefaults(printer_name));
144 const std::string& printer_name) {
155 new ChromeUtilityMsg_GetPrinterSemanticCapsAndDefaults(printer_name));
307 const std::string& printer_name,
319 printer_name, caps_and_defaults));
323 const std::string& printer_name,
335 true, printer_name, caps_and_defaults));
339 const std::string& printer_name) {
350 printer_name, printing::PrinterCapsAndDefaults()))
    [all...]
  /external/chromium_org/chrome/service/cloud_print/
cdd_conversion_win.h 19 const base::string16& printer_name,
print_system.h 136 const std::string& printer_name,
174 const std::string& printer_name,
177 // Returns true if printer_name points to a valid printer.
178 virtual bool IsValidPrinter(const std::string& printer_name) = 0;
182 const std::string& printer_name,
187 virtual bool GetJobDetails(const std::string& printer_name,
195 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,
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);
    [all...]
print_system_win.cc 53 bool Start(const std::string& printer_name, Delegate* delegate) {
56 printer_info_ = print_backend->GetPrinterDriverInfo(printer_name);
64 if (!printer_name.empty()) {
65 printer_name_wide = base::UTF8ToWide(printer_name);
170 explicit PrinterWatcherWin(const std::string& printer_name)
171 : printer_name_(printer_name),
227 const std::string& printer_name,
235 print_backend->GetPrinterDriverInfo(printer_name));
238 printer_name, job_title, delegate);
263 const std::string& 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),
cdd_conversion_win.cc 19 const base::string16& printer_name,
29 if (!printer.OpenPrinter(printer_name.c_str()))
36 dev_mode = CreateDevModeWithColor(printer, printer_name, is_color);
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,
  /external/chromium_org/chrome/utility/
printing_handler.h 70 void OnGetPrinterCapsAndDefaults(const std::string& printer_name);
71 void OnGetPrinterSemanticCapsAndDefaults(const std::string& printer_name);
printing_handler.cc 500 const std::string& printer_name) {
506 print_backend->GetPrinterDriverInfo(printer_name));
508 if (print_backend->GetPrinterCapsAndDefaults(printer_name, &printer_info)) {
510 printer_name, printer_info));
513 printer_name));
519 const std::string& printer_name) {
525 print_backend->GetPrinterDriverInfo(printer_name));
527 if (print_backend->GetPrinterSemanticCapsAndDefaults(printer_name,
530 printer_name, printer_info));
533 printer_name));
    [all...]
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.8/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/mips/mipsel-linux-android-4.8/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/mips/mips64el-linux-android-4.8/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/mips/mipsel-linux-android-4.8/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)))

Completed in 224 milliseconds

1 2 3