Searched refs:used_buf_ (Results 1 – 2 of 2) sorted by relevance
102 used_buf_ = const_cast<char*>(slice_.data()); in TryGetFromPrefetchBuffer()116 used_buf_ = heap_buf_.get(); in TryGetCompressedBlockFromPersistentCache()135 used_buf_ = &stack_buf_[0]; in PrepareBufferForBlockFromFile()139 used_buf_ = compressed_buf_.get(); in PrepareBufferForBlockFromFile()143 used_buf_ = heap_buf_.get(); in PrepareBufferForBlockFromFile()168 assert(used_buf_ != heap_buf_.get()); in CopyBufferToHeap()170 memcpy(heap_buf_.get(), used_buf_, block_size_ + kBlockTrailerSize); in CopyBufferToHeap()174 if (slice_.data() != used_buf_) { in GetBlockContents()180 if (got_from_prefetch_buffer_ || used_buf_ == &stack_buf_[0]) { in GetBlockContents()182 } else if (used_buf_ == compressed_buf_.get()) { in GetBlockContents()[all …]
87 char* used_buf_ = nullptr; variable