Lines Matching refs:name

8  * that the name of the copyright holders not be used in advertising or
53 * Properties are defined by their symbolic name, userspace must keep a
85 * @name: name of the property
97 u32 flags, const char *name,
106 if (WARN_ON(strlen(name) >= DRM_PROP_NAME_LEN))
130 strncpy(property->name, name, DRM_PROP_NAME_LEN);
131 property->name[DRM_PROP_NAME_LEN-1] = '\0';
147 * @name: name of the property
163 u32 flags, const char *name,
172 property = drm_property_create(dev, flags, name, num_values);
179 props[i].name);
194 * @name: name of the property
211 u32 flags, const char *name,
222 property = drm_property_create(dev, flags, name, num_values);
231 props[i].name);
243 u32 flags, const char *name,
248 property = drm_property_create(dev, flags, name, 2);
262 * @name: name of the property
278 u32 flags, const char *name,
282 name, min, max);
290 * @name: name of the property
306 u32 flags, const char *name,
310 name, I642U64(min), I642U64(max));
318 * @name: name of the property
333 u32 flags, const char *name,
343 property = drm_property_create(dev, flags, name, 1);
357 * @name: name of the property
370 u32 flags, const char *name)
372 return drm_property_create_range(dev, flags, name, 0, 1);
380 * @name: symbolic name of the new enumeration
391 uint64_t value, const char *name)
396 if (WARN_ON(strlen(name) >= DRM_PROP_NAME_LEN))
424 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
425 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
478 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
479 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
507 if (copy_to_user(&enum_ptr[copied].name,
508 &prop_enum->name, DRM_PROP_NAME_LEN))
689 * base object, and prop_holds_id set to the path property name, will perform