Lines Matching +full:priority +full:- +full:0

12 /** @brief All callouts will have a priority indicating when to issue the
14 enum class Priority enum
19 /** Serivce medium priority callouts one at a time, in order, until the
32 /** If servicing all high and medium priority callouts did not resolve
33 * the issue, service low priority callouts one at a time, in order,
38 /** @return The string representation of the priority used in callouts. */
39 inline std::string getString(Priority i_priority) in getString()
41 // clang-format off in getString()
42 static const std::map<Priority, std::string> m = in getString()
44 {Priority::HIGH, "H"}, in getString()
45 {Priority::MED, "M"}, in getString()
46 {Priority::MED_A, "A"}, in getString()
47 {Priority::MED_B, "B"}, in getString()
48 {Priority::MED_C, "C"}, in getString()
49 {Priority::LOW, "L"}, in getString()
51 // clang-format on in getString()
56 /** @return The string representation of the priority used in The callout FFDC.
58 inline std::string getStringFFDC(Priority i_priority) in getStringFFDC()
60 // clang-format off in getStringFFDC()
61 static const std::map<Priority, std::string> m = in getStringFFDC()
63 {Priority::HIGH, "high"}, in getStringFFDC()
64 {Priority::MED, "medium"}, in getStringFFDC()
65 {Priority::MED_A, "medium_group_A"}, in getStringFFDC()
66 {Priority::MED_B, "medium_group_B"}, in getStringFFDC()
67 {Priority::MED_C, "medium_group_C"}, in getStringFFDC()
68 {Priority::LOW, "low"}, in getStringFFDC()
70 // clang-format on in getStringFFDC()
78 // Can also reference `extensions/openpower-pels/pel_values.cpp` from
79 // `openbmc/phosphor-logging` for the full list of these values.
81 PROCESSOR = 0x10,
82 PROCESSOR_FRU = 0x11,
83 PROCESSOR_UNIT = 0x13,
84 PROCESSOR_BUS = 0x14,
86 MEMORY_CTLR = 0x21,
87 MEMORY_BUS = 0x22,
88 MEMORY_DIMM = 0x23,
89 MEMORY_FRU = 0x24,
91 PHB = 0x38,
93 CEC_HARDWARE = 0x50,
94 CEC_CLOCKS = 0x58,
95 CEC_TOD = 0x5A,
97 OTHERS = 0x70,
177 return ((this->iv_string == r.iv_string) && in operator ==()
178 (this->iv_subsystem == r.iv_subsystem)); in operator ==()
201 /** Oscillator reference clock 0. */
273 return ((this->iv_string == r.iv_string) && in operator ==()
274 (this->iv_subsystem == r.iv_subsystem)); in operator ==()
302 /** Guard on non-fatal error (can recover resource). */
320 return this->iv_string == r.iv_string; in operator ==()