| /rocksdb-6.9/db/ |
| D | builder.cc | 52 int level, const bool skip_filters, const uint64_t creation_time, in NewTableBuilder() argument 63 creation_time, oldest_key_time, target_file_size, in NewTableBuilder() 86 TableProperties* table_properties, int level, const uint64_t creation_time, in BuildTable() argument 144 false /* skip_filters */, creation_time, oldest_key_time, in BuildTable()
|
| D | builder.h | 52 const bool skip_filters = false, const uint64_t creation_time = 0, 84 const uint64_t creation_time = 0, const uint64_t oldest_key_time = 0,
|
| D | event_helpers.cc | 122 << table_properties.creation_time << "oldest_key_time" in LogAndNotifyTableFileCreationFinished()
|
| D | version_edit.h | 196 return fd.table_reader->GetTableProperties()->creation_time; in TryGetOldestAncesterTime()
|
| D | repair.cc | 506 t->meta.oldest_ancester_time = props->creation_time; in ScanTable()
|
| D | version_set.h | 693 void GetCreationTimeOfOldestFile(uint64_t* creation_time);
|
| D | version_set.cc | 1468 void Version::GetCreationTimeOfOldestFile(uint64_t* creation_time) { in GetCreationTimeOfOldestFile() argument 1475 *creation_time = 0; in GetCreationTimeOfOldestFile() 1483 *creation_time = oldest_time; in GetCreationTimeOfOldestFile()
|
| D | db_test.cc | 6551 uint64_t creation_time; in TEST_F() local 6552 Status s1 = dbfull()->GetCreationTimeOfOldestFile(&creation_time); in TEST_F() 6553 ASSERT_EQ(0, creation_time); in TEST_F()
|
| D | db_compaction_test.cc | 3910 props->creation_time = 0; in TEST_F()
|
| /rocksdb-6.9/db/compaction/ |
| D | compaction_picker_fifo.cc | 74 uint64_t creation_time = f->TryGetFileCreationTime(); in PickTTLCompaction() local 75 if (creation_time == kUnknownFileCreationTime || in PickTTLCompaction() 76 creation_time >= (current_time - mutable_cf_options.ttl)) { in PickTTLCompaction()
|
| /rocksdb-6.9/table/ |
| D | table_builder.h | 98 creation_time(_creation_time), in ioptions() 113 const uint64_t creation_time; member
|
| D | meta_blocks.cc | 94 Add(TablePropertiesNames::kCreationTime, props.creation_time); in AddTableProperty() 267 &new_table_properties->creation_time}, in ReadProperties()
|
| D | table_properties.cc | 163 AppendProperty(result, "creation time", creation_time, prop_delim, kv_delim); in ToString()
|
| /rocksdb-6.9/table/block_based/ |
| D | block_based_table_builder.cc | 353 uint64_t creation_time = 0; member 407 creation_time(_creation_time), in Rep() 467 const uint64_t creation_time, const uint64_t oldest_key_time, in BlockBasedTableBuilder() argument 485 level_at_creation, column_family_name, creation_time, in BlockBasedTableBuilder() 971 rep_->props.creation_time = rep_->creation_time; in WritePropertiesBlock() 1073 Random64 generator{r->creation_time}; in EnterUnbuffered()
|
| D | block_based_table_builder.h | 52 const uint64_t creation_time = 0, const uint64_t oldest_key_time = 0,
|
| D | block_based_table_factory.cc | 229 table_builder_options.creation_time, in NewTableBuilder()
|
| /rocksdb-6.9/include/rocksdb/ |
| D | table_properties.h | 185 uint64_t creation_time = 0; member
|
| D | db.h | 1311 virtual Status GetCreationTimeOfOldestFile(uint64_t* creation_time) = 0;
|
| /rocksdb-6.9/include/rocksdb/utilities/ |
| D | stackable_db.h | 391 uint64_t* creation_time) override { in GetCreationTimeOfOldestFile() argument 392 return db_->GetCreationTimeOfOldestFile(creation_time); in GetCreationTimeOfOldestFile()
|
| /rocksdb-6.9/db/db_impl/ |
| D | db_impl.h | 377 uint64_t* creation_time) override;
|
| D | db_impl.cc | 4570 Status DBImpl::GetCreationTimeOfOldestFile(uint64_t* creation_time) { in GetCreationTimeOfOldestFile() argument 4591 *creation_time = oldest_time; in GetCreationTimeOfOldestFile()
|
| /rocksdb-6.9/ |
| D | HISTORY.md | 78 * Fixed a bug where non-L0 compaction input files were not considered to compute the `creation_time… 110 …anifest. If it is availalbe, this information will be used instead of creation_time and file_creat… 122 …key range so that it reaches the bottom level quickly on TTL expiry. `creation_time` table propert… 124 * Added an API GetCreationTimeOfOldestFile(uint64_t* creation_time) to get the file_creation_time o…
|
| /rocksdb-6.9/java/rocksjni/ |
| D | portal.h | 6118 static_cast<jlong>(table_properties.creation_time), in fromCppTableProperties()
|