Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for syscall0 (0.17 sec)

  1. src/syscall/zerrors_freebsd_386.go

    // mkerrors.sh -m32
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m32 _const.go
    
    //go:build 386 && freebsd
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_ARP                            = 0x23
    	AF_ATM                            = 0x1e
    	AF_BLUETOOTH                      = 0x24
    	AF_CCITT                          = 0xa
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.4K bytes
    - Viewed (0)
  2. src/syscall/zerrors_freebsd_amd64.go

    // mkerrors.sh -m64
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m64 _const.go
    
    //go:build amd64 && freebsd
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_ARP                            = 0x23
    	AF_ATM                            = 0x1e
    	AF_BLUETOOTH                      = 0x24
    	AF_CCITT                          = 0xa
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.4K bytes
    - Viewed (0)
  3. src/syscall/zerrors_linux_riscv64.go

    // mkerrors.sh
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- _const.go
    
    package syscall
    
    const (
    	AF_ALG                           = 0x26
    	AF_APPLETALK                     = 0x5
    	AF_ASH                           = 0x12
    	AF_ATMPVC                        = 0x8
    	AF_ATMSVC                        = 0x14
    	AF_AX25                          = 0x3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 70.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go

    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build darwin && arm64
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  5. src/syscall/zerrors_linux_arm64.go

    // mkerrors.sh
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- _const.go
    
    //go:build arm64 && linux
    
    package syscall
    
    const (
    	AF_ALG                           = 0x26
    	AF_APPLETALK                     = 0x5
    	AF_ASH                           = 0x12
    	AF_ATMPVC                        = 0x8
    	AF_ATMSVC                        = 0x14
    	AF_AX25                          = 0x3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 68.6K bytes
    - Viewed (0)
  6. src/syscall/zerrors_linux_ppc64le.go

    // mkerrors.sh -m64
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m64 _const.go
    
    //go:build ppc64le && linux
    
    package syscall
    
    const (
    	AF_ALG                           = 0x26
    	AF_APPLETALK                     = 0x5
    	AF_ASH                           = 0x12
    	AF_ATMPVC                        = 0x8
    	AF_ATMSVC                        = 0x14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 71.8K bytes
    - Viewed (0)
  7. src/syscall/zerrors_linux_loong64.go

    // mkerrors.sh
    // Code generated by the command above; DO NOT EDIT.
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- _const.go
    
    package syscall
    
    const (
    	AF_ALG                            = 0x26
    	AF_APPLETALK                      = 0x5
    	AF_ASH                            = 0x12
    	AF_ATMPVC                         = 0x8
    	AF_ATMSVC                         = 0x14
    	AF_AX25                           = 0x3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 82.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build zos && s390x
    
    package unix
    
    import (
    	"runtime"
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fcntl(fd int, cmd int, arg int) (val int, err error) {
    	runtime.EnterSyscall()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  9. src/os/os_test.go

    	}
    	if perr, ok := err.(*PathError); !ok || perr.Err != syscall.ESPIPE {
    		t.Errorf("Seek returned error %v, want &PathError{Err: syscall.ESPIPE}", err)
    	}
    	_, err = w.Seek(0, 0)
    	if err == nil {
    		t.Fatal("Seek on pipe should fail")
    	}
    	if perr, ok := err.(*PathError); !ok || perr.Err != syscall.ESPIPE {
    		t.Errorf("Seek returned error %v, want &PathError{Err: syscall.ESPIPE}", err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    // license that can be found in the LICENSE file.
    
    //go:build !js
    
    package pprof
    
    import (
    	"bytes"
    	"context"
    	"fmt"
    	"internal/abi"
    	"internal/profile"
    	"internal/syscall/unix"
    	"internal/testenv"
    	"io"
    	"math"
    	"math/big"
    	"os"
    	"regexp"
    	"runtime"
    	"runtime/debug"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    	_ "unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top