HomeSort by relevance Sort by last modified time
    Searched refs:msgh (Results 1 - 9 of 9) sorted by null

  /device/asus/flo/camera/QCamera2/stack/mm-camera-interface/src/
mm_camera_sock.c 121 struct msghdr msgh; local
130 memset(&msgh, 0, sizeof(msgh));
131 msgh.msg_name = NULL;
132 msgh.msg_namelen = 0;
136 msgh.msg_iov = iov;
137 msgh.msg_iovlen = 1;
140 msgh.msg_control = NULL;
141 msgh.msg_controllen = 0;
145 msgh.msg_control = control
182 struct msghdr msgh; local
    [all...]
  /device/lge/hammerhead/camera/QCamera2/stack/mm-camera-interface/src/
mm_camera_sock.c 121 struct msghdr msgh; local
130 memset(&msgh, 0, sizeof(msgh));
131 msgh.msg_name = NULL;
132 msgh.msg_namelen = 0;
136 msgh.msg_iov = iov;
137 msgh.msg_iovlen = 1;
140 msgh.msg_control = NULL;
141 msgh.msg_controllen = 0;
145 msgh.msg_control = control
182 struct msghdr msgh; local
    [all...]
  /device/lge/mako/camera/QCamera/stack/mm-camera-interface/src/
mm_camera_sock.c 116 struct msghdr msgh; local
125 memset(&msgh, 0, sizeof(msgh));
126 msgh.msg_name = NULL;
127 msgh.msg_namelen = 0;
131 msgh.msg_iov = iov;
132 msgh.msg_iovlen = 1;
135 msgh.msg_control = NULL;
136 msgh.msg_controllen = 0;
140 msgh.msg_control = control
176 struct msghdr msgh; local
    [all...]
  /device/lge/mako/camera/mm-camera-interface/
mm_camera_sock.c 116 struct msghdr msgh; local
125 memset(&msgh, 0, sizeof(msgh));
126 msgh.msg_name = NULL;
127 msgh.msg_namelen = 0;
131 msgh.msg_iov = iov;
132 msgh.msg_iovlen = 1;
135 msgh.msg_control = NULL;
136 msgh.msg_controllen = 0;
140 msgh.msg_control = control
176 struct msghdr msgh; local
    [all...]
  /device/moto/shamu/camera/QCamera/stack/mm-camera-interface/src/
mm_camera_sock.c 116 struct msghdr msgh; local
125 memset(&msgh, 0, sizeof(msgh));
126 msgh.msg_name = NULL;
127 msgh.msg_namelen = 0;
131 msgh.msg_iov = iov;
132 msgh.msg_iovlen = 1;
135 msgh.msg_control = NULL;
136 msgh.msg_controllen = 0;
140 msgh.msg_control = control;
176 struct msghdr msgh; local
    [all...]
  /device/moto/shamu/camera/QCamera2/stack/mm-camera-interface/src/
mm_camera_sock.c 121 struct msghdr msgh; local
131 memset(&msgh, 0, sizeof(msgh));
132 msgh.msg_name = NULL;
133 msgh.msg_namelen = 0;
137 msgh.msg_iov = iov;
138 msgh.msg_iovlen = 1;
142 msgh.msg_control = NULL;
143 msgh.msg_controllen = 0;
147 msgh.msg_control = control
184 struct msghdr msgh; local
    [all...]
  /external/iputils/ninfod/
ninfod.c 290 struct msghdr msgh; local
301 memset(&msgh, 0, sizeof(msgh));
302 msgh.msg_name = (struct sockaddr *)&p->addr;
303 msgh.msg_namelen = sizeof(p->addr);
304 msgh.msg_iov = iov;
305 msgh.msg_iovlen = 1;
306 msgh.msg_control = recvcbuf;
307 msgh.msg_controllen = sizeof(recvcbuf);
309 if ((cc = recvmsg(sock, &msgh, 0)) < 0
336 struct msghdr msgh; local
    [all...]
  /external/chromium_org/ipc/
ipc_channel_posix.cc 402 struct msghdr msgh = {0}; local
404 msgh.msg_iov = &iov;
405 msgh.msg_iovlen = 1;
429 msgh.msg_control = buf;
430 msgh.msg_controllen = CMSG_SPACE(sizeof(int) * num_fds);
431 cmsg = CMSG_FIRSTHDR(&msgh);
437 msgh.msg_controllen = cmsg->cmsg_len;
449 msgh.msg_iov = &fd_pipe_iov;
451 bytes_written = HANDLE_EINTR(sendmsg(fd_pipe_, &msgh, MSG_DONTWAIT));
452 msgh.msg_iov = &iov
    [all...]
ipc_channel_nacl.cc 282 NaClAbiNaClImcMsgHdr msgh = { &iov, 1, fds, num_fds }; local
283 ssize_t bytes_written = imc_sendmsg(pipe_, &msgh, 0);

Completed in 379 milliseconds