Lines Matching refs:properties

134  * get_all_properties - Responds for GetAll properties calls on object
136 * @interface: interface name which properties will be returned
137 * @property_dsc: list of object's properties
138 * Returns: Message with dict of variants as argument with properties values
140 * Iterates over all properties registered with object and execute getters
143 * with properties names as keys and theirs values as values.
163 props_num = fill_dict_with_properties(&dict_iter, obj_dsc->properties,
172 "No readable properties in "
260 property_dsc = obj_dsc->properties;
385 * of the special cases i.e. introspection call or properties get/getall/set
426 /* if message is properties method call */
452 * Frees each of properties, methods and signals description lists and
544 * @obj_desc: description of object's methods, signals and properties
623 for (dsc = obj_dsc->properties, i = 0; dsc && dsc->dbus_property;
706 wpa_printf(MSG_DEBUG, "dbus: %s: Timeout - sending changed properties "
740 * each properties.
753 * Iterates over all properties registered with object and for each interface
754 * containing properties marked as changed, sends a PropertiesChanged signal
755 * containing names and new values of properties that have changed.
777 dsc = obj_desc->properties;
778 for (dsc = obj_desc->properties, i = 0; dsc && dsc->dbus_property;
799 * Iterates over all properties registered with an object and marks the one
824 for (dsc = obj_desc->properties; dsc && dsc->dbus_property; dsc++, i++)
848 * wpa_dbus_get_object_properties - Put object's properties into dictionary
850 * @path: path to DBus object which properties will be obtained
851 * @interface: interface name which properties will be obtained
854 * Iterates over all properties registered with object and execute getters
856 * specified as argument. Obtained properties values are stored in
873 fill_dict_with_properties(dict_iter, obj_desc->properties,