Lines Matching full:modifier
149 * Returns the search modifier to use, but if it isn't found
166 * @return string - the search modifier
180 // Try the called out device path as the search modifier in getSearchModifierFirstTry()
188 // as the search modifier. in getSearchModifierFirstTry()
210 * Returns the search modifier to use.
212 * The modifier is used when the error name itself isn't granular
213 * enough to find a policy table entry. The modifier is determined
216 * Not all errors need a modifier, so this function isn't
221 * @return string - the search modifier
226 // The modifier may be one of several things within the in getSearchModifier()
238 // AdditionalData fields where the value is the modifier in getSearchModifier()
253 // to be massaged to get the modifier. in getSearchModifier()
308 // Try with the FirstTry modifier first, and then the regular one. in find()
310 auto modifier = getSearchModifierFirstTry(*errorMsg, in find() local
313 if (!modifier.empty()) in find()
315 result = policy.find(*errorMsg, modifier); in find()
320 modifier = getSearchModifier(errorLogProperties); in find()
322 result = policy.find(*errorMsg, modifier); in find()