Lines Matching refs:pos

47     bool getUint64(const std::unique_ptr<Item>& item, const uint32_t pos, T& value);
51 bool getSharedSecretParameters(const std::unique_ptr<Item>& item, const uint32_t pos,
53 bool getBinaryArray(const std::unique_ptr<Item>& item, const uint32_t pos, string& value);
55 bool getBinaryArray(const std::unique_ptr<Item>& item, const uint32_t pos,
58 bool getHardwareAuthToken(const std::unique_ptr<Item>& item, const uint32_t pos,
61 bool getKeyParameters(const std::unique_ptr<Item>& item, const uint32_t pos,
72 bool getTimeStampToken(const std::unique_ptr<Item>& item, const uint32_t pos,
75 bool getKeyCharacteristics(const std::unique_ptr<Item>& item, const uint32_t pos,
78 bool getCertificateChain(const std::unique_ptr<Item>& item, const uint32_t pos,
81 bool getMultiBinaryArray(const std::unique_ptr<Item>& item, const uint32_t pos,
86 bool getMapItem(const std::unique_ptr<Item>& item, const uint32_t pos,
89 bool getArrayItem(const std::unique_ptr<Item>& item, const uint32_t pos,
92 inline bool getErrorCode(const std::unique_ptr<Item>& item, const uint32_t pos, in getErrorCode() argument
95 if (!getUint64<uint64_t>(item, pos, errorVal)) { in getErrorCode()
124 inline void getItemAtPos(const unique_ptr<Item>& item, const uint32_t pos, in getItemAtPos() argument
132 if (arr->size() < (pos + 1)) { in getItemAtPos()
135 subItem = std::move((*arr)[pos]); in getItemAtPos()
158 bool CborConverter::getUint64(const unique_ptr<Item>& item, const uint32_t pos, T& value) { in getUint64() argument
160 getItemAtPos(item, pos, intItem); in getUint64()