Lines Matching defs:props
130 static const void *property_entry_find(const struct property_entry *props,
136 prop = property_entry_get(props, propname);
148 property_entry_count_elems_of_size(const struct property_entry *props,
153 prop = property_entry_get(props, propname);
160 static int property_entry_read_int_array(const struct property_entry *props,
169 return property_entry_count_elems_of_size(props, name,
177 pointer = property_entry_find(props, name, length);
185 static int property_entry_read_string_array(const struct property_entry *props,
194 array_len = property_entry_count_elems_of_size(props, propname,
206 pointer = property_entry_find(props, propname, length);
724 struct property_entry *props;
727 props = property_entries_dup(properties);
728 if (IS_ERR(props))
729 return ERR_CAST(props);
733 property_entries_free(props);
737 node->properties = props;