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

  /external/bluetooth/bluez/audio/
ipc.c 87 struct msghdr msgh; local
90 memset(&msgh, 0, sizeof(msgh));
91 msgh.msg_iov = &iov;
92 msgh.msg_iovlen = 1;
93 msgh.msg_control = &cmsg_b;
94 msgh.msg_controllen = CMSG_LEN(sizeof(int));
96 ret = recvmsg(sk, &msgh, 0);
105 /* Receive auxiliary data in msgh */
106 for (cmsg = CMSG_FIRSTHDR(&msgh); cmsg != NULL
    [all...]
unix.c 126 struct msghdr msgh; local
128 memset(&msgh, 0, sizeof(msgh));
129 msgh.msg_iov = &iov;
130 msgh.msg_iovlen = 1;
131 msgh.msg_control = &cmsg_b;
132 msgh.msg_controllen = CMSG_LEN(sizeof(int));
134 cmsg = CMSG_FIRSTHDR(&msgh);
141 return sendmsg(sock, &msgh, MSG_NOSIGNAL);
    [all...]

Completed in 2188 milliseconds