Lines Matching full:acquired
56 * Verifies the AGP device has been initialized and acquired and fills in the
63 if (!dev->agp || !dev->agp->acquired) in drm_legacy_agp_info()
100 * Verifies the AGP device hasn't been acquired before and calls
109 if (dev->agp->acquired) in drm_legacy_agp_acquire()
114 dev->agp->acquired = 1; in drm_legacy_agp_acquire()
124 * Verifies the AGP device hasn't been acquired before and calls
139 * Verifies the AGP device has been acquired and calls \c agp_backend_release.
143 if (!dev->agp || !dev->agp->acquired) in drm_legacy_agp_release()
146 dev->agp->acquired = 0; in drm_legacy_agp_release()
160 * \param dev DRM device that has previously acquired AGP.
164 * Verifies the AGP device has been acquired but not enabled, and calls
169 if (!dev->agp || !dev->agp->acquired) in drm_legacy_agp_enable()
192 * Verifies the AGP device is present and has been acquired, allocates the
202 if (!dev->agp || !dev->agp->acquired) in drm_legacy_agp_alloc()
264 * Verifies the AGP device is present and acquired, looks-up the AGP memory
272 if (!dev->agp || !dev->agp->acquired) in drm_legacy_agp_unbind()
298 * Verifies the AGP device is present and has been acquired and that no memory
308 if (!dev->agp || !dev->agp->acquired) in drm_legacy_agp_bind()
338 * Verifies the AGP device is present and has been acquired and looks up the
347 if (!dev->agp || !dev->agp->acquired) in drm_legacy_agp_free()
444 if (dev->agp->acquired) in drm_legacy_agp_clear()
447 dev->agp->acquired = 0; in drm_legacy_agp_clear()