Lines Matching refs:exp_info
341 DEFINE_DMA_BUF_EXPORT_INFO(exp_info); in system_heap_allocate()
394 exp_info.exp_name = dma_heap_get_name(heap); in system_heap_allocate()
395 exp_info.ops = &system_heap_buf_ops; in system_heap_allocate()
396 exp_info.size = buffer->len; in system_heap_allocate()
397 exp_info.flags = fd_flags; in system_heap_allocate()
398 exp_info.priv = buffer; in system_heap_allocate()
399 dmabuf = dma_buf_export(&exp_info); in system_heap_allocate()
427 struct dma_heap_export_info exp_info; in system_heap_create() local
429 exp_info.name = "system"; in system_heap_create()
430 exp_info.ops = &system_heap_ops; in system_heap_create()
431 exp_info.priv = NULL; in system_heap_create()
433 sys_heap = dma_heap_add(&exp_info); in system_heap_create()