HomeSort by relevance Sort by last modified time
    Searched refs:msgh (Results 1 - 7 of 7) 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/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...]
  /hardware/qcom/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...]
  /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 390 struct msghdr msgh = {0}; local
392 msgh.msg_iov = &iov;
393 msgh.msg_iovlen = 1;
417 msgh.msg_control = buf;
418 msgh.msg_controllen = CMSG_SPACE(sizeof(int) * num_fds);
419 cmsg = CMSG_FIRSTHDR(&msgh);
425 msgh.msg_controllen = cmsg->cmsg_len;
437 msgh.msg_iov = &fd_pipe_iov;
439 bytes_written = HANDLE_EINTR(sendmsg(fd_pipe_, &msgh, MSG_DONTWAIT));
440 msgh.msg_iov = &iov
    [all...]
ipc_channel_nacl.cc 271 NaClAbiNaClImcMsgHdr msgh = { &iov, 1, fds, num_fds }; local
272 ssize_t bytes_written = imc_sendmsg(pipe_, &msgh, 0);

Completed in 373 milliseconds