Lines Matching full:resolution
9 class Resolution class
13 virtual ~Resolution() = 0;
17 * @brief Resolves the service actions required by this resolution.
25 inline Resolution::~Resolution() {} in ~Resolution()
28 class HardwareCalloutResolution : public Resolution
58 /** @brief Resolution to callout a connected chip/target. */
59 class ConnectedCalloutResolution : public Resolution
98 * @brief Resolution to callout all parts on a bus (RX/TX endpoints and
101 class BusCalloutResolution : public Resolution
140 class ClockCalloutResolution : public Resolution
169 class ProcedureCalloutResolution : public Resolution
194 class PartCalloutResolution : public Resolution
220 * This resolution class allows a predefined plugin function to be
223 class PluginResolution : public Resolution
252 class ResolutionList : public Resolution
259 /** The resolution list. */
260 std::vector<std::shared_ptr<Resolution>> iv_list;
264 * @brief Adds a new resolution to the end of the list.
265 * @param i_resolution The new resolution
267 void push(const std::shared_ptr<Resolution>& i_resolution) in push()