Lines Matching defs:objs
649 struct drm_gem_object **objs)
664 objs[i] = obj;
685 * @objs filled in with GEM object pointers. Returned GEM objects need to be
695 struct drm_gem_object **objs;
700 objs = kvmalloc_array(count, sizeof(struct drm_gem_object *),
702 if (!objs)
705 *objs_out = objs;
719 ret = objects_lookup(filp, handles, count, objs);
1244 * @objs: drm_gem_objects to lock
1245 * @count: Number of objects in @objs
1250 drm_gem_lock_reservations(struct drm_gem_object **objs, int count,
1260 struct drm_gem_object *obj = objs[contended];
1274 ret = dma_resv_lock_interruptible(objs[i]->resv,
1280 dma_resv_unlock(objs[j]->resv);
1283 dma_resv_unlock(objs[contended]->resv);
1302 drm_gem_unlock_reservations(struct drm_gem_object **objs, int count,
1308 dma_resv_unlock(objs[i]->resv);