repo_id stringlengths 21 96 | file_path stringlengths 31 155 | content stringlengths 1 92.9M | __index_level_0__ int64 0 0 |
|---|---|---|---|
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/fcntl_darwin.go | // Copyright 2019 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package unix
import "unsafe"
// FcntlInt performs a fcntl syscall on fd with the provided command and argument.
func FcntlInt(fd uintptr, cmd, arg int) (int, ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/dev_linux.go | // Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Functions to access/create device major and minor numbers matching the
// encoding used by the Linux kernel and glibc.
//
// The information below is extract... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go | // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build ppc && linux
// +build ppc,linux
package unix
const (
SYS_RESTART_SYSCALL = 0
SYS_EXIT = 1
SYS_FORK ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.s | // go run mkasm_darwin.go amd64
// Code generated by the command above; DO NOT EDIT.
//go:build go1.13
// +build go1.13
#include "textflag.h"
TEXT libc_fdopendir_trampoline<>(SB),NOSPLIT,$0-0
JMP libc_fdopendir(SB)
GLOBL ·libc_fdopendir_trampoline_addr(SB), RODATA, $8
DATA ·libc_fdopendir_trampoline_addr(SB)/8, $l... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go | // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build amd64 && linux
// +build amd64,linux
package unix
//sys EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error)
//sys Fadvise(fd int,... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go | // mkerrors.sh -Wall -Werror -static -I/tmp/include -fsigned-char
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build arm64 && linux
// +build arm64,linux
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
// cgo -godefs -- -Wall -Werror -static -I/tmp/include -fsigned-char /build/unix/_con... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/README.md | # Building `sys/unix`
The sys/unix package provides access to the raw system call interface of the
underlying operating system. See: https://godoc.org/golang.org/x/sys/unix
Porting Go to a new architecture/OS combination or adding syscalls, types, or
constants to an existing architecture/OS pair requires some manual ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go | // go run mksysnum.go https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build mips64 && openbsd
// +build mips64,openbsd
package unix
const (
SYS_EXIT = 1 // { void sys_exit(int rval); }
SYS_FORK ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go | // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build arm && gc && linux
// +build arm,gc,linux
package unix
import "syscall"
// Underlying system call writes to newoffset via pointer.
// Implemented ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go | // go run mksyscall.go -tags linux,mips64 syscall_linux.go syscall_linux_mips64x.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build linux && mips64
// +build linux,mips64
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT THE ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/dev_darwin.go | // Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Functions to access/create device major and minor numbers matching the
// encoding used in Darwin's sys/types.h header.
package unix
// Major returns the m... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go | // go run mksyscall.go -tags freebsd,arm64 syscall_bsd.go syscall_freebsd.go syscall_freebsd_arm64.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build freebsd && arm64
// +build freebsd,arm64
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go | // Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build zos && s390x
// +build zos,s390x
// Hand edited based on zerrors_linux_s390x.go
// TODO: auto-generate.
package unix
const (
BRKINT ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go | // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build 386 && freebsd
// +build 386,freebsd
package unix
import (
"syscall"
"unsafe"
)
func setTimespec(sec, nsec int64) Timespec {
return Timespec{Se... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/unveil_openbsd.go | // Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package unix
import (
"syscall"
"unsafe"
)
// Unveil implements the unveil syscall.
// For more information see unveil(2).
// Note that the special case of ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/asm_linux_amd64.s | // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build gc
// +build gc
#include "textflag.h"
//
// System calls for AMD64, Linux
//
// Just jump to package syscall's implementation for all these functi... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go | // go run mksyscall.go -tags linux,s390x syscall_linux.go syscall_linux_s390x.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build linux && s390x
// +build linux,s390x
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_13.go | // go run mksyscall.go -tags darwin,arm64,go1.13 syscall_darwin.1_13.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build darwin && arm64 && go1.13
// +build darwin,arm64,go1.13
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go | // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build 386 && netbsd
// +build 386,netbsd
package unix
func setTimespec(sec, nsec int64) Timespec {
return Timespec{Sec: sec, Nsec: int32(nsec)}
}
func ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/pagesize_unix.go | // Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris
/... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go | // go run mksysctl_openbsd.go
// Code generated by the command above; DO NOT EDIT.
//go:build amd64 && openbsd
// +build amd64,openbsd
package unix
type mibentry struct {
ctlname string
ctloid []_C_int
}
var sysctlMib = []mibentry{
{"ddb.console", []_C_int{9, 6}},
{"ddb.log", []_C_int{9, 7}},
{"ddb.max_line",... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go | // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include -m64 /tmp/include/asm/unistd.h
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build amd64 && linux
// +build amd64,linux
package unix
const (
SYS_READ = 0
SYS_WRITE = 1
SYS_OPEN ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go | // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build mipsle && linux
// +build mipsle,linux
package unix
const (
SYS_SYSCALL = 4000
SYS_EXIT = 4001
SYS_... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/xattr_bsd.go | // Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build freebsd || netbsd
// +build freebsd netbsd
package unix
import (
"strings"
"unsafe"
)
// Derive extattr namespace and attribute name
func xattr... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go | // go run mksysnum.go https://svn.freebsd.org/base/stable/11/sys/kern/syscalls.master
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build amd64 && freebsd
// +build amd64,freebsd
package unix
const (
// SYS_NOSYS = 0; // { int nosys(void); } syscall nosys_args int
SYS_EXIT ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/dev_dragonfly.go | // Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Functions to access/create device major and minor numbers matching the
// encoding used in Dragonfly's sys/types.h header.
//
// The information below is ext... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go | // go run mksyscall_aix_ppc64.go -aix -tags aix,ppc64 syscall_aix.go syscall_aix_ppc64.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build aix && ppc64 && gc
// +build aix,ppc64,gc
package unix
import (
"unsafe"
)
//go:cgo_import_dynamic libc_utimes utimes "libc.a/shr_64.o"
//go:cgo_i... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go | // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build linux && (ppc64 || ppc64le)
// +build linux
// +build ppc64 ppc64le
package unix
//sys EpollWait(epfd int, events []EpollEvent, msec int) (n int, e... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go | // Code generated by linux/mkall.go generatePtracePair("arm", "arm64"). DO NOT EDIT.
//go:build linux && (arm || arm64)
// +build linux
// +build arm arm64
package unix
import "unsafe"
// PtraceRegsArm is the registers used by arm binaries.
type PtraceRegsArm struct {
Uregs [18]uint32
}
// PtraceGetRegsArm fetche... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/asm_zos_s390x.s | // Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build zos && s390x && gc
// +build zos
// +build s390x
// +build gc
#include "textflag.h"
#define PSALAA 1208(R0)
#define GTAB64(x) ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_13.s | // go run mkasm_darwin.go arm64
// Code generated by the command above; DO NOT EDIT.
//go:build go1.13
// +build go1.13
#include "textflag.h"
TEXT libc_fdopendir_trampoline<>(SB),NOSPLIT,$0-0
JMP libc_fdopendir(SB)
GLOBL ·libc_fdopendir_trampoline_addr(SB), RODATA, $8
DATA ·libc_fdopendir_trampoline_addr(SB)/8, $l... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/errors_freebsd_386.go | // Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Constants that were deprecated or moved to enums in the FreeBSD headers. Keep
// them here for backwards compatibility.
package unix
const (
DLT_HHDLC ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go | // go run mksyscall.go -tags freebsd,amd64 syscall_bsd.go syscall_freebsd.go syscall_freebsd_amd64.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build freebsd && amd64
// +build freebsd,amd64
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go | // cgo -godefs types_dragonfly.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build amd64 && dragonfly
// +build amd64,dragonfly
package unix
const (
SizeofPtr = 0x8
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLong = 0x8
SizeofLongLong = 0x8
)
type (... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go | // go run mksyscall.go -tags darwin,arm64,go1.12 syscall_bsd.go syscall_darwin.go syscall_darwin_arm64.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build darwin && arm64 && go1.12
// +build darwin,arm64,go1.12
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS F... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go | // go run mksysctl_openbsd.go
// Code generated by the command above; DO NOT EDIT.
//go:build mips64 && openbsd
// +build mips64,openbsd
package unix
type mibentry struct {
ctlname string
ctloid []_C_int
}
var sysctlMib = []mibentry{
{"ddb.console", []_C_int{9, 6}},
{"ddb.log", []_C_int{9, 7}},
{"ddb.max_line... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go | // Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build aix && ppc
// +build aix,ppc
package unix
//sysnb Getrlimit(resource int, rlim *Rlimit) (err error) = getrlimit64
//sysnb Setrlimit(resource int, r... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/str.go | // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris
p... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_linux_386.go | // mkerrors.sh -Wall -Werror -static -I/tmp/include -m32
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build 386 && linux
// +build 386,linux
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
// cgo -godefs -- -Wall -Werror -static -I/tmp/include -m32 /build/unix/_const.go
package unix
i... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go | // go run mksyscall.go -dragonfly -tags dragonfly,amd64 syscall_bsd.go syscall_dragonfly.go syscall_dragonfly_amd64.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build dragonfly && amd64
// +build dragonfly,amd64
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go | // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build 386 && openbsd
// +build 386,openbsd
package unix
func setTimespec(sec, nsec int64) Timespec {
return Timespec{Sec: sec, Nsec: int32(nsec)}
}
fun... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go | // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include -m32 /tmp/include/asm/unistd.h
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build 386 && linux
// +build 386,linux
package unix
const (
SYS_RESTART_SYSCALL = 0
SYS_EXIT = 1
SYS_FORK ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_unix_gc.go | // Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build (darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris) && gc && !ppc64le && !ppc64
// +build darwin dragonfly freebsd linux netbsd... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go | // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build ppc64 && linux
// +build ppc64,linux
package unix
const (
SYS_RESTART_SYSCALL = 0
SYS_EXIT = 1
SYS_FORK ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go | // go run mksyscall.go -tags linux,mips64le syscall_linux.go syscall_linux_mips64x.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build linux && mips64le
// +build linux,mips64le
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND A... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go | // go run mksyscall.go -tags darwin,amd64,go1.12 syscall_bsd.go syscall_darwin.go syscall_darwin_amd64.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build darwin && amd64 && go1.12
// +build darwin,amd64,go1.12
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS F... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go | // go run mksyscall.go -tags linux,ppc64le syscall_linux.go syscall_linux_ppc64x.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build linux && ppc64le
// +build linux,ppc64le
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT TH... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go | // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build amd64 && netbsd
// +build amd64,netbsd
package unix
func setTimespec(sec, nsec int64) Timespec {
return Timespec{Sec: sec, Nsec: nsec}
}
func set... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go | // cgo -godefs types_aix.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build ppc64 && aix
// +build ppc64,aix
package unix
const (
SizeofPtr = 0x8
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLong = 0x8
SizeofLongLong = 0x8
PathMax = 0x3ff
)
... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/asm_linux_386.s | // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build gc
// +build gc
#include "textflag.h"
//
// System calls for 386, Linux
//
// See ../runtime/sys_linux_386.s for the reason why we always use int ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go | // mkerrors.sh -m64
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build amd64 && darwin
// +build amd64,darwin
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
// cgo -godefs -- -m64 _const.go
package unix
import "syscall"
const (
AF_APPLETALK = 0x10
AF_CCI... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/pledge_openbsd.go | // Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package unix
import (
"errors"
"fmt"
"strconv"
"syscall"
"unsafe"
)
// Pledge implements the pledge syscall.
//
// The pledge syscall does not accept exe... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ioctl_zos.go | // Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build zos && s390x
// +build zos,s390x
package unix
import (
"runtime"
"unsafe"
)
// ioctl itself should not be exposed directly, but additional get/s... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_aix.go | // Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build aix
// +build aix
// Aix system calls.
// This file is compiled as ordinary Go code,
// but it is also input to mksyscall,
// which parses the //sys... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall.go | // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos
// +build aix darwin dragonfly freebsd linux netbsd openbsd sol... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s | // Copyright 2014 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build linux && (ppc64 || ppc64le) && gc
// +build linux
// +build ppc64 ppc64le
// +build gc
#include "textflag.h"
//
// System calls for ppc64, Linux
//... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go | // Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build aix && ppc64
// +build aix,ppc64
// Functions to access/create device major and minor numbers matching the
// encoding used AIX.
package unix
// M... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go | // go run mksysnum.go http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build 386 && netbsd
// +build 386,netbsd
package unix
const (
SYS_EXIT = 1 // { void|sys||exit(int rval); }
SYS_FORK ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go | // Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build s390x && linux
// +build s390x,linux
package unix
import (
"unsafe"
)
//sys EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error)... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/readdirent_getdents.go | // Copyright 2019 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build aix || dragonfly || freebsd || linux || netbsd || openbsd
// +build aix dragonfly freebsd linux netbsd openbsd
package unix
// ReadDirent reads dir... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/cap_freebsd.go | // Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build freebsd
// +build freebsd
package unix
import (
"errors"
"fmt"
)
// Go implementation of C mostly found in /usr/src/sys/kern/subr_capability.c
... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/dirent.go | // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
// +build aix darwin dragonfly freebsd linux netbsd openbsd solaris
p... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/bluetooth_linux.go | // Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Bluetooth sockets and messages
package unix
// Bluetooth Protocols
const (
BTPROTO_L2CAP = 0
BTPROTO_HCI = 1
BTPROTO_SCO = 2
BTPROTO_RFCOMM = 3
... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go | // Code generated by linux/mkall.go generatePtraceRegSet("arm64"). DO NOT EDIT.
package unix
import "unsafe"
// PtraceGetRegSetArm64 fetches the registers used by arm64 binaries.
func PtraceGetRegSetArm64(pid, addr int, regsout *PtraceRegsArm64) error {
iovec := Iovec{(*byte)(unsafe.Pointer(regsout)), uint64(unsafe... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go | // cgo -godefs types_solaris.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build amd64 && solaris
// +build amd64,solaris
package unix
const (
SizeofPtr = 0x8
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLong = 0x8
SizeofLongLong = 0x8
PathMax ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go | // go run mksysnum.go https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build arm64 && openbsd
// +build arm64,openbsd
package unix
const (
SYS_EXIT = 1 // { void sys_exit(int rval); }
SYS_FORK ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_dragonfly.go | // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// DragonFly BSD system calls.
// This file is compiled as ordinary Go code,
// but it is also input to mksyscall,
// which parses the //sys lines and generates... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/dev_netbsd.go | // Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Functions to access/create device major and minor numbers matching the
// encoding used in NetBSD's sys/types.h header.
package unix
// Major returns the m... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s | // go run mkasm_darwin.go amd64
// Code generated by the command above; DO NOT EDIT.
//go:build go1.12
// +build go1.12
#include "textflag.h"
TEXT libc_getgroups_trampoline<>(SB),NOSPLIT,$0-0
JMP libc_getgroups(SB)
GLOBL ·libc_getgroups_trampoline_addr(SB), RODATA, $8
DATA ·libc_getgroups_trampoline_addr(SB)/8, $l... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go | // go run mksyscall.go -netbsd -tags netbsd,arm64 syscall_bsd.go syscall_netbsd.go syscall_netbsd_arm64.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build netbsd && arm64
// +build netbsd,arm64
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go | // mkerrors.sh
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build arm && openbsd
// +build arm,openbsd
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
// cgo -godefs -- _const.go
package unix
import "syscall"
const (
AF_APPLETALK = 0x10
AF_BLUETOOTH ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s | // Copyright 2014 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build gc
// +build gc
#include "textflag.h"
//
// System calls for amd64, Solaris are implemented in runtime/syscall_solaris.go
//
TEXT ·sysvicall6(SB),... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_linux_386.go | // cgo -godefs -- -Wall -Werror -static -I/tmp/include -m32 /build/unix/linux/types.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build 386 && linux
// +build 386,linux
package unix
const (
SizeofPtr = 0x4
SizeofLong = 0x4
)
type (
_C_long int32
)
type Timespec ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go | // go run mksysnum.go https://svn.freebsd.org/base/stable/11/sys/kern/syscalls.master
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build 386 && freebsd
// +build 386,freebsd
package unix
const (
// SYS_NOSYS = 0; // { int nosys(void); } syscall nosys_args int
SYS_EXIT ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go | // Code generated by linux/mkall.go generatePtracePair("386", "amd64"). DO NOT EDIT.
//go:build linux && (386 || amd64)
// +build linux
// +build 386 amd64
package unix
import "unsafe"
// PtraceRegs386 is the registers used by 386 binaries.
type PtraceRegs386 struct {
Ebx int32
Ecx int32
Edx int32... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go | // go run mksysnum.go https://svn.freebsd.org/base/stable/11/sys/kern/syscalls.master
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build arm64 && freebsd
// +build arm64,freebsd
package unix
const (
// SYS_NOSYS = 0; // { int nosys(void); } syscall nosys_args int
SYS_EXIT ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go | // Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build aix && ppc64
// +build aix,ppc64
package unix
//sysnb Getrlimit(resource int, rlim *Rlimit) (err error)
//sysnb Setrlimit(resource int, rlim *Rlimi... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go | // Code generated by linux/mkall.go generatePtracePair("mipsle", "mips64le"). DO NOT EDIT.
//go:build linux && (mipsle || mips64le)
// +build linux
// +build mipsle mips64le
package unix
import "unsafe"
// PtraceRegsMipsle is the registers used by mipsle binaries.
type PtraceRegsMipsle struct {
Regs [32]uint64... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go | // Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build riscv64 && linux
// +build riscv64,linux
package unix
import "unsafe"
//sys EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/endian_big.go | // Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//
//go:build armbe || arm64be || m68k || mips || mips64 || mips64p32 || ppc || ppc64 || s390 || s390x || shbe || sparc || sparc64
// +build armbe arm64be m68k m... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go | // Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build amd64 && solaris
// +build amd64,solaris
package unix
func setTimespec(sec, nsec int64) Timespec {
return Timespec{Sec: sec, Nsec: nsec}
}
func s... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go | // mkerrors.sh -m64
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build amd64 && openbsd
// +build amd64,openbsd
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
// cgo -godefs -- -m64 _const.go
package unix
import "syscall"
const (
AF_APPLETALK = 0x10
AF_BLUETOO... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go | // Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build linux && gccgo && arm
// +build linux,gccgo,arm
package unix
import (
"syscall"
"unsafe"
)
func seek(fd int, offset int64, whence int) (int64, s... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_netbsd.go | // Copyright 2009,2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// NetBSD system calls.
// This file is compiled as ordinary Go code,
// but it is also input to mksyscall,
// which parses the //sys lines and generates s... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go | // Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build linux && gccgo && 386
// +build linux,gccgo,386
package unix
import (
"syscall"
"unsafe"
)
func seek(fd int, offset int64, whence int) (int64, s... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go | // cgo -godefs types_darwin.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build amd64 && darwin
// +build amd64,darwin
package unix
const (
SizeofPtr = 0x8
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLong = 0x8
SizeofLongLong = 0x8
)
type (
_C_shor... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go | // cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/unix/linux/types.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build ppc64le && linux
// +build ppc64le,linux
package unix
const (
SizeofPtr = 0x8
SizeofLong = 0x8
)
type (
_C_long int64
)
type Timesp... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go | // mkerrors.sh -m64
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build arm64 && darwin
// +build arm64,darwin
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
// cgo -godefs -- -m64 _const.go
package unix
import "syscall"
const (
AF_APPLETALK = 0x10
AF_CCI... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go | // go run mksyscall.go -l32 -netbsd -tags netbsd,386 syscall_bsd.go syscall_netbsd.go syscall_netbsd_386.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build netbsd && 386
// +build netbsd,386
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go | // cgo -godefs types_netbsd.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build arm64 && netbsd
// +build arm64,netbsd
package unix
const (
SizeofPtr = 0x8
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLong = 0x8
SizeofLongLong = 0x8
)
type (
_C_shor... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/asm_bsd_arm.s | // Copyright 2021 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build (freebsd || netbsd || openbsd) && gc
// +build freebsd netbsd openbsd
// +build gc
#include "textflag.h"
// System call support for ARM BSD
// Jus... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/endian_little.go | // Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//
//go:build 386 || amd64 || amd64p32 || alpha || arm || arm64 || mipsle || mips64le || mips64p32le || nios2 || ppc64le || riscv || riscv64 || sh
// +build 386 ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go | // go run mksyscall.go -b32 -arm -tags linux,mips syscall_linux.go syscall_linux_mipsx.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build linux && mips
// +build linux,mips
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT TH... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go | // go run mksyscall.go -tags linux,amd64 syscall_linux.go syscall_linux_amd64.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build linux && amd64
// +build linux,amd64
package unix
import (
"syscall"
"unsafe"
)
var _ syscall.Errno
// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go | // Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build zos && s390x
// +build zos,s390x
// Hand edited based on ztypes_linux_s390x.go
// TODO: auto-generate.
package unix
const (
SizeofPtr = 0x8
... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go | // cgo -godefs -- -Wall -Werror -static -I/tmp/include -fsigned-char /build/unix/linux/types.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build s390x && linux
// +build s390x,linux
package unix
const (
SizeofPtr = 0x8
SizeofLong = 0x8
)
type (
_C_long int64
)
t... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s | // Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build linux && (mips || mipsle) && gc
// +build linux
// +build mips mipsle
// +build gc
#include "textflag.h"
//
// System calls for mips, Linux
//
// ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ptrace_darwin.go | // Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build darwin && !ios
// +build darwin,!ios
package unix
func ptrace(request int, pid int, addr uintptr, data uintptr) error {
return ptrace1(request, pi... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go | // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include -fsigned-char /tmp/include/asm/unistd.h
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build s390x && linux
// +build s390x,linux
package unix
const (
SYS_EXIT = 1
SYS_FORK = 2
SYS_READ... | 0 |
rapidsai_public_repos/roc/vendor/golang.org/x/sys | rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go | // cgo -godefs types_aix.go | go run mkpost.go
// Code generated by the command above; see README.md. DO NOT EDIT.
//go:build ppc && aix
// +build ppc,aix
package unix
const (
SizeofPtr = 0x4
SizeofShort = 0x2
SizeofInt = 0x4
SizeofLong = 0x4
SizeofLongLong = 0x8
PathMax = 0x3ff
)
type... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.