Searched refs:max_bytes (Results 1 – 6 of 6) sorted by relevance
| /rocksdb-6.9/include/rocksdb/ |
| D | write_batch.h | 63 explicit WriteBatch(size_t reserved_bytes = 0, size_t max_bytes = 0); 64 explicit WriteBatch(size_t reserved_bytes, size_t max_bytes, size_t ts_sz); 339 void SetMaxBytes(size_t max_bytes) override { max_bytes_ = max_bytes; } in SetMaxBytes() argument
|
| D | write_batch_base.h | 124 virtual void SetMaxBytes(size_t max_bytes) = 0;
|
| /rocksdb-6.9/utilities/write_batch_with_index/ |
| D | write_batch_with_index_internal.h | 88 explicit ReadableWriteBatch(size_t reserved_bytes = 0, size_t max_bytes = 0) 89 : WriteBatch(reserved_bytes, max_bytes) {} in WriteBatch() argument
|
| D | write_batch_with_index.cc | 436 size_t max_bytes = 0, bool _overwrite_key = false) in Rep() 437 : write_batch(reserved_bytes, max_bytes), in Rep() 635 bool overwrite_key, size_t max_bytes) in WriteBatchWithIndex() argument 636 : rep(new Rep(default_index_comparator, reserved_bytes, max_bytes, in WriteBatchWithIndex() 1057 void WriteBatchWithIndex::SetMaxBytes(size_t max_bytes) { in SetMaxBytes() argument 1058 rep->write_batch.SetMaxBytes(max_bytes); in SetMaxBytes()
|
| /rocksdb-6.9/include/rocksdb/utilities/ |
| D | write_batch_with_index.h | 100 size_t max_bytes = 0); 251 void SetMaxBytes(size_t max_bytes) override;
|
| /rocksdb-6.9/db/ |
| D | write_batch.cc | 246 WriteBatch::WriteBatch(size_t reserved_bytes, size_t max_bytes) in WriteBatch() argument 247 : content_flags_(0), max_bytes_(max_bytes), rep_(), timestamp_size_(0) { in WriteBatch() 254 WriteBatch::WriteBatch(size_t reserved_bytes, size_t max_bytes, size_t ts_sz) in WriteBatch() argument 255 : content_flags_(0), max_bytes_(max_bytes), rep_(), timestamp_size_(ts_sz) { in WriteBatch()
|