Searched defs:expbuf (Results 1 - 5 of 5) sorted by relevance

/external/ltp/testcases/kernel/mem/mmapstress/
H A Dmmapstress09.c100 int mapokay(uchar_t * expbuf);
437 int mapokay(uchar_t * expbuf) argument
448 if (*ptr != expbuf[j]) {
451 expbuf[j], *ptr);
H A Dmmapstress01.c118 int fileokay(char *file, uchar_t * expbuf);
596 int fileokay(char *file, uchar_t * expbuf) argument
677 if (expbuf[j] != readbuf[j]) {
680 expbuf[j], readbuf[j]);
H A Dmmapstress10.c130 int fileokay(char *file, uchar_t * expbuf);
785 int fileokay(char *file, uchar_t * expbuf) argument
857 if (expbuf[j] != readbuf[j] && readbuf[j] != 0) {
860 expbuf[j], readbuf[j]);
/external/libxcam/xcore/
H A Dv4l2_device.cpp496 struct v4l2_exportbuffer expbuf; local
497 xcam_mem_clear (expbuf);
498 expbuf.type = _capture_buf_type;
499 expbuf.index = index;
500 expbuf.flags = O_CLOEXEC;
501 if (io_control (VIDIOC_EXPBUF, &expbuf) < 0) {
505 v4l2_buf.m.fd = expbuf.fd;
/external/v4l2_codec2/vda/
H A Dv4l2_device.cc255 struct v4l2_exportbuffer expbuf; local
256 memset(&expbuf, 0, sizeof(expbuf));
257 expbuf.type = buf_type;
258 expbuf.index = index;
259 expbuf.plane = i;
260 expbuf.flags = O_CLOEXEC;
261 if (Ioctl(VIDIOC_EXPBUF, &expbuf) != 0) {
266 dmabuf_fds.push_back(base::ScopedFD(expbuf.fd));

Completed in 225 milliseconds