Lines Matching full:groups
21 * reading can be trusted or not, based on the trust groups the sensor
48 groups.emplace_back(create()); in Manager()
53 * Says if trust groups have been created and
56 * @return bool - If there are any trust groups
60 return !groups.empty(); in active()
68 * trusted in all groups it belongs to.
76 * Note this means groups should be designed such that
82 * @return bool - if sensor is trusted in all groups or not
88 for (auto& group : groups) in checkTrust()
118 * Registers a sensor with any trust groups that are interested
124 std::for_each(groups.begin(), groups.end(), [&sensor](auto& group) { in registerSensor()
131 * The list of sensor trust groups
133 std::vector<std::unique_ptr<Group>> groups; member in phosphor::fan::trust::Manager