Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for __errno (0.15 sec)

  1. api/go1.16.txt

    pkg syscall (darwin-arm64), const EAUTH Errno
    pkg syscall (darwin-arm64), const EBADARCH = 86
    pkg syscall (darwin-arm64), const EBADARCH Errno
    pkg syscall (darwin-arm64), const EBADEXEC = 85
    pkg syscall (darwin-arm64), const EBADEXEC Errno
    pkg syscall (darwin-arm64), const EBADF = 9
    pkg syscall (darwin-arm64), const EBADMACHO = 88
    pkg syscall (darwin-arm64), const EBADMACHO Errno
    pkg syscall (darwin-arm64), const EBADMSG = 94
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const EPROCLIM Errno
    pkg syscall (netbsd-arm64-cgo), const EPROCUNAVAIL = 76
    pkg syscall (netbsd-arm64-cgo), const EPROCUNAVAIL Errno
    pkg syscall (netbsd-arm64-cgo), const EPROGMISMATCH = 75
    pkg syscall (netbsd-arm64-cgo), const EPROGMISMATCH Errno
    pkg syscall (netbsd-arm64-cgo), const EPROGUNAVAIL = 74
    pkg syscall (netbsd-arm64-cgo), const EPROGUNAVAIL Errno
    pkg syscall (netbsd-arm64-cgo), const EPROTO = 96
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	POLLOUT  = 0x4
    	POLLERR  = 0x8
    	POLLHUP  = 0x10
    	POLLNVAL = 0x20
    )
    
    type sigset_argpack struct {
    	ss    *Sigset_t
    	ssLen uintptr
    }
    
    type SignalfdSiginfo struct {
    	Signo     uint32
    	Errno     int32
    	Code      int32
    	Pid       uint32
    	Uid       uint32
    	Fd        int32
    	Tid       uint32
    	Band      uint32
    	Overrun   uint32
    	Trapno    uint32
    	Status    int32
    	Int       int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    func (sc *http2serverConn) logf(format string, args ...interface{}) {
    	if lg := sc.hs.ErrorLog; lg != nil {
    		lg.Printf(format, args...)
    	} else {
    		log.Printf(format, args...)
    	}
    }
    
    // errno returns v's underlying uintptr, else 0.
    //
    // TODO: remove this helper function once http2 can use build
    // tags. See comment in isClosedConnError.
    func http2errno(v error) uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top