Home
last modified time | relevance | path

Searched refs:temp_current_time (Results 1 – 4 of 4) sorted by relevance

/rocksdb-6.9/db/
Dimport_column_family_job.cc140 int64_t temp_current_time = 0; in Run() local
143 if (env_->GetCurrentTime(&temp_current_time).ok()) { in Run()
145 static_cast<uint64_t>(temp_current_time); in Run()
Dexternal_sst_file_ingestion_job.cc250 int64_t temp_current_time = 0; in Run() local
253 if (env_->GetCurrentTime(&temp_current_time).ok()) { in Run()
255 static_cast<uint64_t>(temp_current_time); in Run()
Dversion_set.cc2509 int64_t temp_current_time; in ComputeFilesMarkedForPeriodicCompaction() local
2510 auto status = ioptions.env->GetCurrentTime(&temp_current_time); in ComputeFilesMarkedForPeriodicCompaction()
2514 const uint64_t current_time = static_cast<uint64_t>(temp_current_time); in ComputeFilesMarkedForPeriodicCompaction()
/rocksdb-6.9/db/compaction/
Dcompaction_job.cc1501 int64_t temp_current_time = 0; in OpenCompactionOutputFile() local
1502 auto get_time_status = env_->GetCurrentTime(&temp_current_time); in OpenCompactionOutputFile()
1509 uint64_t current_time = static_cast<uint64_t>(temp_current_time); in OpenCompactionOutputFile()