Lines Matching refs:getUint64
207 auto optValue = getUint64(pair.first); in getKeyParameter()
230 if (!(optValue = getUint64(pair.second))) { in getKeyParameter()
240 if (!(optValue = getUint64(pair.second))) { in getKeyParameter()
250 if (!(optValue = getUint64(pair.second))) { in getKeyParameter()
265 if (!(optValue = getUint64(item))) { in getKeyParameter()
281 if (!(optValue = getUint64(item))) { in getKeyParameter()
292 if (!(optValue = getUint64(pair.second))) { in getKeyParameter()
302 if (!(optValue = getUint64(pair.second))) { in getKeyParameter()
431 auto optChallenge = getUint64(item, pos); in getTimeStampToken()
432 auto optTimestampMillis = getUint64(item, pos + 1); in getTimeStampToken()
498 auto optErrorVal = getUint64(item, pos); in getErrorCode()
505 std::optional<uint64_t> CborConverter::getUint64(const unique_ptr<Item>& item) { in getUint64() function in keymint::javacard::CborConverter
513 std::optional<uint64_t> CborConverter::getUint64(const unique_ptr<Item>& item, const uint32_t pos) { in getUint64() function in keymint::javacard::CborConverter
518 return getUint64(intItem.value()); in getUint64()