HomeSort by relevance Sort by last modified time
    Searched refs:cmsg (Results 226 - 250 of 251) sorted by null

1 2 3 4 5 6 7 8 91011

  /prebuilts/go/darwin-x86/src/syscall/
syscall_linux_arm64.go 119 func (cmsg *Cmsghdr) SetLen(length int) {
120 cmsg.Len = uint64(length)
syscall_linux_mips64x.go 198 func (cmsg *Cmsghdr) SetLen(length int) {
199 cmsg.Len = uint64(length)
syscall_linux_mipsx.go 220 func (cmsg *Cmsghdr) SetLen(length int) {
221 cmsg.Len = uint32(length)
syscall_linux_ppc64x.go 115 func (cmsg *Cmsghdr) SetLen(length int) {
116 cmsg.Len = uint64(length)
syscall_linux_386.go 376 func (cmsg *Cmsghdr) SetLen(length int) {
377 cmsg.Len = uint32(length)
syscall_linux_s390x.go 287 func (cmsg *Cmsghdr) SetLen(length int) {
288 cmsg.Len = uint64(length)
  /prebuilts/go/linux-x86/src/syscall/
syscall_linux_amd64.go 134 func (cmsg *Cmsghdr) SetLen(length int) {
135 cmsg.Len = uint64(length)
syscall_linux_arm.go 216 func (cmsg *Cmsghdr) SetLen(length int) {
217 cmsg.Len = uint32(length)
syscall_linux_arm64.go 119 func (cmsg *Cmsghdr) SetLen(length int) {
120 cmsg.Len = uint64(length)
syscall_linux_mips64x.go 198 func (cmsg *Cmsghdr) SetLen(length int) {
199 cmsg.Len = uint64(length)
syscall_linux_mipsx.go 220 func (cmsg *Cmsghdr) SetLen(length int) {
221 cmsg.Len = uint32(length)
syscall_linux_ppc64x.go 115 func (cmsg *Cmsghdr) SetLen(length int) {
116 cmsg.Len = uint64(length)
syscall_linux_386.go 376 func (cmsg *Cmsghdr) SetLen(length int) {
377 cmsg.Len = uint32(length)
syscall_linux_s390x.go 287 func (cmsg *Cmsghdr) SetLen(length int) {
288 cmsg.Len = uint64(length)
  /external/mdnsresponder/mDNSShared/
dnssd_clientstub.c 687 #define CMSG_DATA(cmsg) ((unsigned char *)(cmsg) + (sizeof(struct cmsghdr)))
696 struct cmsghdr *cmsg;
721 cmsg = CMSG_FIRSTHDR(&msg);
722 cmsg->cmsg_len = CMSG_LEN(sizeof(dnssd_sock_t));
723 cmsg->cmsg_level = SOL_SOCKET;
724 cmsg->cmsg_type = SCM_RIGHTS;
725 *((dnssd_sock_t *)CMSG_DATA(cmsg)) = listenfd;
736 (long)((char*)CMSG_DATA(cmsg) + 4 - cbuf));
    [all...]
uds_daemon.c 3610 struct cmsghdr *cmsg; local
    [all...]
  /external/netperf/src/
nettest_omni.c 2847 struct cmsghdr *cmsg; local
3088 struct cmsghdr *cmsg; local
    [all...]
  /external/iproute2/tc/
tc_bpf.c 1784 struct cmsghdr *cmsg; local
    [all...]
  /external/valgrind/include/vki/
vki-solaris.h     [all...]
vki-linux.h 640 __vki_kernel_size_t msg_controllen; /* Length of cmsg list */
655 #define __VKI_CMSG_NXTHDR(ctl, len, cmsg) __vki_cmsg_nxthdr((ctl),(len),(cmsg))
656 #define VKI_CMSG_NXTHDR(mhdr, cmsg) vki_cmsg_nxthdr((mhdr), (cmsg))
660 #define VKI_CMSG_DATA(cmsg) ((void *)((char *)(cmsg) + VKI_CMSG_ALIGN(sizeof(struct vki_cmsghdr))))
    [all...]
  /external/libpcap/
pcap-linux.c 1697 struct cmsghdr *cmsg; local
1699 struct cmsghdr cmsg; member in union:__anon24214
    [all...]
  /external/protobuf/python/google/protobuf/pyext/
descriptor.cc 229 CMessage* cmsg = reinterpret_cast<CMessage*>(value.get()); local
234 cmsg->message->CopyFrom(options);
242 bool success = cmsg->message->MergePartialFromCodedStream(&input);
    [all...]
  /kernel/tests/net/test/
ping6_test.py 820 data, addr, cmsg = csocket.Recvmsg(s, 4096, 1024, csocket.MSG_ERRQUEUE)
840 # Check the cmsg data, including the link MTU.
854 msglist[0][2][1].port = cmsg[0][2][1].port
856 self.assertEquals(msglist, cmsg)
  /external/libvncserver/webclients/novnc/include/
rfb.js 429 var cmsg = typeof(statusMsg) !== 'undefined' ? (" Msg: " + statusMsg) : "";
430 var fullmsg = "New state '" + state + "', was '" + oldstate + "'." + cmsg;
432 Util.Error(cmsg);
434 Util.Warn(cmsg);
    [all...]
  /external/llvm/bindings/go/llvm/
ir.go     [all...]

Completed in 2519 milliseconds

1 2 3 4 5 6 7 8 91011