Lines Matching +full:priority +full:- +full:0
26 * The callout priority and location code are in this structure.
45 calloutType = 0b0010'0000,
46 fruIdentIncluded = 0b0000'1000,
47 mruIncluded = 0b0000'0100
65 * @param[in] pel - the PEL data stream
75 * @param[in] priority - The priority of the callout
76 * @param[in] locationCode - The location code of the callout
77 * @param[in] partNumber - The part number of the callout
78 * @param[in] ccin - The CCIN of the callout
79 * @param[in] serialNumber - The serial number of the callout
81 Callout(CalloutPriority priority, const std::string& locationCode,
92 * @param[in] priority - The priority of the callout
93 * @param[in] locationCode - The location code of the callout
94 * @param[in] partNumber - The part number of the callout
95 * @param[in] ccin - The CCIN of the callout
96 * @param[in] serialNumber - The serial number of the callout
97 * @param[in] mrus - The MRUs, if any, to add to the callout
99 Callout(CalloutPriority priority, const std::string& locationCode,
110 * @param[in] priority - The priority of the callout
111 * @param[in] procedure - The maintenance procedure name
112 * @param[in] type - If the procedure is the raw name or the registry name
114 Callout(CalloutPriority priority, const std::string& procedure,
123 * @param[in] priority - The priority of the callout
124 * @param[in] procedureFromRegistry - The maintenance procedure name
127 Callout(CalloutPriority priority, in Callout() argument
129 Callout(priority, procedureFromRegistry, CalloutValueType::registryName) in Callout()
138 * @param[in] priority - The priority of the callout
139 * @param[in] symbolicFRU - The symbolic FRU name
140 * @param[in] type - If the FRU is the raw name or the registry name
141 * @param[in] locationCode - The location code of the callout
142 * @param[in] trustedLocationCode - If the location is trusted
144 Callout(CalloutPriority priority, const std::string& symbolicFRU,
154 * @param[in] priority - The priority of the callout
155 * @param[in] symbolicFRUFromRegistry - The symbolic FRU name as
157 * @param[in] locationCode - The location code of the callout
158 * @param[in] trustedLocationCode - If the location is trusted
160 Callout(CalloutPriority priority, in Callout() argument
163 Callout(priority, symbolicFRUFromRegistry, in Callout()
171 * @return size_t - The size of the section
178 * @param[in] stream - The stream to write to
185 * @return uint8_t - The flags
193 * @brief Returns the priority field of a callout
195 * @return uint8_t - The priority
197 uint8_t priority() const in priority() function in openpower::pels::src::Callout
203 * @brief Set the priority of the callout
205 * @param[in] priority - The priority value
207 void setPriority(uint8_t priority) in setPriority() argument
209 _priority = priority; in setPriority()
215 * @return std::string - The location code
231 * @return size_t - The size, including the terminating null.
274 * @param[in] right - The callout to compare to
275 * @return bool - true if they are the same
280 * @brief Operator > used for sorting callouts by priority
282 * @param[in] right - The callout to compare to
283 * @return bool - true if callout has higher priority than other
291 * @param[in] locationCode - The location code string
306 * @brief The replacement priority
316 uint8_t _locationCodeSize = 0;