Home
last modified time | relevance | path

Searched refs:supportedDuplexModeList (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/base/print/print_fwk/frameworks/models/print_models/src/
H A Dprinter_capability.cpp208 void PrinterCapability::GetSupportedDuplexMode(std::vector<uint32_t> &supportedDuplexModeList) const in GetSupportedDuplexMode()
210supportedDuplexModeList.assign(supportedDuplexModeList_.begin(), supportedDuplexModeList_.end()); in GetSupportedDuplexMode()
239 void PrinterCapability::SetSupportedDuplexMode(const std::vector<uint32_t> &supportedDuplexModeList) in SetSupportedDuplexMode() argument
242 supportedDuplexModeList_.assign(supportedDuplexModeList.begin(), supportedDuplexModeList.end()); in SetSupportedDuplexMode()
/ohos5.0/base/print/print_fwk/frameworks/models/print_models/include/
H A Dprinter_capability.h75 void GetSupportedDuplexMode(std::vector<uint32_t>& supportedDuplexModeList) const;
95 void SetSupportedDuplexMode(const std::vector<uint32_t>& supportedDuplexModeList);
/ohos5.0/base/print/print_fwk/frameworks/helper/print_helper/src/
H A Dprinter_capability_helper.cpp148 std::vector<uint32_t> supportedDuplexModeList; in CreateSupportedDuplexModeList() local
149 cap.GetSupportedDuplexMode(supportedDuplexModeList); in CreateSupportedDuplexModeList()
150 uint32_t arrLength = static_cast<uint32_t>(supportedDuplexModeList.size()); in CreateSupportedDuplexModeList()
152 napi_value value = NapiPrintUtils::CreateUint32(env, supportedDuplexModeList[index]); in CreateSupportedDuplexModeList()
/ohos5.0/base/print/print_fwk/services/print_service/src/
H A Dprint_system_data.cpp409 std::vector<uint32_t> supportedDuplexModeList; in ConvertSupportedDuplexModeToJson() local
410 printerCapability.GetSupportedDuplexMode(supportedDuplexModeList); in ConvertSupportedDuplexModeToJson()
411 for (auto iter : supportedDuplexModeList) { in ConvertSupportedDuplexModeToJson()