Lines Matching refs:BackgroundErrorReason
19 std::map<std::tuple<BackgroundErrorReason, Status::Code, Status::SubCode, bool>,
23 {std::make_tuple(BackgroundErrorReason::kCompaction,
27 {std::make_tuple(BackgroundErrorReason::kCompaction,
31 {std::make_tuple(BackgroundErrorReason::kCompaction,
36 {std::make_tuple(BackgroundErrorReason::kFlush, Status::Code::kIOError,
39 {std::make_tuple(BackgroundErrorReason::kFlush, Status::Code::kIOError,
42 {std::make_tuple(BackgroundErrorReason::kFlush, Status::Code::kIOError,
46 {std::make_tuple(BackgroundErrorReason::kWriteCallback,
50 {std::make_tuple(BackgroundErrorReason::kWriteCallback,
56 std::map<std::tuple<BackgroundErrorReason, Status::Code, bool>, Status::Severity>
59 {std::make_tuple(BackgroundErrorReason::kCompaction,
62 {std::make_tuple(BackgroundErrorReason::kCompaction,
65 {std::make_tuple(BackgroundErrorReason::kCompaction,
68 {std::make_tuple(BackgroundErrorReason::kCompaction,
72 {std::make_tuple(BackgroundErrorReason::kFlush,
75 {std::make_tuple(BackgroundErrorReason::kFlush,
78 {std::make_tuple(BackgroundErrorReason::kFlush,
81 {std::make_tuple(BackgroundErrorReason::kFlush,
85 {std::make_tuple(BackgroundErrorReason::kWriteCallback,
88 {std::make_tuple(BackgroundErrorReason::kWriteCallback,
91 {std::make_tuple(BackgroundErrorReason::kWriteCallback,
94 {std::make_tuple(BackgroundErrorReason::kWriteCallback,
99 std::map<std::tuple<BackgroundErrorReason, bool>, Status::Severity>
102 {std::make_tuple(BackgroundErrorReason::kCompaction, true),
104 {std::make_tuple(BackgroundErrorReason::kCompaction, false),
107 {std::make_tuple(BackgroundErrorReason::kFlush, true),
109 {std::make_tuple(BackgroundErrorReason::kFlush, false),
112 {std::make_tuple(BackgroundErrorReason::kWriteCallback, true),
114 {std::make_tuple(BackgroundErrorReason::kWriteCallback, false),
117 {std::make_tuple(BackgroundErrorReason::kMemTable, true),
119 {std::make_tuple(BackgroundErrorReason::kMemTable, false),
162 Status ErrorHandler::SetBGError(const Status& bg_err, BackgroundErrorReason reason) { in SetBGError()
242 BackgroundErrorReason reason) { in SetBGError()