Home
last modified time | relevance | path

Searched refs:QueryDiscoveredPrinterInfoById (Results 1 – 16 of 16) sorted by relevance

/ohos5.0/base/print/print_fwk/test/unittest/fwk_vendor_manager_test/
H A Dvendor_ppd_driver_test.cpp80 EXPECT_CALL(mock, QueryDiscoveredPrinterInfoById(_, _)).WillOnce(Return(nullptr))
98 …EXPECT_CALL(mock, QueryDiscoveredPrinterInfoById(_, _)).WillRepeatedly(Return(std::make_shared<Pri…
116 …EXPECT_CALL(mock, QueryDiscoveredPrinterInfoById(_, _)).WillRepeatedly(Return(std::make_shared<Pri…
134 …EXPECT_CALL(mock, QueryDiscoveredPrinterInfoById(_, _)).WillRepeatedly(Return(std::make_shared<Pri…
155 …EXPECT_CALL(mock, QueryDiscoveredPrinterInfoById(_, _)).WillRepeatedly(Return(std::make_shared<Pri…
/ohos5.0/base/print/print_fwk/services/print_service/src/
H A Dvendor_wlan_group.cpp49 …auto printerInfo = parentVendorManager->QueryDiscoveredPrinterInfoById(GetVendorName(), printerId); in OnQueryCapability()
62 …auto printerInfo = parentVendorManager->QueryDiscoveredPrinterInfoById(GetVendorName(), printerId); in OnQueryCapability()
203 …auto printerInfo = parentVendorManager->QueryDiscoveredPrinterInfoById(GetVendorName(), printerId); in IsBsunidriverSupport()
H A Dprint_service_ability.cpp370 if (printSystemData_.QueryDiscoveredPrinterInfoById(printerId) == nullptr) { in ConnectPrinter()
397 if (printSystemData_.QueryDiscoveredPrinterInfoById(printerId) == nullptr) { in DisconnectPrinter()
1249 auto printerInfo = printSystemData_.QueryDiscoveredPrinterInfoById(printerId); in UpdateQueuedJobList()
1811 auto printerInfo = printSystemData_.QueryDiscoveredPrinterInfoById(printerId); in ReportHisysEvent()
1914 auto printerInfo = printSystemData_.QueryDiscoveredPrinterInfoById(printerId); in RequestPreview()
1939 auto printerInfo = printSystemData_.QueryDiscoveredPrinterInfoById(printerId); in QueryPrinterCapability()
2929 printerInfo = printSystemData_.QueryDiscoveredPrinterInfoById(printerExtId); in RemovePrinterFromDiscovery()
3136 auto printerInfo = printSystemData_.QueryDiscoveredPrinterInfoById(printExtId); in UpdateSinglePrinterInfo()
3162 auto printerInfo = printSystemData_.QueryDiscoveredPrinterInfoById(printerId); in RemoveSinglePrinterInfo()
3615 return printSystemData_.QueryDiscoveredPrinterInfoById(printerId); in QueryDiscoveredPrinterInfoById()
[all …]
H A Dvendor_ppd_driver.cpp102 QueryDiscoveredPrinterInfoById(GetVendorName(), printerId); in AddPrinterToCups()
H A Dvendor_manager.cpp550 std::shared_ptr<PrinterInfo> VendorManager::QueryDiscoveredPrinterInfoById(const std::string &vendo… in QueryDiscoveredPrinterInfoById() function in VendorManager
555 return printServiceAbility->QueryDiscoveredPrinterInfoById(globalPrinterId); in QueryDiscoveredPrinterInfoById()
H A Dvendor_ipp_everywhere.cpp146 auto discoveredInfo = vendorManager->QueryDiscoveredPrinterInfoById(GetVendorName(), printerId); in ConnectPrinter()
H A Dprint_system_data.cpp803 std::shared_ptr<PrinterInfo> PrintSystemData::QueryDiscoveredPrinterInfoById(const std::string &pri… in QueryDiscoveredPrinterInfoById() function in OHOS::Print::PrintSystemData
H A Dprint_cups_client.cpp1551 if (param->serviceAbility->QueryDiscoveredPrinterInfoById(printerId) == nullptr) { in CheckPrinterOnline()
/ohos5.0/base/print/print_fwk/services/print_service/include/
H A Dvendor_manager.h44 …virtual std::shared_ptr<PrinterInfo> QueryDiscoveredPrinterInfoById(const std::string &printerId) …
85 std::shared_ptr<PrinterInfo> QueryDiscoveredPrinterInfoById(const std::string &vendorName,
H A Dvendor_driver_base.h62 … virtual std::shared_ptr<PrinterInfo> QueryDiscoveredPrinterInfoById(const std::string &vendorName,
H A Dprint_system_data.h64 std::shared_ptr<PrinterInfo> QueryDiscoveredPrinterInfoById(const std::string &printerId);
H A Dprint_service_ability.h212 …std::shared_ptr<PrinterInfo> QueryDiscoveredPrinterInfoById(const std::string &printerId) override;
/ohos5.0/base/print/print_fwk/test/unittest/fwk_vendor_manager_test/mock/
H A Dmock_print_service_ability.h36 … MOCK_METHOD1(QueryDiscoveredPrinterInfoById, std::shared_ptr<PrinterInfo> (const std::string &));
H A Dmock_vendor_manager.h38 MOCK_METHOD2(QueryDiscoveredPrinterInfoById, std::shared_ptr<PrinterInfo> (const std::string &,
/ohos5.0/base/print/print_fwk/test/unittest/service_test/
H A Dprint_system_data_test.cpp1162 auto discoveredPrinter = systemData->QueryDiscoveredPrinterInfoById(printerId1);
1164 discoveredPrinter = systemData->QueryDiscoveredPrinterInfoById(printerId2);
/ohos5.0/base/print/print_fwk/test/unittest/fwk_print_service_ability_test/
H A Dprint_service_ability_test.cpp597 EXPECT_EQ(service->printSystemData_.QueryDiscoveredPrinterInfoById(printerId), info);