Lines Matching refs:exp_info
187 DEFINE_DMA_BUF_EXPORT_INFO(exp_info); in sram_dma_heap_allocate()
212 exp_info.ops = &sram_dma_heap_buf_ops; in sram_dma_heap_allocate()
213 exp_info.size = buffer->len; in sram_dma_heap_allocate()
214 exp_info.flags = fd_flags; in sram_dma_heap_allocate()
215 exp_info.priv = buffer; in sram_dma_heap_allocate()
216 dmabuf = dma_buf_export(&exp_info); in sram_dma_heap_allocate()
242 struct dma_heap_export_info exp_info; in sram_dma_heap_export() local
251 exp_info.name = "sram_dma_heap"; in sram_dma_heap_export()
252 exp_info.ops = &sram_dma_heap_ops; in sram_dma_heap_export()
253 exp_info.priv = sram_dma_heap; in sram_dma_heap_export()
257 sram_dma_heap->heap = dma_heap_add(&exp_info); in sram_dma_heap_export()
273 DEFINE_DMA_BUF_EXPORT_INFO(exp_info); in sram_heap_alloc_dma_buf()
299 exp_info.ops = &sram_dma_heap_buf_ops; in sram_heap_alloc_dma_buf()
300 exp_info.size = buffer->len; in sram_heap_alloc_dma_buf()
301 exp_info.priv = buffer; in sram_heap_alloc_dma_buf()
302 dmabuf = dma_buf_export(&exp_info); in sram_heap_alloc_dma_buf()