Lines Matching full:trust
10 namespace trust namespace
26 * An abstract sensor trust group base class.
33 * and the trust of all sensors depends on something about those sensors.
36 * have the same trust value.
38 * Trust is calculated when checkTrust() is called after a group
123 * Determines the trust for this group based on this
135 * field 0 - the trust value
136 * field 1 - if that trust value changed since last call
143 auto trust = checkGroupTrust(); in checkTrust() local
145 setTrust(trust); in checkTrust()
164 * Says if the trust value changed in the last call to
167 * @return bool - if the trust changed or not
176 * The sensor objects and their trust inclusion in the group.
194 * Sets the trust value on the object.
196 * @param[in] trust - the new trust value
198 inline void setTrust(bool trust) in setTrust() argument
200 _stateChange = (trust != _trusted); in setTrust()
201 _trusted = trust; in setTrust()
205 * The current trust state of the group
210 * If the trust value changed in the last call to checkTrust
216 * determining trust for this group
219 }; // namespace trust
221 } // namespace trust