Home
last modified time | relevance | path

Searched refs:dma_fd (Results 1 – 7 of 7) sorted by relevance

/external/libxcam/xcore/
Ddma_video_buffer.cpp37 DmaVideoBuffer::DmaVideoBuffer (const VideoBufferInfo &info, int dma_fd, bool need_close_fd) in DmaVideoBuffer() argument
39 , _dma_fd (dma_fd) in DmaVideoBuffer()
42 XCAM_ASSERT (dma_fd >= 0); in DmaVideoBuffer()
Ddrm_display.cpp512 int dma_fd = 0; in convert_to_drm_bo_buf() local
524 dma_fd = buf_in->get_fd (); in convert_to_drm_bo_buf()
525 if (dma_fd < 0) { in convert_to_drm_bo_buf()
530 bo = drm_intel_bo_gem_create_from_prime (_buf_manager, dma_fd, video_info.size); in convert_to_drm_bo_buf()
536 bo_data->set_prime_fd (dma_fd, false); in convert_to_drm_bo_buf()
Ddma_video_buffer.h33 DmaVideoBuffer (const VideoBufferInfo &info, int dma_fd, bool need_close_fd = false);
/external/libxcam/wrapper/gstreamer/
Dgst_xcam_utils.h30 DmaGstBuffer (const XCam::VideoBufferInfo &info, int dma_fd, GstBuffer *gst_buf) in DmaGstBuffer() argument
31 : XCam::DmaVideoBuffer (info, dma_fd) in DmaGstBuffer()
Dgstxcamfilter.cpp899 gint dma_fd = get_dmabuf_fd (buffer); in gst_xcam_filter_before_transform() local
900 if (dma_fd >= 0) { in gst_xcam_filter_before_transform()
906 SmartPtr<VideoBuffer> dma_buf = new DmaGstBuffer (info, dma_fd, buffer); in gst_xcam_filter_before_transform()
/external/libdrm/amdgpu/
Damdgpu_bo.c182 int fd, dma_fd; in amdgpu_bo_export_flink() local
194 &dma_fd); in amdgpu_bo_export_flink()
196 r = drmPrimeFDToHandle(bo->dev->flink_fd, dma_fd, &handle); in amdgpu_bo_export_flink()
197 close(dma_fd); in amdgpu_bo_export_flink()
264 int dma_fd; in amdgpu_bo_import() local
350 r = drmPrimeHandleToFD(dev->flink_fd, bo->handle, DRM_CLOEXEC, &dma_fd); in amdgpu_bo_import()
356 r = drmPrimeFDToHandle(dev->fd, dma_fd, &bo->handle ); in amdgpu_bo_import()
358 close(dma_fd); in amdgpu_bo_import()
/external/libxcam/tests/
Dtest-image-blend.cpp107 SmartPtr<DrmDisplay> display, int dma_fd, in dma_buf_to_xcam_buf() argument
121 XCAM_ASSERT (dma_fd > 0); in dma_buf_to_xcam_buf()
129 dma_buf = new DmaVideoBuffer (info, dma_fd); in dma_buf_to_xcam_buf()
132 XCAM_LOG_ERROR ("dma_buf(%d) convert to xcam_buf failed", dma_fd); in dma_buf_to_xcam_buf()