Lines Matching full:acquired
57 * Verifies the AGP device has been initialized and acquired and fills in the
64 if (!dev->agp || !dev->agp->acquired) in drm_agp_info()
101 * Verifies the AGP device hasn't been acquired before and calls
108 if (dev->agp->acquired) in drm_agp_acquire()
113 dev->agp->acquired = 1; in drm_agp_acquire()
127 * Verifies the AGP device hasn't been acquired before and calls
142 * Verifies the AGP device has been acquired and calls \c agp_backend_release.
146 if (!dev->agp || !dev->agp->acquired) in drm_agp_release()
149 dev->agp->acquired = 0; in drm_agp_release()
163 * \param dev DRM device that has previously acquired AGP.
167 * Verifies the AGP device has been acquired but not enabled, and calls
172 if (!dev->agp || !dev->agp->acquired) in drm_agp_enable()
199 * Verifies the AGP device is present and has been acquired, allocates the
209 if (!dev->agp || !dev->agp->acquired) in drm_agp_alloc()
275 * Verifies the AGP device is present and acquired, looks-up the AGP memory
283 if (!dev->agp || !dev->agp->acquired) in drm_agp_unbind()
313 * Verifies the AGP device is present and has been acquired and that no memory
323 if (!dev->agp || !dev->agp->acquired) in drm_agp_bind()
357 * Verifies the AGP device is present and has been acquired and looks up the
366 if (!dev->agp || !dev->agp->acquired) in drm_agp_free()
462 if (dev->agp->acquired) in drm_legacy_agp_clear()
465 dev->agp->acquired = 0; in drm_legacy_agp_clear()