Lines Matching refs:RowValue
205 RowValue::RowValue(int32_t local_deletion_time, int64_t marked_for_delete_at) in RowValue() function in ROCKSDB_NAMESPACE::cassandra::RowValue
210 RowValue::RowValue(Columns columns, in RowValue() function in ROCKSDB_NAMESPACE::cassandra::RowValue
216 std::size_t RowValue::Size() const { in Size()
225 int64_t RowValue::LastModifiedTime() const { in LastModifiedTime()
233 bool RowValue::IsTombstone() const { in IsTombstone()
237 void RowValue::Serialize(std::string* dest) const { in Serialize()
245 RowValue RowValue::RemoveExpiredColumns(bool* changed) const { in RemoveExpiredColumns()
261 return RowValue(std::move(new_columns), last_modified_time_); in RemoveExpiredColumns()
264 RowValue RowValue::ConvertExpiredColumnsToTombstones(bool* changed) const { in ConvertExpiredColumnsToTombstones()
281 return RowValue(std::move(new_columns), last_modified_time_); in ConvertExpiredColumnsToTombstones()
284 RowValue RowValue::RemoveTombstones(int32_t gc_grace_period) const { in RemoveTombstones()
298 return RowValue(std::move(new_columns), last_modified_time_); in RemoveTombstones()
301 bool RowValue::Empty() const { in Empty()
305 RowValue RowValue::Deserialize(const char *src, std::size_t size) { in Deserialize()
315 return RowValue(local_deletion_time, marked_for_delete_at); in Deserialize()
330 return RowValue(std::move(columns), last_modified_time); in Deserialize()
338 RowValue RowValue::Merge(std::vector<RowValue>&& values) { in Merge()
347 [](const RowValue& r1, const RowValue& r2) { in Merge()
386 return RowValue(std::move(columns), last_modified_time); in Merge()