Searched refs:valueBytes (Results 1 – 2 of 2) sorted by relevance
116 auto *valueBytes = std::get_if<PublishedDataNode::BytesData>(&data); in MoveTo() local117 if (valueBytes != nullptr) { in MoveTo()118 return Base64::Decode(valueBytes->data); in MoveTo()130 auto *valueBytes = std::get_if<std::vector<uint8_t>>(&data); in MoveTo() local131 if (valueBytes != nullptr) { in MoveTo()132 std::string valueEncode = Base64::Encode(*valueBytes); in MoveTo()
65 std::vector<uint8_t> valueBytes = {value.begin(), value.end()}; in PutLocal() local67 auto status = kvStore_->PutLocal(keyBytes, valueBytes); in PutLocal()78 std::vector<uint8_t> valueBytes; in GetLocal() local80 DBStatus status = kvStore_->GetLocal(keyBytes, valueBytes); in GetLocal()85 if (valueBytes.empty()) { in GetLocal()89 value = {valueBytes.begin(), valueBytes.end()}; in GetLocal()96 std::vector<uint8_t> valueBytes; in DeleteLocal() local