Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for SetIovlen (0.14 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go

    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint32(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint32(length)
    }
    
    func (msghdr *Msghdr) SetIovlen(length int) {
    	msghdr.Iovlen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    func (rsa *RawSockaddrNFCLLCP) SetServiceNameLen(length int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_arm.go

    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint32(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint32(length)
    }
    
    func (msghdr *Msghdr) SetIovlen(length int) {
    	msghdr.Iovlen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    func (rsa *RawSockaddrNFCLLCP) SetServiceNameLen(length int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    			iova[0].Base = &dummy
    			iova[0].SetLen(1)
    			iov = iova[:]
    		}
    		msg.Control = (*byte)(unsafe.Pointer(&oob[0]))
    		msg.SetControllen(len(oob))
    	}
    	if len(iov) > 0 {
    		msg.Iov = &iov[0]
    		msg.SetIovlen(len(iov))
    	}
    	if n, err = recvmsg(fd, &msg, flags); n == -1 {
    		return
    	}
    	oobn = int(msg.Controllen)
    	recvflags = int(msg.Flags)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    			iova[0].Base = &dummy
    			iova[0].SetLen(1)
    			iov = iova[:]
    		}
    		msg.Control = (*byte)(unsafe.Pointer(&oob[0]))
    		msg.SetControllen(len(oob))
    	}
    	if len(iov) > 0 {
    		msg.Iov = &iov[0]
    		msg.SetIovlen(len(iov))
    	}
    	if n, err = recvmsg(fd, &msg, flags); err != nil {
    		return
    	}
    	oobn = int(msg.Controllen)
    	recvflags = int(msg.Flags)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_386.go

    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint32(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint32(length)
    }
    
    func (msghdr *Msghdr) SetIovlen(length int) {
    	msghdr.Iovlen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    }
    
    func (rsa *RawSockaddrNFCLLCP) SetServiceNameLen(length int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go

    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint64(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint64(length)
    }
    
    func (msghdr *Msghdr) SetIovlen(length int) {
    	msghdr.Iovlen = uint64(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint64(length)
    }
    
    func (rsa *RawSockaddrNFCLLCP) SetServiceNameLen(length int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    			var iova [1]Iovec
    			iova[0].Base = &dummy
    			iova[0].SetLen(1)
    			iov = iova[:]
    		}
    		msg.Accrightslen = int32(len(oob))
    	}
    	if len(iov) > 0 {
    		msg.Iov = &iov[0]
    		msg.SetIovlen(len(iov))
    	}
    	if n, err = recvmsg(fd, &msg, flags); n == -1 {
    		return
    	}
    	oobn = int(msg.Accrightslen)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    				iova[0].Base = &dummy
    				iova[0].SetLen(1)
    				iov = iova[:]
    			}
    		}
    		msg.Control = &oob[0]
    		msg.SetControllen(len(oob))
    	}
    	if len(iov) > 0 {
    		msg.Iov = &iov[0]
    		msg.SetIovlen(len(iov))
    	}
    	if n, err = recvmsg(fd, &msg, flags); err != nil {
    		return
    	}
    	oobn = int(msg.Controllen)
    	recvflags = int(msg.Flags)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top