Lines Matching defs:handle
104 void drm_free_agp(struct agp_memory *handle, int pages)
106 agp_free_memory(handle);
110 int drm_bind_agp(struct agp_memory *handle, unsigned int start)
112 return agp_bind_memory(handle, start);
116 int drm_unbind_agp(struct agp_memory *handle)
118 return agp_unbind_memory(handle);
133 map->handle = agp_remap(map->offset, map->size, dev);
135 map->handle = ioremap(map->offset, map->size);
142 map->handle = agp_remap(map->offset, map->size, dev);
144 map->handle = ioremap_wc(map->offset, map->size);
150 if (!map->handle || !map->size)
154 vunmap(map->handle);
156 iounmap(map->handle);