Home
last modified time | relevance | path

Searched refs:max_bytes_ (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/db/
Dwrite_batch_internal.h232 if (batch_->max_bytes_ && batch_->rep_.size() > batch_->max_bytes_) { in commit()
Dwrite_batch.cc247 : content_flags_(0), max_bytes_(max_bytes), rep_(), timestamp_size_(0) { in WriteBatch()
255 : content_flags_(0), max_bytes_(max_bytes), rep_(), timestamp_size_(ts_sz) { in WriteBatch()
263 max_bytes_(0), in WriteBatch()
269 max_bytes_(0), in WriteBatch()
276 max_bytes_(src.max_bytes_), in WriteBatch()
289 max_bytes_(src.max_bytes_), in WriteBatch()
/rocksdb-6.9/include/rocksdb/
Dwrite_batch.h339 void SetMaxBytes(size_t max_bytes) override { max_bytes_ = max_bytes; } in SetMaxBytes()
362 size_t max_bytes_; variable