Lines Matching refs:key

69   Status Put(ColumnFamilyHandle* column_family, const Slice& key,
71 Status Put(const Slice& key, const Slice& value) override { in Put() argument
72 return Put(nullptr, key, value); in Put()
78 Status Put(ColumnFamilyHandle* column_family, const SliceParts& key,
80 Status Put(const SliceParts& key, const SliceParts& value) override { in Put() argument
81 return Put(nullptr, key, value); in Put()
86 Status Delete(ColumnFamilyHandle* column_family, const Slice& key) override;
87 Status Delete(const Slice& key) override { return Delete(nullptr, key); } in Delete() argument
91 const SliceParts& key) override;
92 Status Delete(const SliceParts& key) override { return Delete(nullptr, key); } in Delete() argument
97 const Slice& key) override;
98 Status SingleDelete(const Slice& key) override { in SingleDelete() argument
99 return SingleDelete(nullptr, key); in SingleDelete()
104 const SliceParts& key) override;
105 Status SingleDelete(const SliceParts& key) override { in SingleDelete() argument
106 return SingleDelete(nullptr, key); in SingleDelete()
129 Status Merge(ColumnFamilyHandle* column_family, const Slice& key,
131 Status Merge(const Slice& key, const Slice& value) override { in Merge() argument
132 return Merge(nullptr, key, value); in Merge()
136 Status Merge(ColumnFamilyHandle* column_family, const SliceParts& key,
138 Status Merge(const SliceParts& key, const SliceParts& value) override { in Merge() argument
139 return Merge(nullptr, key, value); in Merge()
187 virtual Status PutCF(uint32_t column_family_id, const Slice& key, in PutCF() argument
193 Put(key, value); in PutCF()
201 virtual Status DeleteCF(uint32_t column_family_id, const Slice& key) { in DeleteCF() argument
203 Delete(key); in DeleteCF()
211 virtual Status SingleDeleteCF(uint32_t column_family_id, const Slice& key) { in SingleDeleteCF() argument
213 SingleDelete(key); in SingleDeleteCF()
227 virtual Status MergeCF(uint32_t column_family_id, const Slice& key, in MergeCF() argument
230 Merge(key, value); in MergeCF()