Home
last modified time | relevance | path

Searched refs:propertyKeyList (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/base/print/print_fwk/frameworks/ohprint/src/
H A Dprint_capi.cpp313 … const char *printerId, const Print_StringList *propertyKeyList, Print_PropertyList *propertyList) in OH_Print_QueryPrinterProperties() argument
315 if (printerId == nullptr || propertyKeyList == nullptr || propertyKeyList->list == nullptr || in OH_Print_QueryPrinterProperties()
321 for (uint32_t i = 0; i < propertyKeyList->count; i++) { in OH_Print_QueryPrinterProperties()
322 if (propertyKeyList->list[i] == nullptr) { in OH_Print_QueryPrinterProperties()
325 std::string key(propertyKeyList->list[i]); in OH_Print_QueryPrinterProperties()
380 …e OH_Print_RestorePrinterProperties(const char *printerId, const Print_StringList *propertyKeyList) in OH_Print_RestorePrinterProperties() argument
/ohos5.0/base/print/print_fwk/services/print_service/src/
H A Dvendor_bsuni_driver.cpp359 Print_StringList propertyKeyList = { 0 }; in OnQueryProperties() local
360 if (ConvertStringVectorToStringList(propertyKeys, propertyKeyList)) { in OnQueryProperties()
361 int32_t result = vendorExtension->onQueryProperties(printerId.c_str(), &propertyKeyList); in OnQueryProperties()
367 ReleaseStringList(propertyKeyList); in OnQueryProperties()
/ohos5.0/base/print/print_fwk/frameworks/ohprint/include/
H A Dohprint.h736 …ode OH_Print_QueryPrinterProperties(const char *printerId, const Print_StringList *propertyKeyList,
774 … OH_Print_RestorePrinterProperties(const char *printerId, const Print_StringList *propertyKeyList);
H A Dvendor_extension.h106 int32_t (*onQueryProperties)(const char *printerId, const Print_StringList *propertyKeyList);
/ohos5.0/base/print/print_fwk/test/unittest/fwk_vendor_manager_test/
H A Dvendor_bsuni_driver_test.cpp93 int32_t OnQueryPropertiesTest(const char *printerId, const Print_StringList *propertyKeyList) in OnQueryPropertiesTest() argument
96 return g_mockDriver->OnQueryProperties(printerId, propertyKeyList); in OnQueryPropertiesTest()