| /rocksdb-6.9/db/ |
| D | event_helpers.cc | 28 const std::string& file_path, int job_id, TableFileCreationReason reason) { in NotifyTableFileCreationStarted() argument 34 info.reason = reason; in NotifyTableFileCreationStarted() 43 BackgroundErrorReason reason, Status* bg_error, InstrumentedMutex* db_mutex, in NotifyOnBackgroundError() argument 53 listener->OnBackgroundError(reason, bg_error); in NotifyOnBackgroundError() 55 listener->OnErrorRecoveryBegin(reason, *bg_error, auto_recovery); in NotifyOnBackgroundError() 61 (void)reason; in NotifyOnBackgroundError() 74 TableFileCreationReason reason, const Status& s) { in LogAndNotifyTableFileCreationFinished() argument 153 info.reason = reason; in LogAndNotifyTableFileCreationFinished() 163 (void)reason; in LogAndNotifyTableFileCreationFinished()
|
| D | error_handler.cc | 162 Status ErrorHandler::SetBGError(const Status& bg_err, BackgroundErrorReason reason) { in SetBGError() argument 175 auto entry = ErrorSeverityMap.find(std::make_tuple(reason, bg_err.code(), in SetBGError() 184 auto entry = DefaultErrorSeverityMap.find(std::make_tuple(reason, in SetBGError() 193 auto entry = DefaultReasonMap.find(std::make_tuple(reason, paranoid)); in SetBGError() 219 EventHelpers::NotifyOnBackgroundError(db_options_.listeners, reason, &s, in SetBGError() 242 BackgroundErrorReason reason) { in SetBGError() argument 258 EventHelpers::NotifyOnBackgroundError(db_options_.listeners, reason, &s, in SetBGError() 269 EventHelpers::NotifyOnBackgroundError(db_options_.listeners, reason, &s, in SetBGError() 276 s = SetBGError(new_bg_io_err, reason); in SetBGError()
|
| D | error_handler.h | 32 Status::Severity GetErrorSeverity(BackgroundErrorReason reason, 36 Status SetBGError(const Status& bg_err, BackgroundErrorReason reason); 38 Status SetBGError(const IOStatus& bg_io_err, BackgroundErrorReason reason);
|
| D | event_helpers.h | 26 const std::string& file_path, int job_id, TableFileCreationReason reason); 30 BackgroundErrorReason reason, Status* bg_error, 38 TableFileCreationReason reason, const Status& s);
|
| D | builder.cc | 84 TableFileCreationReason reason, IOStatus* io_status, in BuildTable() argument 107 ioptions.listeners, dbname, column_family_name, fname, job_id, reason); in BuildTable() 129 job_id, meta->fd, kInvalidBlobFileNumber, tp, reason, s); in BuildTable() 269 job_id, meta->fd, meta->oldest_blob_file_number, tp, reason, s); in BuildTable()
|
| D | log_reader.cc | 269 void Reader::ReportCorruption(size_t bytes, const char* reason) { in ReportCorruption() argument 270 ReportDrop(bytes, Status::Corruption(reason)); in ReportCorruption() 273 void Reader::ReportDrop(size_t bytes, const Status& reason) { in ReportDrop() argument 275 reporter_->Corruption(bytes, reason); in ReportDrop()
|
| D | log_reader.h | 155 void ReportCorruption(size_t bytes, const char* reason); 156 void ReportDrop(size_t bytes, const Status& reason);
|
| D | builder.h | 80 InternalStats* internal_stats, TableFileCreationReason reason,
|
| D | listener_test.cc | 704 int Index(TableFileCreationReason reason) { in Index() argument 706 switch (reason) { in Index() 735 int idx = Index(info.reason); in OnTableFileCreationStarted() 746 int idx = Index(info.reason); in OnTableFileCreated()
|
| D | internal_stats.h | 195 explicit CompactionStats(CompactionReason reason, int c) in CompactionStats() 212 int r = static_cast<int>(reason); in CompactionStats()
|
| /rocksdb-6.9/utilities/blob_db/ |
| D | blob_db_impl.h | 264 const std::string& reason, 303 const std::string& reason);
|
| D | blob_db_impl.cc | 659 const std::string& reason) { in NewBlobFile() argument 671 blob_file->PathName().c_str(), reason.c_str()); in NewBlobFile() 784 const std::string& reason, std::shared_ptr<BlobFile>* blob_file, in CreateBlobFileAndWriter() argument 790 *blob_file = NewBlobFile(has_ttl, expiration_range, reason); in CreateBlobFileAndWriter()
|
| /rocksdb-6.9/util/ |
| D | thread_local.cc | 184 void NTAPI WinOnThreadExit(PVOID module, DWORD reason, PVOID reserved) { in WinOnThreadExit() argument 186 if (DLL_THREAD_DETACH == reason) { in WinOnThreadExit()
|
| /rocksdb-6.9/ |
| D | ROCKSDB_LITE.md | 3 …or server workloads and they are very sensitive to binary size. For that reason, we added a compil…
|
| D | LICENSE.Apache | 174 incurred by, or claims asserted against, such Contributor by reason
|
| D | COPYING | 198 infringement or for any other reason (not limited to patent issues),
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2017-08-24-pinnableslice.markdown | 22 … that it would still have to copy the data into its internal buffer. The reason is mainly the comp…
|
| D | 2016-04-26-rocksdb-4-5-1-released.markdown | 42 …* Introduce CompactionJobInfo::compaction_reason, this field include the reason to trigger the com…
|
| D | 2015-01-16-migrating-from-leveldb-to-rocksdb-2.markdown | 84 The reason why ConvertOptions is handy is because a lot of individual options in RocksDB have moved…
|
| D | 2018-11-21-delete-range.markdown | 62 complicated to reason about and implement. In an ideal world, deleting a range 126 The range tombstones are segregated to a separate memtable for the same reason
|
| D | 2016-01-29-compaction_pri.markdown | 43 …mallestSeqFirst` (note it is not the default one for backward compatible reason). If you want to f…
|
| /rocksdb-6.9/include/rocksdb/ |
| D | listener.h | 47 TableFileCreationReason reason; member
|
| /rocksdb-6.9/db/db_impl/ |
| D | db_impl_compaction_flush.cc | 2200 LogBuffer* log_buffer, FlushReason* reason, in BackgroundFlush() argument 2205 *reason = FlushReason::kOthers; in BackgroundFlush() 2265 *reason = bg_flush_args[0].cfd_->GetFlushReason(); in BackgroundFlush() 2295 FlushReason reason; in BackgroundCallFlush() local 2298 &reason, thread_pri); in BackgroundCallFlush() 2300 reason != FlushReason::kErrorRecovery) { in BackgroundCallFlush()
|
| /rocksdb-6.9/docs/ |
| D | LICENSE-DOCUMENTATION | 41 the licensor's permission is not necessary for any reason--for
|
| /rocksdb-6.9/third-party/gtest-1.8.1/fused-src/gtest/ |
| D | gtest-all.cc | 7860 void Abort(AbortReason reason); 7954 void DeathTestImpl::Abort(AbortReason reason) { in Abort() argument 7959 reason == TEST_DID_NOT_DIE ? kDeathTestLived : in Abort() 7960 reason == TEST_THREW_EXCEPTION ? kDeathTestThrew : kDeathTestReturned; in Abort()
|