Lines Matching defs:objs
849 struct drm_gem_object **objs)
864 objs[i] = obj;
885 * @objs filled in with GEM object pointers. Returned GEM objects need to be
895 struct drm_gem_object **objs;
900 objs = kvmalloc_array(count, sizeof(struct drm_gem_object *),
902 if (!objs)
905 *objs_out = objs;
919 ret = objects_lookup(filp, handles, count, objs);
1548 * @objs: drm_gem_objects to lock
1549 * @count: Number of objects in @objs
1554 drm_gem_lock_reservations(struct drm_gem_object **objs, int count,
1564 struct drm_gem_object *obj = objs[contended];
1578 ret = dma_resv_lock_interruptible(objs[i]->resv,
1584 dma_resv_unlock(objs[j]->resv);
1587 dma_resv_unlock(objs[contended]->resv);
1606 drm_gem_unlock_reservations(struct drm_gem_object **objs, int count,
1612 dma_resv_unlock(objs[i]->resv);