Lines Matching refs:exp_info
344 DEFINE_DMA_BUF_EXPORT_INFO(exp_info); in system_heap_allocate()
397 exp_info.exp_name = dma_heap_get_name(heap); in system_heap_allocate()
398 exp_info.ops = &system_heap_buf_ops; in system_heap_allocate()
399 exp_info.size = buffer->len; in system_heap_allocate()
400 exp_info.flags = fd_flags; in system_heap_allocate()
401 exp_info.priv = buffer; in system_heap_allocate()
402 dmabuf = dma_buf_export(&exp_info); in system_heap_allocate()
430 struct dma_heap_export_info exp_info; in system_heap_create() local
432 exp_info.name = "system"; in system_heap_create()
433 exp_info.ops = &system_heap_ops; in system_heap_create()
434 exp_info.priv = NULL; in system_heap_create()
436 sys_heap = dma_heap_add(&exp_info); in system_heap_create()