Lines Matching refs:properties
225 * value. Currently this function cannot fail since the properties are stored in
228 * Note that all properties must be attached before the object itself is
235 int count = obj->properties->count;
256 obj->properties->properties[count] = property;
257 obj->properties->values[count] = init_val;
258 obj->properties->count++;
289 for (i = 0; i < obj->properties->count; i++) {
290 if (obj->properties->properties[i] == property) {
291 obj->properties->values[i] = val;
306 /* read-only properties bypass atomic mechanism and still store
307 * their value in obj->properties->values[].. mostly to avoid
314 for (i = 0; i < obj->properties->count; i++) {
315 if (obj->properties->properties[i] == property) {
316 *val = obj->properties->values[i];
359 for (i = 0, count = 0; i < obj->properties->count; i++) {
360 struct drm_property *prop = obj->properties->properties[i];
418 if (!obj->properties) {
440 for (i = 0; i < obj->properties->count; i++)
441 if (obj->properties->properties[i]->base.id == prop_id)
442 return obj->properties->properties[i];
541 if (!arg_obj->properties)