Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for syscall0 (0.17 sec)

  1. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const AF_DATAKIT ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_DECnet = 12
    pkg syscall (netbsd-arm64-cgo), const AF_DECnet ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_DLI = 13
    pkg syscall (netbsd-arm64-cgo), const AF_DLI ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_E164 = 26
    pkg syscall (netbsd-arm64-cgo), const AF_E164 ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_ECMA = 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  2. api/go1.16.txt

    pkg syscall (darwin-amd64), func SetBpfDatalink //deprecated
    pkg syscall (darwin-amd64), func SetBpfHeadercmpl //deprecated
    pkg syscall (darwin-amd64), func SetBpfImmediate //deprecated
    pkg syscall (darwin-amd64), func SetBpfInterface //deprecated
    pkg syscall (darwin-amd64), func SetBpfPromisc //deprecated
    pkg syscall (darwin-amd64), func SetBpfTimeout //deprecated
    pkg syscall (darwin-amd64), func StringSlicePtr //deprecated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	STR:             "STR",
    	SUB:             "SUB",
    	SUBPD:           "SUBPD",
    	SUBPS:           "SUBPS",
    	SUBSD:           "SUBSD",
    	SUBSS:           "SUBSS",
    	SWAPGS:          "SWAPGS",
    	SYSCALL:         "SYSCALL",
    	SYSENTER:        "SYSENTER",
    	SYSEXIT:         "SYSEXIT",
    	SYSRET:          "SYSRET",
    	TEST:            "TEST",
    	TZCNT:           "TZCNT",
    	UCOMISD:         "UCOMISD",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Overrun   uint32
    	Trapno    uint32
    	Status    int32
    	Int       int32
    	Ptr       uint64
    	Utime     uint64
    	Stime     uint64
    	Addr      uint64
    	Addr_lsb  uint16
    	_         uint16
    	Syscall   int32
    	Call_addr uint64
    	Arch      uint32
    	_         [28]uint8
    }
    
    type Winsize struct {
    	Row    uint16
    	Col    uint16
    	Xpixel uint16
    	Ypixel uint16
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	// have a way to bundle this into std's net/http somehow.
    	if runtime.GOOS == "windows" {
    		if oe, ok := err.(*net.OpError); ok && oe.Op == "read" {
    			if se, ok := oe.Err.(*os.SyscallError); ok && se.Syscall == "wsarecv" {
    				const WSAECONNABORTED = 10053
    				const WSAECONNRESET = 10054
    				if n := http2errno(se.Err); n == WSAECONNRESET || n == WSAECONNABORTED {
    					return true
    				}
    			}
    		}
    	}
    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