Home | History | Annotate | Download | only in src

Lines Matching refs:tempBuf

1184     struct v4l2_buffer          tempBuf;
1217 memset(&tempBuf, 0, sizeof(tempBuf));
1219 tempBuf.index = camHal->n_buffers;
1220 tempBuf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1221 tempBuf.memory = V4L2_MEMORY_MMAP;
1223 if (-1 == ioctlLoop(camHal->fd, VIDIOC_QUERYBUF, &tempBuf))
1228 camHal->buffers[camHal->n_buffers].len = tempBuf.length;
1231 tempBuf.length,
1234 camHal->fd, tempBuf.m.offset);
1400 struct v4l2_buffer tempBuf;
1402 memset(&tempBuf, 0, sizeof(tempBuf));
1403 tempBuf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1404 tempBuf.memory = V4L2_MEMORY_MMAP;
1405 tempBuf.index = i;
1407 if (-1 == ioctlLoop(camHal->fd, VIDIOC_QBUF, &tempBuf))