Home
last modified time | relevance | path

Searched refs:backing_store_ (Results 1 – 2 of 2) sorted by relevance

/rocksdb-6.9/db/
Dlog_reader.cc33 backing_store_(new char[kBlockSize]), in Reader()
44 delete[] backing_store_; in ~Reader()
230 if (buffer_.data() != backing_store_ + consumed_bytes) { in UnmarkEOFInternal()
233 memmove(backing_store_ + consumed_bytes, buffer_.data(), buffer_.size()); in UnmarkEOFInternal()
238 backing_store_ + eof_offset_); in UnmarkEOFInternal()
252 if (read_buffer.data() != backing_store_ + eof_offset_) { in UnmarkEOFInternal()
254 memmove(backing_store_ + eof_offset_, read_buffer.data(), in UnmarkEOFInternal()
258 buffer_ = Slice(backing_store_ + consumed_bytes, in UnmarkEOFInternal()
283 Status status = file_->Read(kBlockSize, &buffer_, backing_store_); in ReadMore()
513 Status status = file_->Read(kBlockSize, &buffer_, backing_store_); in TryReadMore()
Dlog_reader.h105 char* const backing_store_; variable