Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Readv (0.3 sec)

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

    	return uintptr(offs), uintptr(uint64(offs) >> (longBits - 1) >> 1) // two shifts to avoid false positive in vet
    }
    
    func Readv(fd int, iovs [][]byte) (n int, err error) {
    	iovecs := make([]Iovec, 0, minIovec)
    	iovecs = appendBytes(iovecs, iovs)
    	n, err = readv(fd, iovecs)
    	readvRacedetect(iovecs, n, err)
    	return n, err
    }
    
    func Preadv(fd int, iovs [][]byte, offset int64) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    	_, _, e1 := Syscall(SYS_EXIT, uintptr(code), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func readv(fd int, iovs []Iovec) (n int, err error) {
    	var _p0 unsafe.Pointer
    	if len(iovs) > 0 {
    		_p0 = unsafe.Pointer(&iovs[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. src/syscall/zerrors_solaris_amd64.go

    	WUNTRACED                     = 0x4
    )
    
    // Errors
    const (
    	E2BIG           = Errno(0x7)
    	EACCES          = Errno(0xd)
    	EADDRINUSE      = Errno(0x7d)
    	EADDRNOTAVAIL   = Errno(0x7e)
    	EADV            = Errno(0x44)
    	EAFNOSUPPORT    = Errno(0x7c)
    	EAGAIN          = Errno(0xb)
    	EALREADY        = Errno(0x95)
    	EBADE           = Errno(0x32)
    	EBADF           = Errno(0x9)
    	EBADFD          = Errno(0x51)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
Back to top