Lines Matching refs:exp_info
172 DEFINE_DMA_BUF_EXPORT_INFO(exp_info); in __tee_shm_alloc()
174 exp_info.ops = &tee_shm_dma_buf_ops; in __tee_shm_alloc()
175 exp_info.size = shm->size; in __tee_shm_alloc()
176 exp_info.flags = O_RDWR; in __tee_shm_alloc()
177 exp_info.priv = shm; in __tee_shm_alloc()
179 shm->dmabuf = dma_buf_export(&exp_info); in __tee_shm_alloc()
303 DEFINE_DMA_BUF_EXPORT_INFO(exp_info); in tee_shm_register()
305 exp_info.ops = &tee_shm_dma_buf_ops; in tee_shm_register()
306 exp_info.size = shm->size; in tee_shm_register()
307 exp_info.flags = O_RDWR; in tee_shm_register()
308 exp_info.priv = shm; in tee_shm_register()
310 shm->dmabuf = dma_buf_export(&exp_info); in tee_shm_register()