Lines Matching defs:objs
657 struct drm_gem_object **objs)
672 objs[i] = obj;
693 * @objs filled in with GEM object pointers. Returned GEM objects need to be
703 struct drm_gem_object **objs;
708 objs = kvmalloc_array(count, sizeof(struct drm_gem_object *),
710 if (!objs)
713 *objs_out = objs;
727 ret = objects_lookup(filp, handles, count, objs);
1240 * @objs: drm_gem_objects to lock
1241 * @count: Number of objects in @objs
1246 drm_gem_lock_reservations(struct drm_gem_object **objs, int count,
1256 struct drm_gem_object *obj = objs[contended];
1270 ret = dma_resv_lock_interruptible(objs[i]->resv,
1276 dma_resv_unlock(objs[j]->resv);
1279 dma_resv_unlock(objs[contended]->resv);
1298 drm_gem_unlock_reservations(struct drm_gem_object **objs, int count,
1304 dma_resv_unlock(objs[i]->resv);