Lines Matching refs:fd_bo

33 drm_private void bo_del(struct fd_bo *bo);
36 static void set_name(struct fd_bo *bo, uint32_t name) in set_name()
44 static struct fd_bo * lookup_bo(void *tbl, uint32_t key) in lookup_bo()
46 struct fd_bo *bo = NULL; in lookup_bo()
58 static struct fd_bo * bo_from_handle(struct fd_device *dev, in bo_from_handle()
61 struct fd_bo *bo; in bo_from_handle()
81 static struct fd_bo *
85 struct fd_bo *bo = NULL; in bo_new()
106 drm_public struct fd_bo *
109 struct fd_bo *bo = bo_new(dev, size, flags, &dev->bo_cache); in fd_bo_new()
120 drm_private struct fd_bo *
123 struct fd_bo *bo = bo_new(dev, size, flags, &dev->ring_cache); in fd_bo_new_ring()
129 drm_public struct fd_bo *
132 struct fd_bo *bo = NULL; in fd_bo_from_handle()
150 drm_public struct fd_bo *
155 struct fd_bo *bo; in fd_bo_from_dmabuf()
182 drm_public struct fd_bo * fd_bo_from_name(struct fd_device *dev, uint32_t name) in fd_bo_from_name()
187 struct fd_bo *bo; in fd_bo_from_name()
217 drm_public uint64_t fd_bo_get_iova(struct fd_bo *bo) in fd_bo_get_iova()
222 drm_public void fd_bo_put_iova(struct fd_bo *bo) in fd_bo_put_iova()
227 drm_public struct fd_bo * fd_bo_ref(struct fd_bo *bo) in fd_bo_ref()
233 drm_public void fd_bo_del(struct fd_bo *bo) in fd_bo_del()
254 drm_private void bo_del(struct fd_bo *bo) in bo_del()
278 drm_public int fd_bo_get_name(struct fd_bo *bo, uint32_t *name) in fd_bo_get_name()
302 drm_public uint32_t fd_bo_handle(struct fd_bo *bo) in fd_bo_handle()
307 drm_public int fd_bo_dmabuf(struct fd_bo *bo) in fd_bo_dmabuf()
323 drm_public uint32_t fd_bo_size(struct fd_bo *bo) in fd_bo_size()
328 drm_public void * fd_bo_map(struct fd_bo *bo) in fd_bo_map()
350 drm_public int fd_bo_cpu_prep(struct fd_bo *bo, struct fd_pipe *pipe, uint32_t op) in fd_bo_cpu_prep()
355 drm_public void fd_bo_cpu_fini(struct fd_bo *bo) in fd_bo_cpu_fini()
361 drm_public struct fd_bo * fd_bo_from_fbdev(struct fd_pipe *pipe, int fbfd, uint32_t size) in fd_bo_from_fbdev()