Lines Matching refs:props
114 static const void *property_entry_find(const struct property_entry *props,
120 prop = property_entry_get(props, propname);
132 property_entry_count_elems_of_size(const struct property_entry *props,
137 prop = property_entry_get(props, propname);
144 static int property_entry_read_int_array(const struct property_entry *props,
153 return property_entry_count_elems_of_size(props, name,
161 pointer = property_entry_find(props, name, length);
169 static int property_entry_read_string_array(const struct property_entry *props,
178 array_len = property_entry_count_elems_of_size(props, propname,
190 pointer = property_entry_find(props, propname, length);
603 struct property_entry *props;
605 props = property_entries_dup(properties);
606 if (IS_ERR(props))
607 return PTR_ERR(props);
609 node->properties = props;