Lines Matching refs:src
236 const struct property_entry *src)
238 const void *pointer = property_get_pointer(src);
246 if (!src->is_inline && !src->length)
253 if (src->type == DEV_PROP_REF && src->is_inline)
256 if (src->length <= sizeof(dst->value)) {
260 dst_ptr = kmalloc(src->length, GFP_KERNEL);
266 if (src->type == DEV_PROP_STRING) {
267 nval = src->length / sizeof(const char *);
274 memcpy(dst_ptr, pointer, src->length);
277 dst->length = src->length;
278 dst->type = src->type;
279 dst->name = kstrdup(src->name, GFP_KERNEL);