Lines Matching refs:req
1262 struct v4l2_requestbuffers req; in stopPreview() local
1263 req.count = 0; in stopPreview()
1264 req.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE; in stopPreview()
1265 req.memory = V4L2_MEMORY_DMABUF; in stopPreview()
1267 if (exynos_v4l2_reqbufs(m_previewDev->fd, &req) < 0) { in stopPreview()
1473 struct v4l2_requestbuffers req; in stopVideo() local
1474 req.count = 0; in stopVideo()
1475 req.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE; in stopVideo()
1476 req.memory = V4L2_MEMORY_DMABUF; in stopVideo()
1478 if (exynos_v4l2_reqbufs(m_videoDev->fd, &req) < 0) { in stopVideo()
1656 struct v4l2_requestbuffers req; in stopPicture() local
1657 req.count = 0; in stopPicture()
1658 req.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE; in stopPicture()
1659 req.memory = V4L2_MEMORY_DMABUF; in stopPicture()
1661 if (exynos_v4l2_reqbufs(m_pictureDev->fd, &req) < 0) { in stopPicture()
3456 struct v4l2_requestbuffers req; in m_setWidthHeight() local
3457 req.count = numOfBuf; in m_setWidthHeight()
3458 req.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE; in m_setWidthHeight()
3459 req.memory = V4L2_MEMORY_DMABUF; in m_setWidthHeight()
3461 if (exynos_v4l2_reqbufs(fd, &req) < 0) { in m_setWidthHeight()