Searched refs:msgh (Results 1 - 2 of 2) sorted by relevance

/external/bluetooth/bluez/audio/
H A Dipc.c87 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); cms
[all...]
H A Dunix.c147 struct msghdr msgh; local
149 memset(&msgh, 0, sizeof(msgh));
150 msgh.msg_iov = &iov;
151 msgh.msg_iovlen = 1;
152 msgh.msg_control = &cmsg_b;
153 msgh.msg_controllen = CMSG_LEN(sizeof(int));
155 cmsg = CMSG_FIRSTHDR(&msgh);
162 return sendmsg(sock, &msgh, MSG_NOSIGNAL);

Completed in 48 milliseconds