Lines Matching defs:objects
35 * @num_objects: number of objects locked
40 * @max_objects: maximum objects in array
45 * @objects: array of the locked objects
47 struct drm_gem_object **objects;
66 * index is within the number of locked objects. NULL otherwise.
71 return index < exec->num_objects ? exec->objects[index] : NULL;
78 * drm_exec_for_each_locked_object - iterate over all the locked objects
82 * Iterate over all the locked GEM objects inside the drm_exec object.
93 * objects in reverse locking order
97 * Iterate over all the locked GEM objects inside the drm_exec object in
116 * drm_exec_until_all_locked - loop until all GEM objects are locked
119 * Core functionality of the drm_exec object. Loops until all GEM objects are
131 * clean up and re-start the loop to prepare all GEM objects.
155 * Unconditionally retry the loop to lock all objects. For consistency,
183 struct drm_gem_object **objects,