Lines Matching +full:function +full:- +full:group

13  * @brief A handler function to set/update a property on a zone
15 * provided zone dbus object's set property function
17 * @param[in] intf - Interface on zone object
18 * @param[in] prop - Property on interface
19 * @param[in] func - Zone set property function pointer
20 * @param[in] value - Value to set property to
21 * @param[in] persist - Persist property value or not
23 * @return Lambda function
24 * A lambda function to set/update the zone property
40 * @brief A handler function to set/update a property
44 * @param[in] path - Object's path name
45 * @param[in] interface - Object's interface name
46 * @param[in] property - Object's property name
48 * @return Lambda function
49 * A lambda function to set/update the property value
60 * @brief A handler function to set/update service name owner state
61 * @details Sets or updates service name owner state used by a group where
64 * @param[in] group - Group associated with a service
66 * @return Lambda function
67 * A lambda function to set/update the service name owner state
69 inline auto setService(Group&& group) in setService() argument
71 return [group = std::move(group)](auto& zone, auto& name, bool hasOwner) { in setService()
72 // Update service name owner state list of a group in setService()
73 zone.setServiceOwner(&group, name, hasOwner); in setService()
78 * @brief A handler function to remove an interface from an object path
82 * @param[in] path - Object's path name
83 * @param[in] interface - Object's interface name
85 * @return Lambda function
86 * A lambda function to remove the interface