Lines Matching refs:level
120 void Reserve(int level, size_t size) { files_[level].reserve(size); } in Reserve() argument
122 void AddFile(int level, FileMetaData* f, Logger* info_log = nullptr);
213 int level, const InternalKey* begin, // nullptr means before all keys
224 int level, const InternalKey* begin, // nullptr means before all keys
232 int level, // level > 0
246 bool OverlapInLevel(int level, const Slice* smallest_user_key,
254 int level);
273 int NumLevelFiles(int level) const { in NumLevelFiles() argument
275 return static_cast<int>(files_[level].size()); in NumLevelFiles()
279 uint64_t NumLevelBytes(int level) const;
282 const std::vector<FileMetaData*>& LevelFiles(int level) const { in LevelFiles() argument
283 return files_[level]; in LevelFiles()
290 const ROCKSDB_NAMESPACE::LevelFilesBrief& LevelFilesBrief(int level) const { in LevelFilesBrief() argument
291 assert(level < static_cast<int>(level_files_brief_.size())); in LevelFilesBrief()
292 return level_files_brief_[level]; in LevelFilesBrief()
296 const std::vector<int>& FilesByCompactionPri(int level) const { in FilesByCompactionPri() argument
298 return files_by_compaction_pri_[level]; in FilesByCompactionPri()
324 void TEST_AddFileMarkedForPeriodicCompaction(int level, FileMetaData* f) { in TEST_AddFileMarkedForPeriodicCompaction() argument
325 files_marked_for_periodic_compaction_.emplace_back(level, f); in TEST_AddFileMarkedForPeriodicCompaction()
342 void SetNextCompactionIndex(int level, int index) { in SetNextCompactionIndex() argument
343 next_file_to_compact_by_size_[level] = index; in SetNextCompactionIndex()
347 int NextCompactionIndex(int level) const { in NextCompactionIndex() argument
348 return next_file_to_compact_by_size_[level]; in NextCompactionIndex()
375 const char* LevelFileSummary(FileSummaryStorage* scratch, int level) const;
397 double GetEstimatedCompressionRatioAtLevel(int level) const;
402 void ResetNextCompactionIndex(int level) { in ResetNextCompactionIndex() argument
403 next_file_to_compact_by_size_[level] = 0; in ResetNextCompactionIndex()
411 uint64_t MaxBytesForLevel(int level) const;
580 int level, RangeDelAggregator* range_del_agg);
585 int level, bool* overlap);
653 Status GetPropertiesOfAllTables(TablePropertiesCollection* props, int level);
666 std::shared_ptr<const TableProperties>* tp, int level = -1);
716 bool IsFilterSkipped(int level, bool is_file_last_in_level = false);