Searched refs:makeModel (Results 1 – 8 of 8) sorted by relevance
/ohos5.0/base/print/print_fwk/test/unittest/fwk_print_cups_client_test/ |
H A D | print_cups_wrapper_test.cpp | 200 std::string makeModel = "testmodel"; variable 202 printCupsClient.QueryPPDInformation(makeModel.c_str(), ppds); 240 std::string makeModel = "testmodel"; variable 241 printCupsClient.AddPrinterToCups(uri, name, makeModel);
|
/ohos5.0/base/print/print_fwk/services/print_service/src/ |
H A D | print_cups_client.cpp | 448 void PrintCupsClient::QueryPPDInformation(const char *makeModel, std::vector<std::string> &ppds) in QueryPPDInformation() argument 463 if (makeModel) { in QueryPPDInformation() 464 … ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_TEXT, "ppd-make-and-model", nullptr, makeModel); in QueryPPDInformation() 1133 PRINT_HILOGD("makeModel=%{private}s", makeModel); in CheckPrinterMakeModel() 1134 if (makeModel != nullptr && strcmp(makeModel, "Local Raw Printer") != 0) { in CheckPrinterMakeModel() 1803 … const char *makeModel = cupsGetOption("printer-make-and-model", dest->num_options, dest->options); in IsPrinterExist() local 1804 if (makeModel == nullptr) { in IsPrinterExist() 1808 PRINT_HILOGD("makeModel=%{private}s", makeModel); in IsPrinterExist() 1818 printerExist = (strstr(makeModel, DEFAULT_MAKE_MODEL.c_str()) != nullptr) || in IsPrinterExist() 1819 (strstr(makeModel, REMOTE_PRINTER_MAKE_MODEL.c_str()) != nullptr); in IsPrinterExist() [all …]
|
H A D | vendor_manager.cpp | 570 bool VendorManager::QueryPPDInformation(const char *makeModel, std::vector<std::string> &ppds) in QueryPPDInformation() argument 576 return printServiceAbility->QueryPPDInformation(makeModel, ppds); in QueryPPDInformation()
|
H A D | print_service_ability.cpp | 2970 bool PrintServiceAbility::QueryPPDInformation(const char *makeModel, std::vector<std::string> &ppds) in QueryPPDInformation() argument 2972 DelayedSingleton<PrintCupsClient>::GetInstance()->QueryPPDInformation(makeModel, ppds); in QueryPPDInformation()
|
/ohos5.0/base/print/print_fwk/services/print_service/include/ |
H A D | vendor_manager.h | 46 virtual bool QueryPPDInformation(const char *makeModel, std::vector<std::string> &ppds) = 0; 89 bool QueryPPDInformation(const char *makeModel, std::vector<std::string> &ppds) override;
|
H A D | vendor_driver_base.h | 66 virtual bool QueryPPDInformation(const char *makeModel, std::vector<std::string> &ppds) = 0;
|
H A D | print_cups_client.h | 83 void QueryPPDInformation(const char *makeModel, std::vector<std::string> &ppds);
|
H A D | print_service_ability.h | 114 bool QueryPPDInformation(const char *makeModel, std::vector<std::string> &ppds) override;
|