Home
last modified time | relevance | path

Searched refs:reason (Results 1 – 25 of 30) sorted by relevance

12

/rocksdb-6.9/db/
Devent_helpers.cc28 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()
Derror_handler.cc162 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()
Derror_handler.h32 Status::Severity GetErrorSeverity(BackgroundErrorReason reason,
36 Status SetBGError(const Status& bg_err, BackgroundErrorReason reason);
38 Status SetBGError(const IOStatus& bg_io_err, BackgroundErrorReason reason);
Devent_helpers.h26 const std::string& file_path, int job_id, TableFileCreationReason reason);
30 BackgroundErrorReason reason, Status* bg_error,
38 TableFileCreationReason reason, const Status& s);
Dbuilder.cc84 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()
Dlog_reader.cc269 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()
Dlog_reader.h155 void ReportCorruption(size_t bytes, const char* reason);
156 void ReportDrop(size_t bytes, const Status& reason);
Dbuilder.h80 InternalStats* internal_stats, TableFileCreationReason reason,
Dlistener_test.cc704 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()
Dinternal_stats.h195 explicit CompactionStats(CompactionReason reason, int c) in CompactionStats()
212 int r = static_cast<int>(reason); in CompactionStats()
/rocksdb-6.9/utilities/blob_db/
Dblob_db_impl.h264 const std::string& reason,
303 const std::string& reason);
Dblob_db_impl.cc659 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/
Dthread_local.cc184 void NTAPI WinOnThreadExit(PVOID module, DWORD reason, PVOID reserved) { in WinOnThreadExit() argument
186 if (DLL_THREAD_DETACH == reason) { in WinOnThreadExit()
/rocksdb-6.9/
DROCKSDB_LITE.md3 …or server workloads and they are very sensitive to binary size. For that reason, we added a compil…
DLICENSE.Apache174 incurred by, or claims asserted against, such Contributor by reason
DCOPYING198 infringement or for any other reason (not limited to patent issues),
/rocksdb-6.9/docs/_posts/
D2017-08-24-pinnableslice.markdown22 … that it would still have to copy the data into its internal buffer. The reason is mainly the comp…
D2016-04-26-rocksdb-4-5-1-released.markdown42 …* Introduce CompactionJobInfo::compaction_reason, this field include the reason to trigger the com…
D2015-01-16-migrating-from-leveldb-to-rocksdb-2.markdown84 The reason why ConvertOptions is handy is because a lot of individual options in RocksDB have moved…
D2018-11-21-delete-range.markdown62 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
D2016-01-29-compaction_pri.markdown43 …mallestSeqFirst` (note it is not the default one for backward compatible reason). If you want to f…
/rocksdb-6.9/include/rocksdb/
Dlistener.h47 TableFileCreationReason reason; member
/rocksdb-6.9/db/db_impl/
Ddb_impl_compaction_flush.cc2200 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/
DLICENSE-DOCUMENTATION41 the licensor's permission is not necessary for any reason--for
/rocksdb-6.9/third-party/gtest-1.8.1/fused-src/gtest/
Dgtest-all.cc7860 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()

12